From 9013e27ace91bbb373a4bdcfb59cd5ee492028df Mon Sep 17 00:00:00 2001 From: Frotty Date: Wed, 15 Jul 2026 16:01:02 +0200 Subject: [PATCH 1/6] fix mappings --- HelperScripts/generate-obj-mappings.ts | 42 +- .../main/resources/wc3-knowledge-base.json | 363311 +++++++++++++++ .../tests/Wc3KnowledgeBaseTest.java | 40 + 3 files changed, 363384 insertions(+), 9 deletions(-) create mode 100644 de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json create mode 100644 de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java diff --git a/HelperScripts/generate-obj-mappings.ts b/HelperScripts/generate-obj-mappings.ts index 39ff49c11..609e1992e 100644 --- a/HelperScripts/generate-obj-mappings.ts +++ b/HelperScripts/generate-obj-mappings.ts @@ -21,7 +21,8 @@ function resolveUnitBalanceSlk(): string { } const OUT_FILE = "./de.peeeq.wurstscript/src/main/resources/stdlib-obj-mappings.json"; -const KB_OUT_FILE = "./HelperScripts/wc3-knowledge-base.json"; +const KB_OUT_FILE = + "./de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json"; const GAMEDATA_DIR = "./HelperScripts/gamedata"; const UNIT_BALANCE_SLK = resolveUnitBalanceSlk(); @@ -571,7 +572,7 @@ function parseFuncTxt(content: string): Map> { return result; } -/** Merge multiple func maps; first writer per key wins. */ +/** Merge profile/skin maps in WC3 load order; later skin files override earlier defaults. */ function mergeFuncMaps( ...maps: Map>[] ): Map> { @@ -581,7 +582,7 @@ function mergeFuncMaps( if (!result.has(id)) result.set(id, {}); const target = result.get(id)!; for (const [k, v] of Object.entries(fields)) { - if (!(k in target)) target[k] = v; + if (v !== "") target[k] = v; } } } @@ -600,7 +601,7 @@ interface KBFieldSchema { /** Source SLK tag, e.g. "unitData", "unitUI", "Profile", "ItemData" */ slk: string; /** Level index (-1 = not leveled; ≥ 0 = explicit level base) */ - index: number; + index: number | null; /** 1 = value repeats per level (ability leveled fields) */ repeat: number; /** Ability data slot pointer */ @@ -620,6 +621,10 @@ interface KBFieldSchema { useBuilding: boolean; useItem: boolean; useCreep: boolean; + useSpecific: string[]; + notSpecific: string[]; + canBeEmpty: boolean; + forceNonNeg: boolean; section: string | null; } @@ -644,9 +649,17 @@ function buildSchemas( const n = typeof v === "number" ? v : parseFloat(String(v)); return isNaN(n) ? 0 : n; } + function toOptionalNum(v: string | number | null | undefined): number | null { + if (v === null || v === undefined || v === "") return null; + const n = typeof v === "number" ? v : parseFloat(String(v)); + return isNaN(n) ? null : n; + } function toNullStr(v: string | number | null | undefined): string | null { return (v !== null && v !== undefined) ? String(v) : null; } + function toCodes(v: string | number | null | undefined): string[] { + return v === null || v === undefined ? [] : String(v).split(",").map((s) => s.trim()).filter(Boolean); + } for (const row of rows) { const id = row["ID"] as string; @@ -655,7 +668,7 @@ function buildSchemas( id, field: resolveStr(row["field"]), slk: resolveStr(row["slk"]), - index: toNum(row["index"]), + index: toOptionalNum(row["index"]), repeat: toNum(row["repeat"]), data: toNum(row["data"]), category: resolveStr(row["category"]), @@ -669,6 +682,10 @@ function buildSchemas( useBuilding: toBool(row["useBuilding"]), useItem: toBool(row["useItem"]), useCreep: toBool(row["useCreep"]), + useSpecific: toCodes(row["useSpecific"]), + notSpecific: toCodes(row["notSpecific"]), + canBeEmpty: toBool(row["canBeEmpty"]), + forceNonNeg: toBool(row["forceNonNeg"]), section: toNullStr(row["section"]), }); } @@ -705,11 +722,11 @@ function buildObjectMap( } } - // func.txt / skin.txt fields + // func.txt / skin.txt fields override SLK defaults, matching WC3 profile merge semantics. const funcRow = funcMap.get(id); if (funcRow) { for (const [k, v] of Object.entries(funcRow)) { - if (!(k in obj) && v !== "") obj[k] = v; + if (v !== "") obj[k] = v; } } @@ -722,7 +739,11 @@ function buildObjectMap( // Top-level knowledge base builder // --------------------------------------------------------------------------- -function generateKnowledgeBase(westrings: Map): object { +function generateKnowledgeBase( + westrings: Map, + buildingBaseIds: Set, + heroBaseIds: Set, +): object { function loadSLK(file: string): Map { const c = tryRead(gdPath(file)); return c ? slkToMap(c) : new Map(); @@ -805,6 +826,9 @@ function generateKnowledgeBase(westrings: Map): object { // unitmetadata.slk covers units, heroes, buildings AND items; split by use-flags. return { + schemaVersion: 1, + buildingBaseIds: [...buildingBaseIds].sort(), + heroBaseIds: [...heroBaseIds].sort(), /** * Field schemas per object type. * Each entry describes one editable field: its 4-char ID, human-readable @@ -924,7 +948,7 @@ if (!westringsContent) { const westrings = parseWEStrings(westringsContent); console.log(`Parsed ${westrings.size} WorldEditStrings entries`); - const kb = generateKnowledgeBase(westrings); + const kb = generateKnowledgeBase(westrings, buildingIds, heroIds); const kbJson = JSON.stringify(kb, null, 2); Deno.writeTextFileSync(KB_OUT_FILE, kbJson); console.log(`Generated: ${KB_OUT_FILE}`); diff --git a/de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json b/de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json new file mode 100644 index 000000000..d3cfa7205 --- /dev/null +++ b/de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json @@ -0,0 +1,363311 @@ +{ + "schemaVersion": 1, + "buildingBaseIds": [ + "eaoe", + "eaom", + "eaow", + "eate", + "eden", + "edob", + "edos", + "egol", + "emow", + "eshy", + "etoa", + "etoe", + "etol", + "etrp", + "halt", + "harm", + "haro", + "hars", + "hatw", + "hbar", + "hbla", + "hcas", + "hctw", + "hgra", + "hgtw", + "hhou", + "hkee", + "hlum", + "hshy", + "htow", + "hvlt", + "hwtw", + "nbfl", + "nbse", + "nbsm", + "nbsw", + "nbt1", + "nbt2", + "nbwd", + "ncap", + "ncaw", + "ncb0", + "ncb1", + "ncb2", + "ncb3", + "ncb4", + "ncb5", + "ncb6", + "ncb7", + "ncb8", + "ncb9", + "ncba", + "ncbb", + "ncbc", + "ncbd", + "ncbe", + "ncbf", + "ncmw", + "ncnt", + "ncop", + "ncp2", + "ncp3", + "nct1", + "nct2", + "ncta", + "ncte", + "nctl", + "ndch", + "ndfl", + "ndgt", + "ndh0", + "ndh1", + "ndh2", + "ndh3", + "ndh4", + "ndke", + "ndkw", + "ndmg", + "ndrb", + "ndrg", + "ndrk", + "ndro", + "ndrr", + "ndru", + "ndrz", + "ndt1", + "ndt2", + "nef0", + "nef1", + "nef2", + "nef3", + "nef4", + "nef5", + "nef6", + "nef7", + "nefm", + "negf", + "negm", + "negt", + "net1", + "net2", + "nfgo", + "nfh0", + "nfh1", + "nfnp", + "nfoh", + "nfr1", + "nfr2", + "nfrm", + "nfrt", + "nft1", + "nft2", + "nfv0", + "nfv1", + "nfv2", + "nfv3", + "nfv4", + "ngad", + "ngme", + "ngnh", + "ngni", + "ngob", + "ngol", + "ngt2", + "ngwr", + "nhcn", + "nheb", + "nhn2", + "nhns", + "nico", + "nitb", + "nmer", + "nmg0", + "nmg1", + "nmg2", + "nmgv", + "nmh0", + "nmh1", + "nmoo", + "nmr0", + "nmr2", + "nmr3", + "nmr4", + "nmr5", + "nmr6", + "nmr7", + "nmr8", + "nmr9", + "nmra", + "nmrb", + "nmrc", + "nmrd", + "nmre", + "nmrf", + "nmrk", + "nnad", + "nnfm", + "nnsa", + "nnsg", + "nntg", + "nntt", + "nnzg", + "npgf", + "npgr", + "nshp", + "nshr", + "ntav", + "nten", + "nth0", + "nth1", + "ntn2", + "ntn3", + "ntnt", + "ntt1", + "ntt2", + "ntx2", + "nvr0", + "nvr1", + "nvr2", + "nwc1", + "nwc2", + "nwc3", + "nwc4", + "nwgt", + "nzin", + "oalt", + "obar", + "obea", + "ocbw", + "ofor", + "ofrt", + "ogre", + "oshy", + "osld", + "ostr", + "otrb", + "otto", + "ovln", + "owtw", + "uaod", + "ubon", + "ugol", + "ugrv", + "unp1", + "unp2", + "unpl", + "usap", + "usep", + "ushp", + "uslh", + "utod", + "utom", + "uzg1", + "uzg2", + "uzig" + ], + "heroBaseIds": [ + "Ecen", + "Edem", + "Edmm", + "Eevi", + "Eevm", + "Efur", + "Eidm", + "Eill", + "Eilm", + "Ekee", + "Ekgg", + "Emfr", + "Emns", + "Emoo", + "Etyr", + "Ewar", + "Ewrd", + "Haah", + "Hamg", + "Hant", + "Hapm", + "Harf", + "Hart", + "Hblm", + "Hddt", + "Hdgo", + "Hgam", + "Hhkl", + "Hjai", + "Hjnd", + "Hkal", + "Hlgr", + "Hmbr", + "Hmgd", + "Hmkg", + "Hpal", + "Hpb1", + "Hpb2", + "Hssa", + "Huth", + "Hvsh", + "Hvwd", + "Naka", + "Nal2", + "Nal3", + "Nalc", + "Nalm", + "Nbbc", + "Nbrn", + "Nbst", + "Nfir", + "Nkjx", + "Nklj", + "Nmag", + "Nman", + "Nmsr", + "Nngs", + "Npbm", + "Npld", + "Nplh", + "Nrob", + "Nsjs", + "Nswt", + "Ntin", + "Obla", + "Ocb2", + "Ocbh", + "Odrt", + "Ofar", + "Ogld", + "Ogrh", + "Opgh", + "Orex", + "Orkn", + "Osam", + "Oshd", + "Otcc", + "Otch", + "Othr", + "Oths", + "Uanb", + "Ubal", + "Uclc", + "Ucrl", + "Udea", + "Udre", + "Udth", + "Uear", + "Uktl", + "Ulic", + "Umal", + "Usyl", + "Utic", + "Uvar", + "Uvng", + "Uwar" + ], + "fieldSchemas": { + "unit": [ + { + "id": "uani", + "field": "animProps", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Animation Names", + "sort": "c1a010", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uico", + "field": "Art", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Game Interface", + "sort": "c1a02", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uaap", + "field": "Attachmentanimprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Animation Names - Attachments", + "sort": "c1a010a", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ualp", + "field": "Attachmentlinkprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Attachment Link Names", + "sort": "c1a010b", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpr", + "field": "Boneprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Bone Names", + "sort": "c1a010c", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubui", + "field": "Builds", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Structures Built", + "sort": "c5a010", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpx", + "field": "Buttonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (X)", + "sort": "c2a03x", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpy", + "field": "Buttonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (Y)", + "sort": "c2a03y", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucua", + "field": "Casterupgradeart", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Caster Upgrade Art", + "sort": "c6c03", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucun", + "field": "Casterupgradename", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Caster Upgrade Names", + "sort": "c6c01", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucut", + "field": "Casterupgradetip", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Caster Upgrade Tips", + "sort": "c6c02", + "type": "stringList", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "udep", + "field": "DependencyOr", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Dependency Equivalents", + "sort": "c5a00a", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ides", + "field": "Description", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Description", + "sort": "d0a05", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "unsf", + "field": "EditorSuffix", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name - Editor Suffix", + "sort": "c1a000", + "type": "string", + "minVal": null, + "maxVal": "50", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhot", + "field": "Hotkey", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Hotkey", + "sort": "d0a01", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulfi", + "field": "LoopingSoundFadeIn", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Looping Fade In Rate", + "sort": "d8b03", + "type": "int", + "minVal": "0", + "maxVal": "12700", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulfo", + "field": "LoopingSoundFadeOut", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Looping Fade Out Rate", + "sort": "d8b04", + "type": "int", + "minVal": "0", + "maxVal": "12700", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uma1", + "field": "Missilearc", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Arc", + "sort": "c6a06a", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uma2", + "field": "Missilearc", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Arc", + "sort": "c6b06a", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1m", + "field": "Missileart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Art", + "sort": "c6a05", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2m", + "field": "Missileart", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Art", + "sort": "c6b05", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "umh1", + "field": "MissileHoming", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Homing Enabled", + "sort": "c6a06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umh2", + "field": "MissileHoming", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Homing Enabled", + "sort": "c6b06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1z", + "field": "Missilespeed", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Speed", + "sort": "c6a06", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2z", + "field": "Missilespeed", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Speed", + "sort": "c6b06", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umsl", + "field": "MovementSoundLabel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Movement", + "sort": "d8b01", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "unam", + "field": "Name", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name", + "sort": "c1a00", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ursl", + "field": "RandomSoundLabel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Random", + "sort": "d8b02", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ureq", + "field": "Requires", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urqa", + "field": "Requiresamount", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Levels", + "sort": "c5a00a", + "type": "intList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ussi", + "field": "ScoreScreenIcon", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Score Screen", + "sort": "c1a02a", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "usei", + "field": "Sellitems", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Items Sold", + "sort": "c5a05", + "type": "itemList", + "minVal": null, + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "useu", + "field": "Sellunits", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Units Sold", + "sort": "c5a04", + "type": "unitList", + "minVal": null, + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uspa", + "field": "Specialart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Special", + "sort": "d9b00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utaa", + "field": "Targetart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target", + "sort": "d9b01", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utip", + "field": "Tip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Basic", + "sort": "d0a00", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utub", + "field": "Ubertip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Extended", + "sort": "d0a03", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabi", + "field": "abilList", + "slk": "UnitAbilities", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Normal", + "sort": "c6c00", + "type": "abilityList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udaa", + "field": "auto", + "slk": "UnitAbilities", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Default Active Ability", + "sort": "c6c01", + "type": "abilCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubld", + "field": "bldtm", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Build Time", + "sort": "c2a06", + "type": "int", + "minVal": "1", + "maxVal": "298", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubdi", + "field": "bountydice", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Number of Dice", + "sort": "c8a08", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubba", + "field": "bountyplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Base", + "sort": "c8a07", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubsi", + "field": "bountysides", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Sides per Die", + "sort": "c8a09", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulbd", + "field": "lumberbountydice", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Number of Dice", + "sort": "c8a10", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulba", + "field": "lumberbountyplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Base", + "sort": "c8a11", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulbs", + "field": "lumberbountysides", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Sides per Die", + "sort": "c8a12", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucol", + "field": "collision", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Collision Size", + "sort": "c1a07", + "type": "unreal", + "minVal": "0", + "maxVal": "1024", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udef", + "field": "def", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Base", + "sort": "c5b00", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udty", + "field": "defType", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Type", + "sort": "c5b02", + "type": "defenseType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udup", + "field": "defUp", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Upgrade Bonus", + "sort": "c5b01", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufma", + "field": "fmade", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Food Produced", + "sort": "c2a030", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufoo", + "field": "fused", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Food Cost", + "sort": "c2a03", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ugol", + "field": "goldcost", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Cost", + "sort": "c2a00", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ugor", + "field": "goldRep", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Gold Cost", + "sort": "c2a02", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhpm", + "field": "HP", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Maximum (Base)", + "sort": "c4a00", + "type": "int", + "minVal": "1", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubdg", + "field": "isbldg", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Is a Building", + "sort": "c1a001a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulev", + "field": "level", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Level", + "sort": "c8a04", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulum", + "field": "lumbercost", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Cost", + "sort": "c2a01", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulur", + "field": "lumberRep", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Lumber Cost", + "sort": "c2a02", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpi", + "field": "mana0", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Initial Amount", + "sort": "c4a05", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpm", + "field": "manaN", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Maximum", + "sort": "c4a03", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umas", + "field": "maxSpd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Maximum", + "sort": "c7a03b", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umis", + "field": "minSpd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Minimum", + "sort": "c7a03a", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usin", + "field": "nsight", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sight Radius (Night)", + "sort": "c8a02", + "type": "int", + "minVal": "0", + "maxVal": "1800", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhpr", + "field": "regenHP", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Regeneration Rate", + "sort": "c4a01", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpr", + "field": "regenMana", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Regeneration", + "sort": "c4a04", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhrt", + "field": "regenType", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Regeneration Type", + "sort": "c4a02", + "type": "regenType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urtm", + "field": "reptm", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Time", + "sort": "c2a07", + "type": "int", + "minVal": "1", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpo", + "field": "repulse", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Enabled", + "sort": "d7b00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpg", + "field": "repulseGroup", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Group Number", + "sort": "d7b02", + "type": "int", + "minVal": "0", + "maxVal": "1024", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpp", + "field": "repulseParam", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Parameter", + "sort": "d7b01", + "type": "int", + "minVal": "0", + "maxVal": "4", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpr", + "field": "repulsePrio", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Priority", + "sort": "d7b03", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usid", + "field": "sight", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sight Radius (Day)", + "sort": "c8a01", + "type": "int", + "minVal": "0", + "maxVal": "1800", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvs", + "field": "spd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Base", + "sort": "c7a03", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usma", + "field": "stockMax", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Maximum", + "sort": "c9a00", + "type": "int", + "minVal": "0", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usrg", + "field": "stockRegen", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Replenish Interval", + "sort": "c9a01", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usst", + "field": "stockStart", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Start Delay", + "sort": "c9a000", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usit", + "field": "stockInitial", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "WESTRING_UEVAL_USIT", + "sort": "c9a02", + "type": "int", + "minVal": "1", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "util", + "field": "tilesets", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Tilesets", + "sort": "c1a06c", + "type": "tilesetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utyp", + "field": "type", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Unit Classification", + "sort": "c2a04", + "type": "unitClass", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upgr", + "field": "upgrades", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Upgrades Used", + "sort": "c5a02", + "type": "upgradeList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabr", + "field": "buffRadius", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "AI Placement Radius", + "sort": "d4b01", + "type": "unreal", + "minVal": "0", + "maxVal": "24", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uabt", + "field": "buffType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "AI Placement Type", + "sort": "d4b00", + "type": "aiBuffer", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufle", + "field": "canFlee", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Flee", + "sort": "c8a031", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usle", + "field": "canSleep", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sleeps", + "sort": "c8a030", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucar", + "field": "cargoSize", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Transported Size", + "sort": "c8a03", + "type": "int", + "minVal": "0", + "maxVal": "8", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udtm", + "field": "death", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Death Time (seconds)", + "sort": "c1b10", + "type": "unreal", + "minVal": "0.1", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udea", + "field": "deathType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Death Type", + "sort": "c1b09", + "type": "deathType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulos", + "field": "fatLOS", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Use Extended Line of Sight", + "sort": "d3b00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufor", + "field": "formation", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Formation Rank", + "sort": "c7a05", + "type": "int", + "minVal": "0", + "maxVal": "9", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvf", + "field": "moveFloor", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Height Minimum", + "sort": "c7a02a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvh", + "field": "moveHeight", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Height", + "sort": "c7a02", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvt", + "field": "movetp", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Type", + "sort": "c7a01", + "type": "moveType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uori", + "field": "orientInterp", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Orientation Interpolation", + "sort": "c7a04b", + "type": "int", + "minVal": "0", + "maxVal": "8", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upoi", + "field": "points", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Point Value", + "sort": "c8a05", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upri", + "field": "prio", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Priority", + "sort": "c8a06", + "type": "int", + "minVal": "0", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uprw", + "field": "propWin", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Propulsion Window (degrees)", + "sort": "c7a04a", + "type": "unreal", + "minVal": "1", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "urac", + "field": "race", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Race", + "sort": "c1a001", + "type": "unitRace", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utar", + "field": "targType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Targeted as", + "sort": "c7a00", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvr", + "field": "turnRate", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Turn Rate", + "sort": "c7a04", + "type": "unreal", + "minVal": "0.1", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uarm", + "field": "armor", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Armor Type", + "sort": "c5b03", + "type": "armorType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uble", + "field": "blend", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Blend Time (seconds)", + "sort": "c7a04c", + "type": "real", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uclb", + "field": "blue", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 3 (Blue)", + "sort": "c1a06", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushb", + "field": "buildingShadow", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Texture (Building)", + "sort": "c1a10a", + "type": "shadowTexture", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucam", + "field": "campaign", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Categorization - Campaign", + "sort": "c1a06f", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utcc", + "field": "customTeamColor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Allow Custom Team Color", + "sort": "c1a06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udro", + "field": "dropItems", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Can Drop Items On Death", + "sort": "c1a06g", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uept", + "field": "elevPts", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Elevation - Sample Points", + "sort": "d5c00", + "type": "int", + "minVal": "0", + "maxVal": "4", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uerd", + "field": "elevRad", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Elevation - Sample Radius", + "sort": "d5c01", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "umdl", + "field": "file", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File", + "sort": "c1a01", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upor", + "field": "portrait", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "WESTRING_UEVAL_UPOR", + "sort": "c1a01b", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uver", + "field": "fileVerFlags", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File - Extra Versions", + "sort": "c1a01a", + "type": "versionFlags", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufrd", + "field": "fogRad", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fog of War - Sample Radius", + "sort": "d5c02", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uclg", + "field": "green", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 2 (Green)", + "sort": "c1a05", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhos", + "field": "hostilePal", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Display as Neutral Hostile", + "sort": "c8a10", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uine", + "field": "inEditor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Placeable In Editor", + "sort": "c1a06d0", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umxp", + "field": "maxPitch", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Maximum Pitch Angle (degrees)", + "sort": "d5b00", + "type": "real", + "minVal": "0", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "umxr", + "field": "maxRoll", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Maximum Roll Angle (degrees)", + "sort": "d5b01", + "type": "real", + "minVal": "0", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usca", + "field": "modelScale", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Scaling Value", + "sort": "c1a03", + "type": "real", + "minVal": "0.1", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uhom", + "field": "hideOnMinimap", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hide Minimap Display", + "sort": "c1c01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uocc", + "field": "occH", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Occluder Height", + "sort": "d6c03", + "type": "unreal", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uclr", + "field": "red", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 1 (Red)", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urun", + "field": "run", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Run Speed", + "sort": "d6c01", + "type": "real", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ussc", + "field": "scale", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Scale", + "sort": "c1a08", + "type": "real", + "minVal": "0.1", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uscb", + "field": "scaleBull", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Scale Projectiles", + "sort": "c1a08a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usew", + "field": "selCircOnWater", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Circle On Water", + "sort": "c1a12", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uslz", + "field": "selZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Circle - Height", + "sort": "d6c02", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushh", + "field": "shadowH", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Height", + "sort": "c1a11b", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushr", + "field": "shadowOnWater", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Has Water Shadow", + "sort": "c1a11e", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushw", + "field": "shadowW", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Width", + "sort": "c1a11a", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushx", + "field": "shadowX", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Center X", + "sort": "c1a11c", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushy", + "field": "shadowY", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Center Y", + "sort": "c1a11d", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uspe", + "field": "special", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Categorization - Special", + "sort": "c1a06e", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utco", + "field": "teamColor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Team Color", + "sort": "c1a06a", + "type": "teamColor", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utss", + "field": "tilesetSpecific", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Has Tileset Specific Data", + "sort": "c1a06d", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushu", + "field": "unitShadow", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image (Unit)", + "sort": "c1a11", + "type": "shadowImage", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "usnd", + "field": "unitSound", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Unit Sound Set", + "sort": "c1a10", + "type": "unitSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uuch", + "field": "useClickHelper", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Use Click Helper", + "sort": "c1c02", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwal", + "field": "walk", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Walk Speed", + "sort": "d6c00", + "type": "real", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uacq", + "field": "acquire", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Acquisition Range", + "sort": "c8a00", + "type": "unreal", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1t", + "field": "atkType1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Attack Type", + "sort": "c6a03", + "type": "attackType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2t", + "field": "atkType2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Attack Type", + "sort": "c6b03", + "type": "attackType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubs1", + "field": "backSw1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Animation Backswing Point", + "sort": "c6a08a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ubs2", + "field": "backSw2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Animation Backswing Point", + "sort": "c6b08a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ucbs", + "field": "castbsw", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Cast Backswing", + "sort": "d2b01", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ucpt", + "field": "castpt", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Cast Point", + "sort": "d2b00", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1c", + "field": "cool1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Cooldown Time", + "sort": "c6a08", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua2c", + "field": "cool2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Cooldown Time", + "sort": "c6b08", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udl1", + "field": "damageLoss1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Loss Factor", + "sort": "c6a12a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udl2", + "field": "damageLoss2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Loss Factor", + "sort": "c6b12a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1d", + "field": "dice1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Number of Dice", + "sort": "c6a071", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2d", + "field": "dice2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Number of Dice", + "sort": "c6b071", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1b", + "field": "dmgplus1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Base", + "sort": "c6a070", + "type": "int", + "minVal": "0", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2b", + "field": "dmgplus2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Base", + "sort": "c6b070", + "type": "int", + "minVal": "0", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udp1", + "field": "dmgpt1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Animation Damage Point", + "sort": "c6a08", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udp2", + "field": "dmgpt2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Animation Damage Point", + "sort": "c6b08", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udu1", + "field": "dmgUp1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Upgrade Amount", + "sort": "c6a073", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udu2", + "field": "dmgUp2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Upgrade Amount", + "sort": "c6b073", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1f", + "field": "Farea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Full Damage)", + "sort": "c6a09", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2f", + "field": "Farea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Full Damage)", + "sort": "c6b09", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1h", + "field": "Harea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Medium Damage)", + "sort": "c6a10", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2h", + "field": "Harea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Medium Damage)", + "sort": "c6b10", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhd1", + "field": "Hfact1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Factor - Medium", + "sort": "c6a10a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhd2", + "field": "Hfact2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Factor - Medium", + "sort": "c6b10a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uisz", + "field": "impactSwimZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Impact - Z (Swimming)", + "sort": "c5a04a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uimz", + "field": "impactZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Impact - Z", + "sort": "c5a04", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulsz", + "field": "launchSwimZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Z (Swimming)", + "sort": "c5a03d", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpx", + "field": "launchX", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - X", + "sort": "c5a03a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpy", + "field": "launchY", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Y", + "sort": "c5a03b", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpz", + "field": "launchZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Z", + "sort": "c5a03c", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uamn", + "field": "minRange", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Minimum Attack Range", + "sort": "c6a00", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1q", + "field": "Qarea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Small Damage)", + "sort": "c6a11", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2q", + "field": "Qarea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Small Damage)", + "sort": "c6b11", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uqd1", + "field": "Qfact1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Factor - Small", + "sort": "c6a11a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uqd2", + "field": "Qfact2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Factor - Small", + "sort": "c6b11a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1r", + "field": "rangeN1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Range", + "sort": "c6a02", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2r", + "field": "rangeN2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Range", + "sort": "c6b02", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urb1", + "field": "RngBuff1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Range Motion Buffer", + "sort": "c6a02a", + "type": "unreal", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urb2", + "field": "RngBuff2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Range Motion Buffer", + "sort": "c6b02a", + "type": "unreal", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwu1", + "field": "showUI1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Show UI", + "sort": "c6a01a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwu2", + "field": "showUI2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Show UI", + "sort": "c6b01a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1s", + "field": "sides1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Sides per Die", + "sort": "c6a072", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2s", + "field": "sides2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Sides per Die", + "sort": "c6b072", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usd1", + "field": "spillDist1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Spill Distance", + "sort": "c6a12b", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usd2", + "field": "spillDist2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Spill Distance", + "sort": "c6b12b", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usr1", + "field": "spillRadius1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Spill Radius", + "sort": "c6a12c", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usr2", + "field": "spillRadius2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Spill Radius", + "sort": "c6b12c", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1p", + "field": "splashTargs1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect Targets", + "sort": "c6a12", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2p", + "field": "splashTargs2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect Targets", + "sort": "c6b12", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utc1", + "field": "targCount1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Maximum Number of Targets", + "sort": "c6a7a", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utc2", + "field": "targCount2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Maximum Number of Targets", + "sort": "c6b7a", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1g", + "field": "targs1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Targets Allowed", + "sort": "c6a07", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2g", + "field": "targs2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Targets Allowed", + "sort": "c6b07", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uaen", + "field": "weapsOn", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attacks Enabled", + "sort": "c6a01", + "type": "attackBits", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1w", + "field": "weapTp1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Weapon Type", + "sort": "c6a04", + "type": "weaponType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2w", + "field": "weapTp2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Weapon Type", + "sort": "c6b04", + "type": "weaponType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucs1", + "field": "weapType1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Weapon Sound", + "sort": "c6a04a", + "type": "combatSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucs2", + "field": "weapType2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Weapon Sound", + "sort": "c6b04a", + "type": "combatSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabs", + "field": "abilSkinList", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "WESTRING_UEVAL_UABS", + "sort": "c6c00", + "type": "abilitySkinList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhas", + "field": "heroAbilSkinList", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "WESTRING_UEVAL_UHAS", + "sort": "c6c00", + "type": "abilitySkinList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + } + ], + "hero": [ + { + "id": "uani", + "field": "animProps", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Animation Names", + "sort": "c1a010", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uico", + "field": "Art", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Game Interface", + "sort": "c1a02", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uaap", + "field": "Attachmentanimprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Animation Names - Attachments", + "sort": "c1a010a", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ualp", + "field": "Attachmentlinkprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Attachment Link Names", + "sort": "c1a010b", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uawt", + "field": "Awakentip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Awaken", + "sort": "d0a02a", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpr", + "field": "Boneprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Bone Names", + "sort": "c1a010c", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubui", + "field": "Builds", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Structures Built", + "sort": "c5a010", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpx", + "field": "Buttonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (X)", + "sort": "c2a03x", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpy", + "field": "Buttonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (Y)", + "sort": "c2a03y", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udep", + "field": "DependencyOr", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Dependency Equivalents", + "sort": "c5a00a", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ides", + "field": "Description", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Description", + "sort": "d0a05", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "unsf", + "field": "EditorSuffix", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name - Editor Suffix", + "sort": "c1a000", + "type": "string", + "minVal": null, + "maxVal": "50", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhot", + "field": "Hotkey", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Hotkey", + "sort": "d0a01", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulfi", + "field": "LoopingSoundFadeIn", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Looping Fade In Rate", + "sort": "d8b03", + "type": "int", + "minVal": "0", + "maxVal": "12700", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulfo", + "field": "LoopingSoundFadeOut", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Looping Fade Out Rate", + "sort": "d8b04", + "type": "int", + "minVal": "0", + "maxVal": "12700", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uma1", + "field": "Missilearc", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Arc", + "sort": "c6a06a", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uma2", + "field": "Missilearc", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Arc", + "sort": "c6b06a", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1m", + "field": "Missileart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Art", + "sort": "c6a05", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2m", + "field": "Missileart", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Art", + "sort": "c6b05", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "umh1", + "field": "MissileHoming", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Homing Enabled", + "sort": "c6a06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umh2", + "field": "MissileHoming", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Homing Enabled", + "sort": "c6b06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1z", + "field": "Missilespeed", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Speed", + "sort": "c6a06", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2z", + "field": "Missilespeed", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Speed", + "sort": "c6b06", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umsl", + "field": "MovementSoundLabel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Movement", + "sort": "d8b01", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "unam", + "field": "Name", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name", + "sort": "c1a00", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upro", + "field": "Propernames", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Proper Names", + "sort": "c1a001", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ursl", + "field": "RandomSoundLabel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Random", + "sort": "d8b02", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urqc", + "field": "Requirescount", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tiers Used", + "sort": "", + "type": "int", + "minVal": null, + "maxVal": "9", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ureq", + "field": "Requires", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq1", + "field": "Requires1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 2", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq2", + "field": "Requires2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 3", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq3", + "field": "Requires3", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 4", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq4", + "field": "Requires4", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 5", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq5", + "field": "Requires5", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 6", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq6", + "field": "Requires6", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 7", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq7", + "field": "Requires7", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 8", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urq8", + "field": "Requires8", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Tier 9", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urqa", + "field": "Requiresamount", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Levels", + "sort": "c5a00a", + "type": "intList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utpr", + "field": "Revivetip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Revive", + "sort": "d0a02", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ussi", + "field": "ScoreScreenIcon", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Score Screen", + "sort": "c1a02a", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "usei", + "field": "Sellitems", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Items Sold", + "sort": "c5a05", + "type": "itemList", + "minVal": null, + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "useu", + "field": "Sellunits", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Units Sold", + "sort": "c5a04", + "type": "unitList", + "minVal": null, + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uspa", + "field": "Specialart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Special", + "sort": "d9b00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utaa", + "field": "Targetart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target", + "sort": "d9b01", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utip", + "field": "Tip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Basic", + "sort": "d0a00", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utra", + "field": "Trains", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Units Trained", + "sort": "c5a01", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urva", + "field": "Reviveat", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Hero Revival Locations", + "sort": "c5a01", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utub", + "field": "Ubertip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Extended", + "sort": "d0a03", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabi", + "field": "abilList", + "slk": "UnitAbilities", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Normal", + "sort": "c6c00", + "type": "abilityList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udaa", + "field": "auto", + "slk": "UnitAbilities", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Default Active Ability", + "sort": "c6c01", + "type": "abilCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhab", + "field": "heroAbilList", + "slk": "UnitAbilities", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Hero", + "sort": "c6c00", + "type": "heroAbilityList", + "minVal": null, + "maxVal": "5", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uagi", + "field": "AGI", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Starting Agility", + "sort": "c3a05", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uagp", + "field": "AGIplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Agility per Level", + "sort": "c3a06", + "type": "unreal", + "minVal": "0", + "maxVal": "20", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubld", + "field": "bldtm", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Build Time", + "sort": "c2a06", + "type": "int", + "minVal": "1", + "maxVal": "298", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubdi", + "field": "bountydice", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Number of Dice", + "sort": "c8a08", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubba", + "field": "bountyplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Base", + "sort": "c8a07", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubsi", + "field": "bountysides", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Sides per Die", + "sort": "c8a09", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulbd", + "field": "lumberbountydice", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Number of Dice", + "sort": "c8a10", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulba", + "field": "lumberbountyplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Base", + "sort": "c8a11", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulbs", + "field": "lumberbountysides", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Sides per Die", + "sort": "c8a12", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucol", + "field": "collision", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Collision Size", + "sort": "c1a07", + "type": "unreal", + "minVal": "0", + "maxVal": "1024", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udef", + "field": "def", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Base", + "sort": "c5b00", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udty", + "field": "defType", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Type", + "sort": "c5b02", + "type": "defenseType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udup", + "field": "defUp", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Upgrade Bonus", + "sort": "c5b01", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufma", + "field": "fmade", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Food Produced", + "sort": "c2a030", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufoo", + "field": "fused", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Food Cost", + "sort": "c2a03", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ugol", + "field": "goldcost", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Cost", + "sort": "c2a00", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ugor", + "field": "goldRep", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Gold Cost", + "sort": "c2a02", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhpm", + "field": "HP", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Maximum (Base)", + "sort": "c4a00", + "type": "int", + "minVal": "1", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uint", + "field": "INT", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Starting Intelligence", + "sort": "c3a03", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uinp", + "field": "INTplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Intelligence per Level", + "sort": "c3a04", + "type": "unreal", + "minVal": "0", + "maxVal": "20", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubdg", + "field": "isbldg", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Is a Building", + "sort": "c1a001a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulev", + "field": "level", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Level", + "sort": "c8a04", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulum", + "field": "lumbercost", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Cost", + "sort": "c2a01", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulur", + "field": "lumberRep", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Lumber Cost", + "sort": "c2a02", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpi", + "field": "mana0", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Initial Amount", + "sort": "c4a05", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpm", + "field": "manaN", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Maximum", + "sort": "c4a03", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umas", + "field": "maxSpd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Maximum", + "sort": "c7a03b", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umis", + "field": "minSpd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Minimum", + "sort": "c7a03a", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usin", + "field": "nsight", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sight Radius (Night)", + "sort": "c8a02", + "type": "int", + "minVal": "0", + "maxVal": "1800", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upra", + "field": "Primary", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Primary Attribute", + "sort": "c3a00", + "type": "attributeType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhpr", + "field": "regenHP", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Regeneration Rate", + "sort": "c4a01", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpr", + "field": "regenMana", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Regeneration", + "sort": "c4a04", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhrt", + "field": "regenType", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Regeneration Type", + "sort": "c4a02", + "type": "regenType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urtm", + "field": "reptm", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Time", + "sort": "c2a07", + "type": "int", + "minVal": "1", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpo", + "field": "repulse", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Enabled", + "sort": "d7b00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpg", + "field": "repulseGroup", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Group Number", + "sort": "d7b02", + "type": "int", + "minVal": "0", + "maxVal": "1024", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpp", + "field": "repulseParam", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Parameter", + "sort": "d7b01", + "type": "int", + "minVal": "0", + "maxVal": "4", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urpr", + "field": "repulsePrio", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Group Separation - Priority", + "sort": "d7b03", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usid", + "field": "sight", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sight Radius (Day)", + "sort": "c8a01", + "type": "int", + "minVal": "0", + "maxVal": "1800", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvs", + "field": "spd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Base", + "sort": "c7a03", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usma", + "field": "stockMax", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Maximum", + "sort": "c9a00", + "type": "int", + "minVal": "0", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usrg", + "field": "stockRegen", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Replenish Interval", + "sort": "c9a01", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usst", + "field": "stockStart", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Start Delay", + "sort": "c9a000", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usit", + "field": "stockInitial", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "WESTRING_UEVAL_USIT", + "sort": "c9a02", + "type": "int", + "minVal": "1", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ustr", + "field": "STR", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Starting Strength", + "sort": "c3a01", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ustp", + "field": "STRplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Strength per Level", + "sort": "c3a02", + "type": "unreal", + "minVal": "0", + "maxVal": "20", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "util", + "field": "tilesets", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Tilesets", + "sort": "c1a06c", + "type": "tilesetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utyp", + "field": "type", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Unit Classification", + "sort": "c2a04", + "type": "unitClass", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upgr", + "field": "upgrades", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Upgrades Used", + "sort": "c5a02", + "type": "upgradeList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabr", + "field": "buffRadius", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "AI Placement Radius", + "sort": "d4b01", + "type": "unreal", + "minVal": "0", + "maxVal": "24", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uabt", + "field": "buffType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "AI Placement Type", + "sort": "d4b00", + "type": "aiBuffer", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufle", + "field": "canFlee", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Flee", + "sort": "c8a031", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usle", + "field": "canSleep", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sleeps", + "sort": "c8a030", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucar", + "field": "cargoSize", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Transported Size", + "sort": "c8a03", + "type": "int", + "minVal": "0", + "maxVal": "8", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udtm", + "field": "death", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Death Time (seconds)", + "sort": "c1b10", + "type": "unreal", + "minVal": "0.1", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udea", + "field": "deathType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Death Type", + "sort": "c1b09", + "type": "deathType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulos", + "field": "fatLOS", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Use Extended Line of Sight", + "sort": "d3b00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufor", + "field": "formation", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Formation Rank", + "sort": "c7a05", + "type": "int", + "minVal": "0", + "maxVal": "9", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvf", + "field": "moveFloor", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Height Minimum", + "sort": "c7a02a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvh", + "field": "moveHeight", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Height", + "sort": "c7a02", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvt", + "field": "movetp", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Type", + "sort": "c7a01", + "type": "moveType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "upru", + "field": "nameCount", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Proper Names Used", + "sort": "c1a001a", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uori", + "field": "orientInterp", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Orientation Interpolation", + "sort": "c7a04b", + "type": "int", + "minVal": "0", + "maxVal": "8", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upoi", + "field": "points", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Point Value", + "sort": "c8a05", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upri", + "field": "prio", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Priority", + "sort": "c8a06", + "type": "int", + "minVal": "0", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uprw", + "field": "propWin", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Propulsion Window (degrees)", + "sort": "c7a04a", + "type": "unreal", + "minVal": "1", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "urac", + "field": "race", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Race", + "sort": "c1a001", + "type": "unitRace", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utar", + "field": "targType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Targeted as", + "sort": "c7a00", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvr", + "field": "turnRate", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Turn Rate", + "sort": "c7a04", + "type": "unreal", + "minVal": "0.1", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uarm", + "field": "armor", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Armor Type", + "sort": "c5b03", + "type": "armorType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uble", + "field": "blend", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Blend Time (seconds)", + "sort": "c7a04c", + "type": "real", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uclb", + "field": "blue", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 3 (Blue)", + "sort": "c1a06", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushb", + "field": "buildingShadow", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Texture (Building)", + "sort": "c1a10a", + "type": "shadowTexture", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucam", + "field": "campaign", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Categorization - Campaign", + "sort": "c1a06f", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utcc", + "field": "customTeamColor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Allow Custom Team Color", + "sort": "c1a06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udro", + "field": "dropItems", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Can Drop Items On Death", + "sort": "c1a06g", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uept", + "field": "elevPts", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Elevation - Sample Points", + "sort": "d5c00", + "type": "int", + "minVal": "0", + "maxVal": "4", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uerd", + "field": "elevRad", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Elevation - Sample Radius", + "sort": "d5c01", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "umdl", + "field": "file", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File", + "sort": "c1a01", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upor", + "field": "portrait", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "WESTRING_UEVAL_UPOR", + "sort": "c1a01b", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uver", + "field": "fileVerFlags", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File - Extra Versions", + "sort": "c1a01a", + "type": "versionFlags", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufrd", + "field": "fogRad", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fog of War - Sample Radius", + "sort": "d5c02", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uclg", + "field": "green", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 2 (Green)", + "sort": "c1a05", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhos", + "field": "hostilePal", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Display as Neutral Hostile", + "sort": "c8a10", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uine", + "field": "inEditor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Placeable In Editor", + "sort": "c1a06d0", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umxp", + "field": "maxPitch", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Maximum Pitch Angle (degrees)", + "sort": "d5b00", + "type": "real", + "minVal": "0", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "umxr", + "field": "maxRoll", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Maximum Roll Angle (degrees)", + "sort": "d5b01", + "type": "real", + "minVal": "0", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usca", + "field": "modelScale", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Scaling Value", + "sort": "c1a03", + "type": "real", + "minVal": "0.1", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uhhb", + "field": "hideHeroBar", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hero - Hide Hero Interface Icon", + "sort": "c1c01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhhm", + "field": "hideHeroMinimap", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hero - Hide Hero Minimap Display", + "sort": "c1c01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhhd", + "field": "hideHeroDeathMsg", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hero - Hide Hero Death Message", + "sort": "c1c01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhom", + "field": "hideOnMinimap", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hide Minimap Display", + "sort": "c1c01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uocc", + "field": "occH", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Occluder Height", + "sort": "d6c03", + "type": "unreal", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uclr", + "field": "red", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 1 (Red)", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urun", + "field": "run", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Run Speed", + "sort": "d6c01", + "type": "real", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ussc", + "field": "scale", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Scale", + "sort": "c1a08", + "type": "real", + "minVal": "0.1", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uscb", + "field": "scaleBull", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Scale Projectiles", + "sort": "c1a08a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usew", + "field": "selCircOnWater", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Circle On Water", + "sort": "c1a12", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uslz", + "field": "selZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Circle - Height", + "sort": "d6c02", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushh", + "field": "shadowH", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Height", + "sort": "c1a11b", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushr", + "field": "shadowOnWater", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Has Water Shadow", + "sort": "c1a11e", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushw", + "field": "shadowW", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Width", + "sort": "c1a11a", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushx", + "field": "shadowX", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Center X", + "sort": "c1a11c", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushy", + "field": "shadowY", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Center Y", + "sort": "c1a11d", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uspe", + "field": "special", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Categorization - Special", + "sort": "c1a06e", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utco", + "field": "teamColor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Team Color", + "sort": "c1a06a", + "type": "teamColor", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utss", + "field": "tilesetSpecific", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Has Tileset Specific Data", + "sort": "c1a06d", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushu", + "field": "unitShadow", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image (Unit)", + "sort": "c1a11", + "type": "shadowImage", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "usnd", + "field": "unitSound", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Unit Sound Set", + "sort": "c1a10", + "type": "unitSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uuch", + "field": "useClickHelper", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Use Click Helper", + "sort": "c1c02", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwal", + "field": "walk", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Walk Speed", + "sort": "d6c00", + "type": "real", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uacq", + "field": "acquire", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Acquisition Range", + "sort": "c8a00", + "type": "unreal", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1t", + "field": "atkType1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Attack Type", + "sort": "c6a03", + "type": "attackType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2t", + "field": "atkType2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Attack Type", + "sort": "c6b03", + "type": "attackType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubs1", + "field": "backSw1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Animation Backswing Point", + "sort": "c6a08a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ubs2", + "field": "backSw2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Animation Backswing Point", + "sort": "c6b08a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ucbs", + "field": "castbsw", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Cast Backswing", + "sort": "d2b01", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ucpt", + "field": "castpt", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Cast Point", + "sort": "d2b00", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1c", + "field": "cool1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Cooldown Time", + "sort": "c6a08", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua2c", + "field": "cool2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Cooldown Time", + "sort": "c6b08", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udl1", + "field": "damageLoss1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Loss Factor", + "sort": "c6a12a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udl2", + "field": "damageLoss2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Loss Factor", + "sort": "c6b12a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1d", + "field": "dice1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Number of Dice", + "sort": "c6a071", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2d", + "field": "dice2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Number of Dice", + "sort": "c6b071", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1b", + "field": "dmgplus1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Base", + "sort": "c6a070", + "type": "int", + "minVal": "0", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2b", + "field": "dmgplus2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Base", + "sort": "c6b070", + "type": "int", + "minVal": "0", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udp1", + "field": "dmgpt1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Animation Damage Point", + "sort": "c6a08", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udp2", + "field": "dmgpt2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Animation Damage Point", + "sort": "c6b08", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udu1", + "field": "dmgUp1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Upgrade Amount", + "sort": "c6a073", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udu2", + "field": "dmgUp2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Upgrade Amount", + "sort": "c6b073", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1f", + "field": "Farea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Full Damage)", + "sort": "c6a09", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2f", + "field": "Farea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Full Damage)", + "sort": "c6b09", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1h", + "field": "Harea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Medium Damage)", + "sort": "c6a10", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2h", + "field": "Harea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Medium Damage)", + "sort": "c6b10", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhd1", + "field": "Hfact1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Factor - Medium", + "sort": "c6a10a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhd2", + "field": "Hfact2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Factor - Medium", + "sort": "c6b10a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uisz", + "field": "impactSwimZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Impact - Z (Swimming)", + "sort": "c5a04a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uimz", + "field": "impactZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Impact - Z", + "sort": "c5a04", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulsz", + "field": "launchSwimZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Z (Swimming)", + "sort": "c5a03d", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpx", + "field": "launchX", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - X", + "sort": "c5a03a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpy", + "field": "launchY", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Y", + "sort": "c5a03b", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpz", + "field": "launchZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Z", + "sort": "c5a03c", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uamn", + "field": "minRange", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Minimum Attack Range", + "sort": "c6a00", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1q", + "field": "Qarea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Small Damage)", + "sort": "c6a11", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2q", + "field": "Qarea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Small Damage)", + "sort": "c6b11", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uqd1", + "field": "Qfact1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Factor - Small", + "sort": "c6a11a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uqd2", + "field": "Qfact2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Factor - Small", + "sort": "c6b11a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1r", + "field": "rangeN1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Range", + "sort": "c6a02", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2r", + "field": "rangeN2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Range", + "sort": "c6b02", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urb1", + "field": "RngBuff1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Range Motion Buffer", + "sort": "c6a02a", + "type": "unreal", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urb2", + "field": "RngBuff2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Range Motion Buffer", + "sort": "c6b02a", + "type": "unreal", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwu1", + "field": "showUI1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Show UI", + "sort": "c6a01a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwu2", + "field": "showUI2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Show UI", + "sort": "c6b01a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1s", + "field": "sides1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Sides per Die", + "sort": "c6a072", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2s", + "field": "sides2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Sides per Die", + "sort": "c6b072", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usd1", + "field": "spillDist1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Spill Distance", + "sort": "c6a12b", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usd2", + "field": "spillDist2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Spill Distance", + "sort": "c6b12b", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usr1", + "field": "spillRadius1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Spill Radius", + "sort": "c6a12c", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usr2", + "field": "spillRadius2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Spill Radius", + "sort": "c6b12c", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1p", + "field": "splashTargs1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect Targets", + "sort": "c6a12", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2p", + "field": "splashTargs2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect Targets", + "sort": "c6b12", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utc1", + "field": "targCount1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Maximum Number of Targets", + "sort": "c6a7a", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utc2", + "field": "targCount2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Maximum Number of Targets", + "sort": "c6b7a", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1g", + "field": "targs1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Targets Allowed", + "sort": "c6a07", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2g", + "field": "targs2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Targets Allowed", + "sort": "c6b07", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uaen", + "field": "weapsOn", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attacks Enabled", + "sort": "c6a01", + "type": "attackBits", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1w", + "field": "weapTp1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Weapon Type", + "sort": "c6a04", + "type": "weaponType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2w", + "field": "weapTp2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Weapon Type", + "sort": "c6b04", + "type": "weaponType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucs1", + "field": "weapType1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Weapon Sound", + "sort": "c6a04a", + "type": "combatSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucs2", + "field": "weapType2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Weapon Sound", + "sort": "c6b04a", + "type": "combatSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabs", + "field": "abilSkinList", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "WESTRING_UEVAL_UABS", + "sort": "c6c00", + "type": "abilitySkinList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhas", + "field": "heroAbilSkinList", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "WESTRING_UEVAL_UHAS", + "sort": "c6c00", + "type": "abilitySkinList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + } + ], + "building": [ + { + "id": "uani", + "field": "animProps", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Animation Names", + "sort": "c1a010", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uico", + "field": "Art", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Game Interface", + "sort": "c1a02", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uaap", + "field": "Attachmentanimprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Animation Names - Attachments", + "sort": "c1a010a", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ualp", + "field": "Attachmentlinkprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Attachment Link Names", + "sort": "c1a010b", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpr", + "field": "Boneprops", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Bone Names", + "sort": "c1a010c", + "type": "stringList", + "minVal": null, + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubsl", + "field": "BuildingSoundLabel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Construction", + "sort": "d8b00", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpx", + "field": "Buttonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (X)", + "sort": "c2a03x", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpy", + "field": "Buttonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (Y)", + "sort": "c2a03y", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udep", + "field": "DependencyOr", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Dependency Equivalents", + "sort": "c5a00a", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ides", + "field": "Description", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Description", + "sort": "d0a05", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "unsf", + "field": "EditorSuffix", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name - Editor Suffix", + "sort": "c1a000", + "type": "string", + "minVal": null, + "maxVal": "50", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhot", + "field": "Hotkey", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Hotkey", + "sort": "d0a01", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulfi", + "field": "LoopingSoundFadeIn", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Looping Fade In Rate", + "sort": "d8b03", + "type": "int", + "minVal": "0", + "maxVal": "12700", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulfo", + "field": "LoopingSoundFadeOut", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Looping Fade Out Rate", + "sort": "d8b04", + "type": "int", + "minVal": "0", + "maxVal": "12700", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "umki", + "field": "Makeitems", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Items Made", + "sort": "c5a05a", + "type": "itemList", + "minVal": null, + "maxVal": "12", + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uma1", + "field": "Missilearc", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Arc", + "sort": "c6a06a", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uma2", + "field": "Missilearc", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Arc", + "sort": "c6b06a", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1m", + "field": "Missileart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Art", + "sort": "c6a05", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2m", + "field": "Missileart", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Art", + "sort": "c6b05", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "umh1", + "field": "MissileHoming", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Homing Enabled", + "sort": "c6a06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umh2", + "field": "MissileHoming", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Homing Enabled", + "sort": "c6b06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1z", + "field": "Missilespeed", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Projectile Speed", + "sort": "c6a06", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2z", + "field": "Missilespeed", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Projectile Speed", + "sort": "c6b06", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umsl", + "field": "MovementSoundLabel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Movement", + "sort": "d8b01", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "unam", + "field": "Name", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name", + "sort": "c1a00", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ursl", + "field": "RandomSoundLabel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Random", + "sort": "d8b02", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ureq", + "field": "Requires", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urqa", + "field": "Requiresamount", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Levels", + "sort": "c5a00a", + "type": "intList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ures", + "field": "Researches", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Researches Available", + "sort": "c5a03", + "type": "upgradeList", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urev", + "field": "Revive", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Revives Dead Heros", + "sort": "c5a000", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ussi", + "field": "ScoreScreenIcon", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Score Screen", + "sort": "c1a02a", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "usei", + "field": "Sellitems", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Items Sold", + "sort": "c5a05", + "type": "itemList", + "minVal": null, + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "useu", + "field": "Sellunits", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Units Sold", + "sort": "c5a04", + "type": "unitList", + "minVal": null, + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uspa", + "field": "Specialart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Special", + "sort": "d9b00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utaa", + "field": "Targetart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target", + "sort": "d9b01", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utip", + "field": "Tip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Basic", + "sort": "d0a00", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utra", + "field": "Trains", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Units Trained", + "sort": "c5a01", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utub", + "field": "Ubertip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Extended", + "sort": "d0a03", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uupt", + "field": "Upgrade", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Upgrades To", + "sort": "c5a000", + "type": "unitList", + "minVal": null, + "maxVal": "12", + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabi", + "field": "abilList", + "slk": "UnitAbilities", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Normal", + "sort": "c6c00", + "type": "abilityList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udaa", + "field": "auto", + "slk": "UnitAbilities", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Default Active Ability", + "sort": "c6c01", + "type": "abilCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubld", + "field": "bldtm", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Build Time", + "sort": "c2a06", + "type": "int", + "minVal": "1", + "maxVal": "298", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubdi", + "field": "bountydice", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Number of Dice", + "sort": "c8a08", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubba", + "field": "bountyplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Base", + "sort": "c8a07", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubsi", + "field": "bountysides", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Bounty Awarded - Sides per Die", + "sort": "c8a09", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulbd", + "field": "lumberbountydice", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Number of Dice", + "sort": "c8a10", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulba", + "field": "lumberbountyplus", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Base", + "sort": "c8a11", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulbs", + "field": "lumberbountysides", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Bounty Awarded - Sides per Die", + "sort": "c8a12", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucol", + "field": "collision", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Collision Size", + "sort": "c1a07", + "type": "unreal", + "minVal": "0", + "maxVal": "1024", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udef", + "field": "def", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Base", + "sort": "c5b00", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udty", + "field": "defType", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Type", + "sort": "c5b02", + "type": "defenseType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udup", + "field": "defUp", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Defense Upgrade Bonus", + "sort": "c5b01", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufma", + "field": "fmade", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Food Produced", + "sort": "c2a030", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufoo", + "field": "fused", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Food Cost", + "sort": "c2a03", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ugol", + "field": "goldcost", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Cost", + "sort": "c2a00", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ugor", + "field": "goldRep", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Gold Cost", + "sort": "c2a02", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhpm", + "field": "HP", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Maximum (Base)", + "sort": "c4a00", + "type": "int", + "minVal": "1", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubdg", + "field": "isbldg", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Is a Building", + "sort": "c1a001a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulum", + "field": "lumbercost", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Cost", + "sort": "c2a01", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulur", + "field": "lumberRep", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Lumber Cost", + "sort": "c2a02", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpi", + "field": "mana0", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Initial Amount", + "sort": "c4a05", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpm", + "field": "manaN", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Maximum", + "sort": "c4a03", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umas", + "field": "maxSpd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Maximum", + "sort": "c7a03b", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umis", + "field": "minSpd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Minimum", + "sort": "c7a03a", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "unbr", + "field": "nbrandom", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Neutral Building - Valid As Random Building", + "sort": "c1c00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usin", + "field": "nsight", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sight Radius (Night)", + "sort": "c8a02", + "type": "int", + "minVal": "0", + "maxVal": "1800", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upap", + "field": "preventPlace", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Placement Requires", + "sort": "c1a09a", + "type": "pathingListPrevent", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhpr", + "field": "regenHP", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Regeneration Rate", + "sort": "c4a01", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umpr", + "field": "regenMana", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Mana Regeneration", + "sort": "c4a04", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhrt", + "field": "regenType", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points Regeneration Type", + "sort": "c4a02", + "type": "regenType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urtm", + "field": "reptm", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Time", + "sort": "c2a07", + "type": "int", + "minVal": "1", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upar", + "field": "requirePlace", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Placement Prevented By", + "sort": "c1a09b", + "type": "pathingListRequire", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "usid", + "field": "sight", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sight Radius (Day)", + "sort": "c8a01", + "type": "int", + "minVal": "0", + "maxVal": "1800", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvs", + "field": "spd", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Speed Base", + "sort": "c7a03", + "type": "int", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usma", + "field": "stockMax", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Maximum", + "sort": "c9a00", + "type": "int", + "minVal": "0", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usrg", + "field": "stockRegen", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Replenish Interval", + "sort": "c9a01", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usst", + "field": "stockStart", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Start Delay", + "sort": "c9a000", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usit", + "field": "stockInitial", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "WESTRING_UEVAL_USIT", + "sort": "c9a02", + "type": "int", + "minVal": "1", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "util", + "field": "tilesets", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Tilesets", + "sort": "c1a06c", + "type": "tilesetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utyp", + "field": "type", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Unit Classification", + "sort": "c2a04", + "type": "unitClass", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upgr", + "field": "upgrades", + "slk": "UnitBalance", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Upgrades Used", + "sort": "c5a02", + "type": "upgradeList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabr", + "field": "buffRadius", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "AI Placement Radius", + "sort": "d4b01", + "type": "unreal", + "minVal": "0", + "maxVal": "24", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uabt", + "field": "buffType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "AI Placement Type", + "sort": "d4b00", + "type": "aiBuffer", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucbo", + "field": "canBuildOn", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Build On", + "sort": "c7a07", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufle", + "field": "canFlee", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Flee", + "sort": "c8a031", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usle", + "field": "canSleep", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Sleeps", + "sort": "c8a030", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udtm", + "field": "death", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Death Time (seconds)", + "sort": "c1b10", + "type": "unreal", + "minVal": "0.1", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udea", + "field": "deathType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Death Type", + "sort": "c1b09", + "type": "deathType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulos", + "field": "fatLOS", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Use Extended Line of Sight", + "sort": "d3b00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uibo", + "field": "isBuildOn", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Be Built On", + "sort": "c7a06", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvf", + "field": "moveFloor", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Height Minimum", + "sort": "c7a02a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvh", + "field": "moveHeight", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Height", + "sort": "c7a02", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvt", + "field": "movetp", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Type", + "sort": "c7a01", + "type": "moveType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uori", + "field": "orientInterp", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Orientation Interpolation", + "sort": "c7a04b", + "type": "int", + "minVal": "0", + "maxVal": "8", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upat", + "field": "pathTex", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Pathing Map", + "sort": "c1a09", + "type": "pathingTexture", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "upoi", + "field": "points", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Point Value", + "sort": "c8a05", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upri", + "field": "prio", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Priority", + "sort": "c8a06", + "type": "int", + "minVal": "0", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uprw", + "field": "propWin", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Propulsion Window (degrees)", + "sort": "c7a04a", + "type": "unreal", + "minVal": "1", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "urac", + "field": "race", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Race", + "sort": "c1a001", + "type": "unitRace", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upaw", + "field": "requireWaterRadius", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Placement Requires Water Radius", + "sort": "c1a09c", + "type": "unreal", + "minVal": "0", + "maxVal": "2048", + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "utar", + "field": "targType", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Targeted as", + "sort": "c7a00", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umvr", + "field": "turnRate", + "slk": "UnitData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "move", + "displayName": "Turn Rate", + "sort": "c7a04", + "type": "unreal", + "minVal": "0.1", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uarm", + "field": "armor", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Armor Type", + "sort": "c5b03", + "type": "armorType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uble", + "field": "blend", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Blend Time (seconds)", + "sort": "c7a04c", + "type": "real", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uclb", + "field": "blue", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 3 (Blue)", + "sort": "c1a06", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushb", + "field": "buildingShadow", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Texture (Building)", + "sort": "c1a10a", + "type": "shadowTexture", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucam", + "field": "campaign", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Categorization - Campaign", + "sort": "c1a06f", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utcc", + "field": "customTeamColor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Allow Custom Team Color", + "sort": "c1a06b", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udro", + "field": "dropItems", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Can Drop Items On Death", + "sort": "c1a06g", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uept", + "field": "elevPts", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Elevation - Sample Points", + "sort": "d5c00", + "type": "int", + "minVal": "0", + "maxVal": "4", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uerd", + "field": "elevRad", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Elevation - Sample Radius", + "sort": "d5c01", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "umdl", + "field": "file", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File", + "sort": "c1a01", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "upor", + "field": "portrait", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "WESTRING_UEVAL_UPOR", + "sort": "c1a01b", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uver", + "field": "fileVerFlags", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File - Extra Versions", + "sort": "c1a01a", + "type": "versionFlags", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ufrd", + "field": "fogRad", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fog of War - Sample Radius", + "sort": "d5c02", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uclg", + "field": "green", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 2 (Green)", + "sort": "c1a05", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhos", + "field": "hostilePal", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Display as Neutral Hostile", + "sort": "c8a10", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uine", + "field": "inEditor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Placeable In Editor", + "sort": "c1a06d0", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "umxp", + "field": "maxPitch", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Maximum Pitch Angle (degrees)", + "sort": "d5b00", + "type": "real", + "minVal": "0", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "umxr", + "field": "maxRoll", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Maximum Roll Angle (degrees)", + "sort": "d5b01", + "type": "real", + "minVal": "0", + "maxVal": "180", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usca", + "field": "modelScale", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Scaling Value", + "sort": "c1a03", + "type": "real", + "minVal": "0.1", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "unbm", + "field": "nbmmIcon", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Neutral Building - Shows Minimap Icon", + "sort": "c1c01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhom", + "field": "hideOnMinimap", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hide Minimap Display", + "sort": "c1c01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uocc", + "field": "occH", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Occluder Height", + "sort": "d6c03", + "type": "unreal", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uclr", + "field": "red", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 1 (Red)", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urun", + "field": "run", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Run Speed", + "sort": "d6c01", + "type": "real", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ussc", + "field": "scale", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Scale", + "sort": "c1a08", + "type": "real", + "minVal": "0.1", + "maxVal": "20", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uscb", + "field": "scaleBull", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Scale Projectiles", + "sort": "c1a08a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usew", + "field": "selCircOnWater", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Circle On Water", + "sort": "c1a12", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uslz", + "field": "selZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Circle - Height", + "sort": "d6c02", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushh", + "field": "shadowH", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Height", + "sort": "c1a11b", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushr", + "field": "shadowOnWater", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Has Water Shadow", + "sort": "c1a11e", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushw", + "field": "shadowW", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Width", + "sort": "c1a11a", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushx", + "field": "shadowX", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Center X", + "sort": "c1a11c", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ushy", + "field": "shadowY", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image - Center Y", + "sort": "c1a11d", + "type": "real", + "minVal": "0", + "maxVal": "2048", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uspe", + "field": "special", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Categorization - Special", + "sort": "c1a06e", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utco", + "field": "teamColor", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Team Color", + "sort": "c1a06a", + "type": "teamColor", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utss", + "field": "tilesetSpecific", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Has Tileset Specific Data", + "sort": "c1a06d", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uubs", + "field": "uberSplat", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Ground Texture", + "sort": "c1a10", + "type": "uberSplat", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ushu", + "field": "unitShadow", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow Image (Unit)", + "sort": "c1a11", + "type": "shadowImage", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "usnd", + "field": "unitSound", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Unit Sound Set", + "sort": "c1a10", + "type": "unitSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uuch", + "field": "useClickHelper", + "slk": "UnitUI", + "index": -1, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Use Click Helper", + "sort": "c1c02", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwal", + "field": "walk", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Walk Speed", + "sort": "d6c00", + "type": "real", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "uacq", + "field": "acquire", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Acquisition Range", + "sort": "c8a00", + "type": "unreal", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1t", + "field": "atkType1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Attack Type", + "sort": "c6a03", + "type": "attackType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2t", + "field": "atkType2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Attack Type", + "sort": "c6b03", + "type": "attackType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubs1", + "field": "backSw1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Animation Backswing Point", + "sort": "c6a08a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ubs2", + "field": "backSw2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Animation Backswing Point", + "sort": "c6b08a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ucbs", + "field": "castbsw", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Cast Backswing", + "sort": "d2b01", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ucpt", + "field": "castpt", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation - Cast Point", + "sort": "d2b00", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1c", + "field": "cool1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Cooldown Time", + "sort": "c6a08", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua2c", + "field": "cool2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Cooldown Time", + "sort": "c6b08", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udl1", + "field": "damageLoss1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Loss Factor", + "sort": "c6a12a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udl2", + "field": "damageLoss2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Loss Factor", + "sort": "c6b12a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1d", + "field": "dice1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Number of Dice", + "sort": "c6a071", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2d", + "field": "dice2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Number of Dice", + "sort": "c6b071", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1b", + "field": "dmgplus1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Base", + "sort": "c6a070", + "type": "int", + "minVal": "0", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2b", + "field": "dmgplus2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Base", + "sort": "c6b070", + "type": "int", + "minVal": "0", + "maxVal": "500000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udp1", + "field": "dmgpt1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Animation Damage Point", + "sort": "c6a08", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udp2", + "field": "dmgpt2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Animation Damage Point", + "sort": "c6b08", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "udu1", + "field": "dmgUp1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Upgrade Amount", + "sort": "c6a073", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "udu2", + "field": "dmgUp2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Upgrade Amount", + "sort": "c6b073", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1f", + "field": "Farea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Full Damage)", + "sort": "c6a09", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2f", + "field": "Farea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Full Damage)", + "sort": "c6b09", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1h", + "field": "Harea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Medium Damage)", + "sort": "c6a10", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2h", + "field": "Harea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Medium Damage)", + "sort": "c6b10", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhd1", + "field": "Hfact1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Factor - Medium", + "sort": "c6a10a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhd2", + "field": "Hfact2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Factor - Medium", + "sort": "c6b10a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uisz", + "field": "impactSwimZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Impact - Z (Swimming)", + "sort": "c5a04a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uimz", + "field": "impactZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Impact - Z", + "sort": "c5a04", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulsz", + "field": "launchSwimZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Z (Swimming)", + "sort": "c5a03d", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpx", + "field": "launchX", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - X", + "sort": "c5a03a", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpy", + "field": "launchY", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Y", + "sort": "c5a03b", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ulpz", + "field": "launchZ", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Projectile Launch - Z", + "sort": "c5a03c", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uamn", + "field": "minRange", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Minimum Attack Range", + "sort": "c6a00", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1q", + "field": "Qarea1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect (Small Damage)", + "sort": "c6a11", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2q", + "field": "Qarea2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect (Small Damage)", + "sort": "c6b11", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uqd1", + "field": "Qfact1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Factor - Small", + "sort": "c6a11a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uqd2", + "field": "Qfact2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Factor - Small", + "sort": "c6b11a", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1r", + "field": "rangeN1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Range", + "sort": "c6a02", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2r", + "field": "rangeN2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Range", + "sort": "c6b02", + "type": "int", + "minVal": "0", + "maxVal": "20000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urb1", + "field": "RngBuff1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Range Motion Buffer", + "sort": "c6a02a", + "type": "unreal", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urb2", + "field": "RngBuff2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Range Motion Buffer", + "sort": "c6b02a", + "type": "unreal", + "minVal": "0", + "maxVal": "2000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwu1", + "field": "showUI1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Show UI", + "sort": "c6a01a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uwu2", + "field": "showUI2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Show UI", + "sort": "c6b01a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1s", + "field": "sides1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Sides per Die", + "sort": "c6a072", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2s", + "field": "sides2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Sides per Die", + "sort": "c6b072", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "usd1", + "field": "spillDist1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Spill Distance", + "sort": "c6a12b", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usd2", + "field": "spillDist2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Spill Distance", + "sort": "c6b12b", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usr1", + "field": "spillRadius1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Damage Spill Radius", + "sort": "c6a12c", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "usr2", + "field": "spillRadius2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Damage Spill Radius", + "sort": "c6b12c", + "type": "unreal", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ua1p", + "field": "splashTargs1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Area of Effect Targets", + "sort": "c6a12", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2p", + "field": "splashTargs2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Area of Effect Targets", + "sort": "c6b12", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utc1", + "field": "targCount1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Maximum Number of Targets", + "sort": "c6a7a", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utc2", + "field": "targCount2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Maximum Number of Targets", + "sort": "c6b7a", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1g", + "field": "targs1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Targets Allowed", + "sort": "c6a07", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2g", + "field": "targs2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Targets Allowed", + "sort": "c6b07", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uaen", + "field": "weapsOn", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attacks Enabled", + "sort": "c6a01", + "type": "attackBits", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua1w", + "field": "weapTp1", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Weapon Type", + "sort": "c6a04", + "type": "weaponType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ua2w", + "field": "weapTp2", + "slk": "UnitWeapons", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Weapon Type", + "sort": "c6b04", + "type": "weaponType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucs1", + "field": "weapType1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 1 - Weapon Sound", + "sort": "c6a04a", + "type": "combatSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ucs2", + "field": "weapType2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Attack 2 - Weapon Sound", + "sort": "c6b04a", + "type": "combatSound", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uabs", + "field": "abilSkinList", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "WESTRING_UEVAL_UABS", + "sort": "c6c00", + "type": "abilitySkinList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhas", + "field": "heroAbilSkinList", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "WESTRING_UEVAL_UHAS", + "sort": "c6c00", + "type": "abilitySkinList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + } + ], + "item": [ + { + "id": "iabi", + "field": "abilList", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "abil", + "displayName": "Abilities", + "sort": "c6c00", + "type": "abilityList", + "minVal": null, + "maxVal": "4", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iarm", + "field": "armor", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Armor Type", + "sort": "c5b03", + "type": "armorType", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "icla", + "field": "class", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Classification", + "sort": "c1a03", + "type": "itemClass", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iclb", + "field": "colorB", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 3 (Blue)", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iclg", + "field": "colorG", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 2 (Green)", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iclr", + "field": "colorR", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 1 (Red)", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "icid", + "field": "cooldownID", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Cooldown Group", + "sort": "c6c01", + "type": "abilCode", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "idrp", + "field": "drop", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Dropped When Carrier Dies", + "sort": "c9a06", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "idro", + "field": "droppable", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Be Dropped", + "sort": "c9a05", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ifil", + "field": "file", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model Used", + "sort": "c1a01", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "igol", + "field": "goldcost", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Cost", + "sort": "c2a00", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ihtp", + "field": "HP", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points", + "sort": "c3a00", + "type": "int", + "minVal": "1", + "maxVal": "500000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iicd", + "field": "ignoreCD", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Ignore Cooldown", + "sort": "c5a000", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ilev", + "field": "Level", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Level", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "8", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ilum", + "field": "lumbercost", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Cost", + "sort": "c2a01", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "imor", + "field": "morph", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Valid Target For Transformation", + "sort": "c9a07", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ilvo", + "field": "oldLevel", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Level (Unclassified)", + "sort": "c1a04a", + "type": "int", + "minVal": "0", + "maxVal": "10", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iper", + "field": "perishable", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Perishable", + "sort": "c9a04", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iprn", + "field": "pickRandom", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Include As Random Choice", + "sort": "c9a05", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ipow", + "field": "powerup", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Use Automatically When Acquired", + "sort": "c9a06", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ipri", + "field": "prio", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Priority", + "sort": "c4a00", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "isca", + "field": "scale", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Scaling Value", + "sort": "c1a03", + "type": "real", + "minVal": "0.1", + "maxVal": "10", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "issc", + "field": "selSize", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Size - Editor", + "sort": "", + "type": "real", + "minVal": "0", + "maxVal": "10000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "isel", + "field": "sellable", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Be Sold By Merchants", + "sort": "c6c02", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ipaw", + "field": "pawnable", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Can Be Sold To Merchants", + "sort": "c6c02a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "isto", + "field": "stockMax", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Maximum", + "sort": "c9a00", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "istr", + "field": "stockRegen", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Replenish Interval", + "sort": "c9a01", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "isst", + "field": "stockStart", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Stock Start Delay", + "sort": "c9a000", + "type": "int", + "minVal": "0", + "maxVal": "3600", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "isit", + "field": "stockInitial", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "WESTRING_UEVAL_ISIT", + "sort": "c9a000", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iusa", + "field": "usable", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Actively Used", + "sort": "c9a03", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iuse", + "field": "uses", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Number of Charges", + "sort": "c9a02", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ista", + "field": "stackMax", + "slk": "ItemData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "WESTRING_UEVAL_ISTA", + "sort": "c9a01", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "iico", + "field": "Art", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Interface Icon", + "sort": "c1a02", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpx", + "field": "Buttonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (X)", + "sort": "c2a03x", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ubpy", + "field": "Buttonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (Y)", + "sort": "c2a03y", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ides", + "field": "Description", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Description", + "sort": "d0a05", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "uhot", + "field": "Hotkey", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Hotkey", + "sort": "d0a01", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "unam", + "field": "Name", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name", + "sort": "c1a00", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ureq", + "field": "Requires", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements", + "sort": "c5a00", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "urqa", + "field": "Requiresamount", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Levels", + "sort": "c5a00a", + "type": "intList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utip", + "field": "Tip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Basic", + "sort": "d0a00", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "utub", + "field": "Ubertip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Extended", + "sort": "d0a03", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": true, + "useUnit": true, + "useBuilding": true, + "useItem": true, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + } + ], + "ability": [ + { + "id": "anam", + "field": "Name", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name", + "sort": "c1a00", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ansf", + "field": "EditorSuffix", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Editor Suffix", + "sort": "c1a01", + "type": "string", + "minVal": null, + "maxVal": "50", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aher", + "field": "hero", + "slk": "AbilityData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hero Ability", + "sort": "c1a01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aite", + "field": "item", + "slk": "AbilityData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Item Ability", + "sort": "c1a01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "arac", + "field": "race", + "slk": "AbilityData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Race", + "sort": "c1a02", + "type": "unitRace", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "abpx", + "field": "Buttonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position - Normal (X)", + "sort": "c2a00", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "abpy", + "field": "Buttonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position - Normal (Y)", + "sort": "c2a01", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aubx", + "field": "UnButtonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position - Turn Off (X)", + "sort": "c2a02", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "auby", + "field": "UnButtonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position - Turn Off (Y)", + "sort": "c2a03", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "arpx", + "field": "Researchbuttonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position - Research (X)", + "sort": "c2a04", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "arpy", + "field": "Researchbuttonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position - Research (Y)", + "sort": "c2a05", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aart", + "field": "Art", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Normal", + "sort": "c3a00", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "auar", + "field": "Unart", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Turn Off", + "sort": "c3a01", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "arar", + "field": "ResearchArt", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon - Research", + "sort": "c3a02", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "acat", + "field": "CasterArt", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Caster", + "sort": "c4a00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "atat", + "field": "TargetArt", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target", + "sort": "c5a00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "asat", + "field": "SpecialArt", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Special", + "sort": "c6a00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aeat", + "field": "EffectArt", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Effect", + "sort": "c7a00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aaea", + "field": "Areaeffectart", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Area Effect", + "sort": "c7a01", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "alig", + "field": "LightningEffect", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Lightning Effects", + "sort": "", + "type": "lightningList", + "minVal": null, + "maxVal": "3", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "amat", + "field": "Missileart", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Art", + "sort": "c8a00", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "amsp", + "field": "Missilespeed", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Speed", + "sort": "c8a01", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "amac", + "field": "Missilearc", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Arc", + "sort": "c8a02", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "amho", + "field": "MissileHoming", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Homing Enabled", + "sort": "c8a03", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atac", + "field": "Targetattachcount", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachments", + "sort": "c9a00", + "type": "int", + "minVal": "0", + "maxVal": "6", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ata0", + "field": "Targetattach", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 1", + "sort": "c9a000", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ata1", + "field": "Targetattach1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 2", + "sort": "c9a001", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ata2", + "field": "Targetattach2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 3", + "sort": "c9a002", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ata3", + "field": "Targetattach3", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 4", + "sort": "c9a003", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ata4", + "field": "Targetattach4", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 5", + "sort": "c9a004", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ata5", + "field": "Targetattach5", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 6", + "sort": "c9a005", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "acac", + "field": "Casterattachcount", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Caster Attachments", + "sort": "c9a00", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "acap", + "field": "Casterattach", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Caster Attachment Point 1", + "sort": "c9b00", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aca1", + "field": "Casterattach1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Caster Attachment Point 2", + "sort": "c9b00", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aspt", + "field": "Specialattach", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Special Attachment Point", + "sort": "c9b01", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aani", + "field": "Animnames", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Animation Names", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "atp1", + "field": "Tip", + "slk": "Profile", + "index": 0, + "repeat": 3, + "data": 0, + "category": "text", + "displayName": "Tooltip - Normal", + "sort": "y0a01", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aut1", + "field": "Untip", + "slk": "Profile", + "index": 0, + "repeat": 3, + "data": 0, + "category": "text", + "displayName": "Tooltip - Turn Off", + "sort": "y0b01", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aub1", + "field": "Ubertip", + "slk": "Profile", + "index": 0, + "repeat": 3, + "data": 0, + "category": "text", + "displayName": "Tooltip - Normal - Extended", + "sort": "y0c01", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "auu1", + "field": "Unubertip", + "slk": "Profile", + "index": 0, + "repeat": 3, + "data": 0, + "category": "text", + "displayName": "Tooltip - Turn Off - Extended", + "sort": "y0d01", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aret", + "field": "Researchtip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Learn", + "sort": "d0a00", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "arut", + "field": "Researchubertip", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Learn - Extended", + "sort": "d0a01", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "arhk", + "field": "Researchhotkey", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Hotkey - Learn", + "sort": "d0a02", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ahky", + "field": "Hotkey", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Hotkey - Normal", + "sort": "e0a00", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "auhk", + "field": "Unhotkey", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Hotkey - Turn Off", + "sort": "e0a01", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "areq", + "field": "Requires", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements", + "sort": "e0b01", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "arqa", + "field": "Requiresamount", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Requirements - Levels", + "sort": "e0b02", + "type": "intList", + "minVal": null, + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "achd", + "field": "checkDep", + "slk": "AbilityData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "tech", + "displayName": "Check Dependencies", + "sort": "e2b00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "apri", + "field": "priority", + "slk": "AbilityData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Priority for Spell Steal", + "sort": "e2b01", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aord", + "field": "Order", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Order String - Use/Turn On", + "sort": "e3b00", + "type": "orderString", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aoru", + "field": "Unorder", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Order String - Turn Off", + "sort": "e3b01", + "type": "orderString", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aoro", + "field": "Orderon", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Order String - Activate", + "sort": "e3b02", + "type": "orderString", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aorf", + "field": "Orderoff", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Order String - Deactivate", + "sort": "e3b03", + "type": "orderString", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aefs", + "field": "Effectsound", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Effect Sound", + "sort": "e4b00", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aefl", + "field": "Effectsoundlooped", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Effect Sound (Looping)", + "sort": "e4b01", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "alev", + "field": "levels", + "slk": "AbilityData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Levels", + "sort": "f0a10", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "arlv", + "field": "reqLevel", + "slk": "AbilityData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Required Level", + "sort": "f0a01", + "type": "int", + "minVal": "1", + "maxVal": "10000", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "alsk", + "field": "levelSkip", + "slk": "AbilityData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Level Skip Requirement", + "sort": "f0a01a", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": true, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atar", + "field": "targs", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Targets Allowed", + "sort": "f0a02", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "acas", + "field": "Cast", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Casting Time", + "sort": "g0a00", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [ + "Arpb", + "Arpl", + "Arpm", + "ANpa" + ], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "adur", + "field": "Dur", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Duration - Normal", + "sort": "g0a01", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "ahdu", + "field": "HeroDur", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Duration - Hero", + "sort": "g0a02", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "acdn", + "field": "Cool", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Cooldown", + "sort": "g0a03", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "amcs", + "field": "Cost", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Mana Cost", + "sort": "g0a04", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "aare", + "field": "Area", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Area of Effect", + "sort": "g0a05", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "aran", + "field": "Rng", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Cast Range", + "sort": "g0a06", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "abuf", + "field": "BuffID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Buffs", + "sort": "g0a07", + "type": "buffList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "aeff", + "field": "EfctID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "stats", + "displayName": "Effects", + "sort": "g0a07", + "type": "effectList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbz1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Waves", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbz", + "ACbz", + "ANrf", + "ACrf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbz2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbz", + "ACbz", + "ANrf", + "ACrf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbz3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Number of Shards", + "sort": "x0a002", + "type": "int", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbz", + "ACbz", + "ANrf", + "ACrf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbz4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Building Reduction", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbz", + "ACbz", + "ANrf", + "ACrf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbz5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbz", + "ACbz", + "ANrf", + "ACrf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbz6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Maximum Damage per Wave", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbz", + "ACbz", + "ANrf", + "ACrf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hab1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Regeneration Increase", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHab", + "ACba", + "AIba" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hab2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Percent Bonus", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHab", + "ACba", + "AIba" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hmt1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Units Teleported", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHmt", + "AImt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hmt2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Casting Delay", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHmt", + "AImt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hmt3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Use Teleport Clustering", + "sort": "x0a003", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHmt", + "AImt", + "AUds" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hwe1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit Type", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHwe", + "AEst", + "ANsg", + "ANsq", + "ANsw", + "ANwm", + "AOsw", + "AOwd", + "Anwm", + "ACwe", + "AHpx", + "ACtn", + "ANlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hwe2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Summoned Unit Count", + "sort": "x0a001", + "type": "int", + "minVal": "1", + "maxVal": "24", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHwe", + "AEst", + "ANsg", + "ANsq", + "ANsw", + "ANwm", + "AOsw", + "AOwd", + "Anwm", + "ACwe", + "AHpx", + "ACtn", + "ANlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oww1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOww" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oww2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Magic Damage Reduction", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOww" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocr1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Chance to Critical Strike", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcr", + "ACct", + "ANdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocr2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Multiplier", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcr", + "ACct", + "ANdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocr3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcr", + "ACct", + "ANdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocr4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Chance to Evade", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcr", + "ACct", + "ANdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocr5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Never Miss", + "sort": "x0a005", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcr", + "ACct", + "ANdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocr6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "WESTRING_AEVAL_OCR6", + "sort": "x0a006", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcr", + "ACct", + "ANdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Omi1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Images", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "9", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOmi" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Omi2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Dealt (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOmi" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Omi3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Taken (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOmi" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Omi4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Animation Delay", + "sort": "x0a003", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOmi" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Owk1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Transition Time", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOwk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Owk2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Movement Speed Increase (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOwk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Owk3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Backstab Damage", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOwk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Owk4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Backstab Damage", + "sort": "x0a003", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOwk", + "ANwk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Owk5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_OWK5", + "sort": "x0a005", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOwk", + "ANwk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uan1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Corpses Raised", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUan", + "AUa2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uan3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Inherit Upgrades", + "sort": "x0a002", + "type": "bool", + "minVal": "1", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUan", + "ACad", + "AIan", + "AInd", + "AUa2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Amount Healed/Damaged", + "sort": "x0a000", + "type": "unreal", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdc", + "ACdc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udp1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Life Converted to Mana", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdp", + "AUdr", + "Aste" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Life Converted to Life", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdp", + "AUdr", + "Aste" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udp3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Mana Conversion As Percent", + "sort": "x0a003", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdp", + "AUdr", + "Aste" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udp4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Life Conversion As Percent", + "sort": "x0a004", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdp", + "AUdr", + "Aste" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udp5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Leave Target Alive", + "sort": "x0a005", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdp", + "AUdr", + "Aste", + "AIdg", + "AIg2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uau1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Increase (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUau", + "AIau", + "ACua" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uau2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Life Regeneration Increase (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUau", + "AIau", + "ACua" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uau3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Percent Bonus", + "sort": "x0a002", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUau", + "AIau", + "ACua" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eev1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Chance to Evade", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEev", + "AIev", + "ACev", + "ACes" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eim1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage per Interval", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEim", + "ACim", + "ANpi", + "Apmf", + "Apig" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eim2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Drained per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEim", + "ACim", + "ANpi", + "Apmf", + "Apig" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eim3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Buffer Mana Required", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEim", + "ACim", + "ANpi", + "Apmf", + "Apig" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Emb1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Max Mana Drained", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEmb", + "Amnb", + "Ambd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Emb2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Bolt Delay", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEmb", + "Amnb", + "Ambd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Emb3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Bolt Lifetime", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEmb", + "Amnb", + "Ambd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eme1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Normal Form Unit", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEme", + "AEIl", + "AEvi", + "Abrf", + "Arav", + "Amrf", + "Astn", + "Aspx", + "Aave", + "Abur", + "Abu2", + "Abu3", + "Aetf", + "Acpf", + "Aphx", + "Asb1", + "Asb2", + "Asb3", + "ANcr", + "ANrg", + "ANg1", + "ANg2", + "ANg3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eme2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Morphing Flags", + "sort": "x0a001", + "type": "morphFlags", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEme", + "AEIl", + "AEvi", + "Abrf", + "Arav", + "Amrf", + "Astn", + "Aspx", + "Aave", + "Abur", + "Abu2", + "Abu3", + "Aetf", + "Acpf", + "Aphx", + "Asb1", + "Asb2", + "Asb3", + "ANcr", + "ANrg", + "ANg1", + "ANg2", + "ANg3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eme3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Altitude Adjustment Duration", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEme", + "AEIl", + "AEvi", + "Abrf", + "Arav", + "Amrf", + "Astn", + "Aspx", + "Aave", + "Abur", + "Abu2", + "Abu3", + "Aetf", + "Acpf", + "Aphx", + "Asb1", + "Asb2", + "Asb3", + "ANcr", + "ANrg", + "ANg1", + "ANg2", + "ANg3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eme4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Landing Delay Time", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEme", + "AEIl", + "AEvi", + "Abrf", + "Arav", + "Amrf", + "Astn", + "Aspx", + "Aave", + "Abur", + "Abu2", + "Abu3", + "Aetf", + "Acpf", + "Aphx", + "ANcr", + "ANrg", + "ANg1", + "ANg2", + "ANg3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eme5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Alternate Form Hit Point Bonus", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEme", + "AEIl", + "AEvi" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncr5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Move Speed Bonus (Info Panel Only)", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncr6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Attack Speed Bonus (Info Panel Only)", + "sort": "x0a006", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nrg5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Strength Bonus", + "sort": "x0a005", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANrg", + "ANg1", + "ANg2", + "ANg3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nrg6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Defense Bonus", + "sort": "x0a006", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANrg", + "ANg1", + "ANg2", + "ANg3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ave5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Life Regeneration Rate (per second)", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aave", + "Astn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Emeu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Alternate Form Unit", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEme", + "AEIl", + "AEvi", + "Abrf", + "Arav", + "Amrf", + "Astn", + "Aspx", + "Aave", + "Abur", + "Abu2", + "Abu3", + "Aetf", + "Acpf", + "Aphx", + "Asb1", + "Asb2", + "Asb3", + "ANcr", + "ANrg", + "ANg1", + "ANg2", + "ANg3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Usl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Stun Duration", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUsl", + "ACsl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uav1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Damage Stolen (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUav", + "AIav", + "ACvp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ucs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUcs", + "ANbf", + "ACbc", + "ACbf", + "ACca", + "ACcv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ucs2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Max Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUcs", + "ANbf", + "ACbc", + "ACbf", + "ACca", + "ACcv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ucs3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Distance", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUcs", + "ANbf", + "ACbc", + "ACbf", + "ACca", + "ACcv", + "ANfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ucs4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Final Area", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUcs", + "ANbf", + "ACbc", + "ACbf", + "ACca", + "ACcv", + "ANfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uin1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUin", + "ANin", + "SNin", + "AIin" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uin2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Duration", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUin", + "ANin", + "SNin", + "AIin" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uin3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Impact Delay", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUin", + "ANin", + "SNin", + "AIin" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uin4", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit", + "sort": "x0a003", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUin", + "ANin", + "SNin", + "AIin" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage per Target", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcl", + "AOhw", + "ACcl", + "AChv", + "ANfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Number of Targets Hit", + "sort": "x0a001", + "type": "int", + "minVal": "1", + "maxVal": "16", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcl", + "AOhw", + "ACcl", + "AChv", + "ANfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ocl3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Reduction per Target", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOcl", + "AOhw", + "ACcl", + "AChv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oeq1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Effect Delay", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOeq", + "SNeq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oeq2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage per Second to Buildings", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOeq", + "SNeq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oeq3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Units Slowed (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOeq", + "SNeq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oeq4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Final Area", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOeq", + "SNeq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ofs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Detection Type", + "sort": "x0a000", + "type": "detectionType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOfs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Osf1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOsf", + "ACsf", + "ACs9", + "AIsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Osf2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Number of Summoned Units", + "sort": "x0a001", + "type": "int", + "minVal": "1", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOsf", + "ACsf", + "ACs9", + "AIsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eer1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEer", + "Aenr", + "Aenw" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Efn1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Summoned Units", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEfn", + "ACfr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Efnu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit Type", + "sort": "x0a000u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEfn", + "ACfr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eah1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Dealt to Attackers", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEah" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eah2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage is Percent Received", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEah" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Etq1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Life Healed", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEtq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Etq2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Heal Interval", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEtq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Etq3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Building Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEtq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Etq4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "WESTRING_AEVAL_ETQ4", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEtq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udd1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Max Life Drained per Second (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdd", + "SNdd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Udd2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Building Reduction", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUdd", + "SNdd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ufa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Armor Duration", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUfa", + "AUfu", + "ACfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ufa2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Armor Bonus", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUfa", + "AUfu", + "ACfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ufn1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Area of Effect Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUfn", + "ACfn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ufn2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Specific Target Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUfn", + "ACfn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ufn5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_UFN5", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUfn", + "ACfn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hfa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHfa", + "ACsa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esf1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Dealt", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsf", + "AEsb", + "ANmo", + "ACmo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esf2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Interval", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsf", + "AEsb", + "ANmo", + "ACmo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esf3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Building Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsf", + "AEsb", + "ANmo", + "ACmo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ear1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEar", + "AIar", + "ACat" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ear2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Melee Bonus", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEar", + "AIar", + "ACat", + "ACac", + "AIcd", + "Aakb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ear3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Ranged Bonus", + "sort": "x0a002", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEar", + "AIar", + "ACat", + "ACac", + "AIcd", + "Aakb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ear4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Flat Bonus", + "sort": "x0a003", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEar", + "AIar", + "ACat", + "ACac", + "AIcd", + "Aakb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hav1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Defense Bonus", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHav" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hav2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Hit Point Bonus", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHav" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hav3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHav" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hav4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Magic Damage Reduction", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHav" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbh1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Chance to Bash", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbh", + "ACbh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbh2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Multiplier", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbh", + "ACbh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbh3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbh", + "ACbh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbh4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Chance to Miss", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbh", + "ACbh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbh5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Never Miss", + "sort": "x0a005", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbh", + "ACbh", + "ANbh", + "ANb2", + "AIbx" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Htb1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHtb", + "ANfb", + "Awfb", + "ACfb", + "ACcb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Htc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "AOE Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHtc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Htc2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Specific Target Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHtc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Htc3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Movement Speed Reduction (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHtc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Htc4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Attack Speed Reduction (%)", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHtc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Htc5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_HTC5", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHtc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Had1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Armor Bonus", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHad", + "AIad", + "ACav" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Had2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Percent Bonus", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHad", + "AIad", + "ACav" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hds1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Can Deactivate", + "sort": "x0a000", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHds" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hhb1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Amount Healed/Damaged", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHhb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hre1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Corpses Raised", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHre", + "AIrs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hre2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Raised Units Are Invulnerable", + "sort": "x0a001", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUan", + "AHre", + "ACad", + "AIan", + "AIrs", + "APrl", + "APrr", + "AUa2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hca1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Extra Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHca", + "ACcw", + "ANfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hca2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Movement Speed Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHca", + "ACcw", + "ANfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hca3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Attack Speed Factor", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHca", + "ACcw", + "ANfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hca4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Stack Flags", + "sort": "x0a004", + "type": "stackFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHca", + "ACcw", + "ANfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oae1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Increase (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOae", + "AIae", + "SCae" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oae2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Speed Increase (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOae", + "AIae", + "SCae" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ore1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Reincarnation Delay", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOre", + "ACrn", + "ANrn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Osh1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOsh", + "ACsh", + "ACst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Osh2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Maximum Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOsh", + "ACsh", + "ACst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Osh3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Distance", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOsh", + "ACsh", + "ACst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Osh4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Final Area", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AOsh", + "ACsh", + "ACst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nfd1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Graphic Delay", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANfd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nfd2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Graphic Duration", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANfd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nfd3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANfd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndp1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Spawned Units", + "sort": "x0a000", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Minimum Number of Units", + "sort": "x0a001", + "type": "int", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndp3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Maximum Number of Units", + "sort": "x0a002", + "type": "int", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nrc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Ability for Unit Creation", + "sort": "x0a000", + "type": "abilCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANrc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nrc2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Number of Units Created", + "sort": "x0a001", + "type": "int", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANrc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ams1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Summoned Unit Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aams", + "ACam" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ams2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Magic Damage Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aams", + "ACam" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ams3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Shield Life", + "sort": "", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aams", + "ACam", + "AIxs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ams4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Mana Loss", + "sort": "x0a004", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aams", + "ACam", + "AIxs", + "Aam2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Apl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Aura Duration", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aapl", + "Aap1", + "Aap2", + "Aap3", + "Aap4", + "Aap5" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Apl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aapl", + "Aap1", + "Aap2", + "Aap3", + "Aap4", + "Aap5" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Apl3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Duration of Plague Ward", + "sort": "x0a002", + "type": "unreal", + "minVal": "-1", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aapl", + "Aap1", + "Aap2", + "Aap3", + "Aap4", + "Aap5" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Aplu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Plague Ward Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aapl", + "Aap1", + "Aap2", + "Aap3", + "Aap4", + "Aap5" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oar1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Amount of Hit Points Regenerated", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aoar", + "ACnr", + "Aabr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Oar2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Percentage", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aoar", + "ACnr", + "Aabr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Akb1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Damage Increase", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aakb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Adm1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Loss", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aadm", + "ACdm", + "Adis", + "Adsm", + "Adch" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Adm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Summoned Unit Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aadm", + "ACdm", + "Adis", + "Adsm", + "Adch" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Btl1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Allowed Unit Type", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abtl", + "Sbtl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Btl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Summon Busy Units", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abtl", + "Sbtl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Bli1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Expansion Amount", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abds", + "Abdl", + "Abgs", + "Abgl", + "Ablp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Bli2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Creates Blight", + "sort": "x0a002", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abds", + "Abdl", + "Abgs", + "Abgl", + "Ablp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Bgm1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Gold per Interval", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abgm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Bgm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Interval Duration", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abgm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Bgm3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Max Number of Miners", + "sort": "x0a002", + "type": "int", + "minVal": "1", + "maxVal": "8", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abgm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Bgm4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Radius of Mining Ring", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abgm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Blo1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Speed Increase (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ablo", + "ACbl", + "Afzy" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Blo2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Movement Speed Increase (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ablo", + "ACbl.Afzy" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Blo3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Scaling Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ablo", + "ACbl", + "Afzy" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Can1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Hit Points per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acan", + "ACcn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Can2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Max Hit Points", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acan", + "ACcn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Car1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Cargo Capacity", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "8", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Abun", + "Advc", + "Sch2", + "Sch3", + "Sch4", + "Sch5", + "Aenc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dev2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dev3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Maximum Creep Level", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Chd1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Update Frequency", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Achd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Chd2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Update Frequency", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Achd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Chd3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Summoned Unit Damage", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Achd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cha1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "New Unit Type", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acha", + "Sca1", + "Sca2", + "Sca3", + "Sca4", + "Sca5", + "Sca6", + "Sbsk", + "Srtt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cri1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Reduction (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acri", + "Scri", + "ACcr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cri2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Speed Reduction (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acri", + "Scri", + "ACcr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cri3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acri", + "Scri", + "ACcr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Crs", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Chance to Miss", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acrs", + "ACcs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dda1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Full Damage Radius", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adda", + "Amnx", + "Amnz", + "Asds", + "Auco" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dda2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Full Damage Amount", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adda", + "Amnx", + "Amnz", + "Asds", + "Auco" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dda3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Partial Damage Radius", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adda", + "Amnx", + "Amnz", + "Asds", + "Auco" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dda4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Partial Damage Amount", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adda", + "Amnx", + "Amnz", + "Asds", + "Auco" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sds1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Building Damage Factor", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asds" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sds6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Explodes on Death", + "sort": "x0a005", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asds", + "Asdg", + "Asd2", + "Asd3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uco5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Max Damage", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Auco" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uco6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Move Speed Bonus", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "522", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Auco" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Taken (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Dealt (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Movement Speed Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Attack Speed Factor", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Magic Damage Reduction", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Chance to Deflect", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd", + "Aegr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def7", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 7, + "category": "data", + "displayName": "Deflect Damage Taken (Piercing)", + "sort": "x0a006", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd", + "Aegr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Def8", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 8, + "category": "data", + "displayName": "Deflect Damage Taken (Spells)", + "sort": "x0a007", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adef", + "Amdf", + "AIdd", + "Aegr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dev1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Max Creep Level", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adev", + "ACdv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eat1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Rip Delay", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aeat" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eat2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Eat Delay", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aeat" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eat3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Hit Points Gained", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aeat" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ens1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Air Unit Lower Duration", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aens", + "ACen", + "Aweb", + "ACwb", + "AIwb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ens2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Air Unit Height", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aens", + "ACen", + "Aweb", + "ACwb", + "AIwb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ens3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Melee Attack Range", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aens", + "ACen", + "Aweb", + "ACwb", + "AIwb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ent1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Resulting Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aent" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Egm1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Gold per Interval", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aegm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Egm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Interval Duration", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aegm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Fae1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Defense Reduction", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afae", + "Afa2", + "ACff" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Fae2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Always Autocast", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afae", + "Afa2", + "ACff" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Fla1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Detection Type", + "sort": "x0a000", + "type": "detectionType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afla" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Fla2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Effect Delay", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afla" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Fla3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Flare Count", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afla" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gld1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Max Gold", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agld" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gld2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mining Duration", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "3600", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agld" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gld3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Mining Capacity", + "sort": "x0a002", + "type": "int", + "minVal": "1", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agld" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gyd1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Number of Corpses", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agyd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gyd2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Radius of Gravestones", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agyd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gyd3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Radius of Corpses", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agyd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gydu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Corpse Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agyd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Har1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage to Tree", + "sort": "x0a000", + "type": "int", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahar", + "Ahrl", + "Ahr2", + "Ahr3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Har2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Lumber Capacity", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahar", + "Ahrl", + "Ahr2", + "Ahr3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Har3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Gold Capacity", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahar" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hea1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Hit Points Gained", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahea", + "Anh1", + "Anh2", + "Anhe" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Inf1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Increase (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ainf", + "ACif" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Inf2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Defense Increase", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ainf", + "ACif" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Inf3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Autocast Range", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ainf", + "ACif" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Inf4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Life Regen Rate", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ainf", + "ACif" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Lit1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Graphic Delay", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Alit" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Lit2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Graphic Duration", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Alit" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Lsh1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Alsh", + "ACls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Loa1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Allowed Unit Type", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aloa", + "Sloa", + "Slo2", + "Slo3" + ], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "Mbt1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Gained", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ambt", + "Amb2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Mbt2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Hit Points Gained", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ambt", + "Amb2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Mbt3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Autocast Requirement", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ambt", + "Amb2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Mbt4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Water Height", + "sort": "x0a003", + "type": "unreal", + "minVal": "-1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ambt", + "Amb2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Mbt5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Regenerate Only At Night", + "sort": "x0a005", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ambt", + "Amb2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Mil1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Normal Form Unit", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amil" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Mil2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Alternate Form Unit", + "sort": "x0a001", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amil" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Min1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Activation Delay", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amin" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Min2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Invisibility Transition Time", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amin" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neu1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Activation Radius", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aneu", + "Ane2", + "Aall" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neu2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Interaction Type", + "sort": "x0a002", + "type": "interactionFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aneu", + "Ane2", + "Aall" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neu3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Show Select Unit Button", + "sort": "x0a003", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aneu", + "Ane2", + "Aall" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neu4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Show Unit Indicator", + "sort": "x0a000", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aneu", + "Ane2", + "Aall" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndt1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Gold Cost", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "1000000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Andt", + "AAns" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndt2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Lumber Cost", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "1000000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Andt", + "AAns" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndt3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Detection Type", + "sort": "x0a002", + "type": "detectionType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Andt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ans5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Base Order ID", + "sort": "x0a003", + "type": "orderString", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AAns" + ], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ans6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Charge Owning Player", + "sort": "x0a004", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AAns" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Arm1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Amount Regenerated", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANre", + "Aarm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Arm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Percentage", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANre", + "Aarm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poi1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Apoi", + "Apo2", + "Aven", + "ACvs", + "ANpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poi2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Speed Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Apoi", + "Apo2", + "Aven", + "ACvs", + "ANpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poi3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Movement Speed Factor", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Apoi", + "Apo2", + "Aven", + "ACvs", + "ANpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poi4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Stacking Type", + "sort": "x0a004", + "type": "stackFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Apoi", + "Apo2", + "Aven", + "ACvs", + "ANpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Extra Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poa2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "WESTRING_AEVAL_POI1", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poa3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "WESTRING_AEVAL_POI2", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poa4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "WESTRING_AEVAL_POI3", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Poa5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_POI4", + "sort": "x0a004", + "type": "stackFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ply1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Creep Level", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aply", + "ACpy", + "AOhx", + "AChx" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ply2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Morph Units - Ground", + "sort": "x0a001", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aply", + "ACpy", + "AOhx", + "AChx" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ply3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Morph Units - Air", + "sort": "x0a002", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aply", + "ACpy", + "AOhx", + "AChx" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ply4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Morph Units - Amphibious", + "sort": "x0a003", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aply", + "ACpy", + "AOhx", + "AChx" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ply5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Morph Units - Water", + "sort": "x0a005", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aply", + "ACpy", + "AOhx", + "AChx" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Pos1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Creep Level", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Apos", + "ACps", + "Aps2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Pos2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Amplification", + "sort": "", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aps2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Pos3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Target Is Invulnerable", + "sort": "", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aps2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Pos4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Target Is Magic Immune", + "sort": "", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aps2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "War1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Chance to Stomp (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awar", + "ACpv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "War2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Dealt", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awar", + "ACpv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "War3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Full Damage Radius", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awar", + "ACpv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "War4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Half Damage Radius", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awar", + "ACpv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Prg1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Update Frequency", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aprg", + "ACpu", + "AIlp", + "AIpg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Prg2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Update Frequency", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aprg", + "ACpu", + "AIlp", + "AIpg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Prg3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Summoned Unit Damage", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aprg", + "ACpu", + "AIlp", + "AIpg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Prg4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Unit Pause Duration", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aprg", + "ACpu", + "AIlp", + "AIpg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Prg5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Hero Pause Duration", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aprg", + "ACpu", + "AIlp", + "AIpg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Prg6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Mana Loss", + "sort": "x0a005", + "type": "int", + "minVal": "0", + "maxVal": "999999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aprg", + "ACpu", + "AIlp", + "AIpg", + "Apg2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rai1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Units Summoned (Type One)", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arai", + "ACrd", + "AUcb", + "AIrd", + "Avng" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rai2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Units Summoned (Type Two)", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arai", + "ACrd", + "AUcb", + "AIrd", + "Avng" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rai3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Unit Type One", + "sort": "x0a001", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arai", + "ACrd", + "AUcb", + "AIrd", + "Avng" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rai4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Unit Type Two", + "sort": "x0a003", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arai", + "ACrd", + "AUcb", + "AIrd", + "Avng" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Raiu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Unit Type For Limit Check", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arai", + "ACrd", + "AIrd", + "Avng" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ucb5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Max Units Summoned", + "sort": "x0a005", + "type": "int", + "minVal": "0", + "maxVal": "24", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUcb", + "Avng" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ucb6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Kill On Caster Death", + "sort": "x0a006", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUcb", + "Avng" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rej1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Hit Points Gained", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arej", + "ACrj", + "ACr2", + "Arpb", + "Arpl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rej2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Points Gained", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arej", + "ACrj", + "ACr2", + "Arpb", + "Arpm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rej3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Allow When Full", + "sort": "x0a003", + "type": "fullFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arej", + "ACrj", + "ACr2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rej4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "No Target Required", + "sort": "x0a004", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arej", + "ACrj", + "ACr2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rpb3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Minimum Life Required", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arpb", + "Arpl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rpb4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Minimum Mana Required", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arpb", + "Arpm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rpb5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Maximum Units Charged To Caster", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arpb", + "Arpl", + "Arpm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rpb6", + "field": "Cast", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Maximum Units Affected", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arpb", + "Arpl", + "Arpm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rep1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Repair Cost Ratio", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aren", + "Ahrp", + "Arep", + "Arst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rep2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Repair Time Ratio", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aren", + "Ahrp", + "Arep", + "Arst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rep3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Powerbuild Cost", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aren", + "Ahrp", + "Arep", + "Arst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rep4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Powerbuild Rate", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aren", + "Ahrp", + "Arep", + "Arst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rep5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Naval Range Bonus", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aren", + "Ahrp", + "Arep", + "Arst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rtn1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Accepts Gold", + "sort": "x0a000", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Artn", + "Argd", + "Argl", + "Arlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Rtn2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Accepts Lumber", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Artn", + "Argd", + "Argl", + "Arlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Increase (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroa", + "Ara2", + "ACro", + "ACr1", + "AIrr", + "ANht" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roa2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Defense Increase", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroa", + "Ara2", + "ACro", + "ACr1", + "AIrr", + "ANht", + "ANbr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roa3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Life Regeneration Rate", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroa", + "Ara2", + "ACro", + "ACr1", + "AIrr", + "ANht", + "ANbr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roa4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Mana Regen", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroa", + "Ara2", + "ACro", + "ACr1", + "AIrr", + "ANht", + "ANbr", + "Ahnl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roa5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Prefer Hostiles", + "sort": "x0a004", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroa", + "Ara2", + "ACro", + "ACr1", + "AIrr", + "ANht", + "ANbr", + "Ahnl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roa6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Prefer Friendlies", + "sort": "x0a005", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroa", + "Ara2", + "ACro", + "ACr1", + "AIrr", + "ANht", + "ANbr", + "Ahnl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roa7", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 7, + "category": "data", + "displayName": "Max Units", + "sort": "x0a006", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroa", + "Ara2", + "ACro", + "ACr1", + "AIrr", + "ANht", + "ANbr", + "Ahnl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nbr1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Increase", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANbr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roo1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Rooted Weapons", + "sort": "x0a000", + "type": "attackBits", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroo", + "Aro1", + "Aro2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roo2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Uprooted Weapons", + "sort": "x0a001", + "type": "attackBits", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroo", + "Aro1", + "Aro2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roo3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Rooted Turning", + "sort": "x0a002", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroo", + "Aro1", + "Aro2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Roo4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Uprooted Defense Type", + "sort": "", + "type": "defenseTypeInt", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aroo", + "Aro1", + "Aro2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sal1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Salvage Cost Ratio", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asal", + "Auns" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sal2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Accumulation Step", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asal", + "Auns" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esn1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "In Flight Sight Radius", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aesn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esn2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Hovering Sight Radius", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aesn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esn3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Hovering Height", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aesn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esn4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Number of Owls", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aesn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esn5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_ESN5", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aesn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Shm1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Fade Duration", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ashm", + "Sshm", + "Ahid", + "AIhm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Shm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Day/Night Duration", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ashm", + "Sshm", + "Ahid", + "AIhm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Shm3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Action Duration", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ashm", + "Sshm", + "Ahid", + "AIhm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Shm4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "WESTRING_AEVAL_SHM4", + "sort": "x0a003", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ashm", + "Sshm", + "AIhm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Slo1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Factor", + "sort": "x0a000", + "type": "unreal", + "minVal": "-10", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aslo", + "ACsw", + "AIos", + "Aasl", + "AIno" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Slo2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Speed Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "-10", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aslo", + "ACsw", + "AIos", + "Aasl", + "AIno" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Slo3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Always Autocast", + "sort": "x0a002", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aslo", + "ACsw", + "AIos", + "Aasl", + "AIno" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Spo1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Spo2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Movement Speed Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Spo3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Attack Speed Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Spo4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Stacking Type", + "sort": "x0a003", + "type": "stackFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sod1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Units", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asod", + "Assp", + "Aspd", + "Aspy", + "Aspt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sod2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Unit Type", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asod", + "Assp", + "Aspd", + "Aspy", + "Aspt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Spa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Spider Capacity", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sta1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Activation Delay", + "sort": "x0a000", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sta2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Detection Radius", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sta3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Detonation Radius", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sta4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Stun Duration", + "sort": "x0a003", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Sta5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_STA5", + "sort": "x0a004", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Stau", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Ward Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uhf1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Speed Bonus (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Auhf", + "Suhf", + "ACuf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uhf2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Auhf", + "Suhf", + "ACuf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wha1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Lumber per Interval", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awha", + "Awh2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wha2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Intervals Before Changing Trees", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awha", + "Awh2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wha3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Art Attachment Height", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awha", + "Awh2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wrp1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Teleport Area Width", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awrp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wrp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Teleport Area Height", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awrp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iagi", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Agility Bonus", + "sort": "x0i001", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aamk", + "AIab", + "AIa1", + "AIa3", + "AIa4", + "AIa5", + "AIa6", + "AIx5", + "AIx1", + "AIx2", + "AIx3", + "AIx4", + "AIs1", + "AIs3", + "AIs4", + "AIs5", + "AIs6", + "AIi1", + "AIi3", + "AIi4", + "AIi5", + "AIi6", + "AIxm", + "AIam", + "AIim", + "AIsm", + "AIgm", + "AItm", + "AInm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iint", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Intelligence Bonus", + "sort": "x0i002", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aamk", + "AIab", + "AIa1", + "AIa3", + "AIa4", + "AIa5", + "AIa6", + "AIx5", + "AIx1", + "AIx2", + "AIx3", + "AIx4", + "AIs1", + "AIs3", + "AIs4", + "AIs5", + "AIs6", + "AIi1", + "AIi3", + "AIi4", + "AIi5", + "AIi6", + "AIxm", + "AIam", + "AIim", + "AIsm", + "AIgm", + "AItm", + "AInm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Istr", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Strength Bonus", + "sort": "x0i003", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aamk", + "AIab", + "AIa1", + "AIa3", + "AIa4", + "AIa5", + "AIa6", + "AIx5", + "AIx1", + "AIx2", + "AIx3", + "AIx4", + "AIs1", + "AIs3", + "AIs4", + "AIs5", + "AIs6", + "AIi1", + "AIi3", + "AIi4", + "AIi5", + "AIi6", + "AIxm", + "AIam", + "AIim", + "AIsm", + "AIgm", + "AItm", + "AInm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ihid", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Hide Button", + "sort": "x0i003", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aamk", + "AIab", + "AIa1", + "AIa3", + "AIa4", + "AIa5", + "AIa6", + "AIx5", + "AIx1", + "AIx2", + "AIx3", + "AIx4", + "AIs1", + "AIs3", + "AIs4", + "AIs5", + "AIs6", + "AIi1", + "AIi3", + "AIi4", + "AIi5", + "AIi6", + "AIxm", + "AIam", + "AIim", + "AIsm", + "AIgm", + "AItm", + "AInm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iatt", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Bonus", + "sort": "x0i004", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIat", + "AIt6", + "AIt9", + "AItc", + "AItf", + "AItg", + "AIth", + "AIti", + "AItj", + "AItk", + "AItl", + "AItn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idef", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Defense Bonus", + "sort": "x0i005", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIde", + "AId1", + "AId2", + "AId3", + "AId4", + "AId5", + "AIda", + "AIdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Isn1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Summon 1 - Amount", + "sort": "x0i006", + "type": "int", + "minVal": "0", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIfd", + "AIff", + "AIfr", + "AIfu", + "AIfh", + "AIfs", + "AIir", + "AIuw", + "AIbd", + "AIut", + "AIes" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ist1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Summon 1 - Unit Type", + "sort": "x0i007", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIfd", + "AIff", + "AIfr", + "AIfu", + "AIfh", + "AIfs", + "AIir", + "AIuw", + "AIbd", + "AIut", + "AIes" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Isn2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Summon 2 - Amount", + "sort": "x0i008", + "type": "int", + "minVal": "0", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIfd", + "AIff", + "AIfr", + "AIfu", + "AIfh", + "AIfs", + "AIir", + "AIuw", + "AIbd", + "AIut", + "AIes" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ist2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Summon 2 - Unit Type", + "sort": "x0i009", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIfd", + "AIff", + "AIfr", + "AIfu", + "AIfh", + "AIfs", + "AIir", + "AIuw", + "AIbd", + "AIut", + "AIes" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ixpg", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Experience Gained", + "sort": "x0i010", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIem", + "AIe2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ihpg", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Hit Points Gained", + "sort": "x0i011", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIhe", + "AIh1", + "AIh2", + "AIh3", + "AIha", + "AIhb", + "AIdg", + "AIg2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Impg", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Points Gained", + "sort": "x0i012", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIm1", + "AIm2", + "AImr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ihp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Hit Points Gained", + "sort": "x0i012", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIda", + "AIdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Imp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Mana Points Gained", + "sort": "x0i013", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIda", + "AIdb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ivam", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Life Stolen Per Attack", + "sort": "x0i014", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIva", + "SCva" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idic", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus Dice", + "sort": "x0i015", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIcb", + "AIlb", + "AIpb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iarp", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Armor Penalty", + "sort": "x0i016", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIcb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idam", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0i017", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdf", + "AIfb", + "AIzb", + "AIob", + "AIll", + "AIlb", + "AIsb", + "AIpb", + "AIf2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iob5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Enabled Attack Index", + "sort": "x0a005", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdf", + "AIcb", + "AIfb", + "AIzb", + "AIob", + "AIll", + "AIlb", + "AIsb", + "AIpb", + "AIf2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iob2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Chance To Hit Units (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdf", + "AIll", + "AIsb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iob3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Chance To Hit Heros (%)", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdf", + "AIll", + "AIsb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iob4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Chance To Hit Summons (%)", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdf", + "AIll", + "AIsb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iobu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Effect Ability", + "sort": "x0a00u", + "type": "abilCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdf", + "AIll", + "AIsb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ilev", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Levels Gained", + "sort": "x0i018", + "type": "int", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ilif", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Max Life Gained", + "sort": "x0i019", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIml", + "AImi", + "AIlf", + "AIl1", + "AIl2", + "AImh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iman", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Max Mana Gained", + "sort": "x0i019", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AImm", + "AImb", + "AIbm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Igol", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Gold Given", + "sort": "x0i020", + "type": "int", + "minVal": "0", + "maxVal": "1000000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIgo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ilum", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Lumber Given", + "sort": "x0i021", + "type": "int", + "minVal": "0", + "maxVal": "1000000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIlu" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ifa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Detection Type", + "sort": "x0a001", + "type": "detectionType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idel", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Delay For Target Effect", + "sort": "x0i022", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIfa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Icre", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Creep Level", + "sort": "x0i023", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIco" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Imvb", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Bonus", + "sort": "x0i027", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIms" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ihpr", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Hit Points Regenerated Per Second", + "sort": "x0i028", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Arel", + "Arll" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Isib", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Sight Range Bonus", + "sort": "x0i029", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIsi" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Icfd", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Duration", + "sort": "x0i030", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIcf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Icfm", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Used Per Second", + "sort": "x0i031", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIcf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Icfx", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Extra Mana Required", + "sort": "x0i032", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIcf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idet", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Detection Radius", + "sort": "x0i033", + "type": "detectionType", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idim", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Loss Per Unit", + "sort": "x0i034", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdi", + "AIds" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idid", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage To Summoned Units", + "sort": "x0i035", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdi", + "AIds" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iild", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Dealt (% of normal)", + "sort": "x0i036", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIil" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iilw", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Received Multiplier", + "sort": "x0i037", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIil" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Irec", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Number of Units", + "sort": "x0i038", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Imrp", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Regeneration Bonus (as fraction of normal)", + "sort": "x0i039", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrm", + "AIrn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ircd", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Delay After Death (seconds)", + "sort": "x0i040", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "irc2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Restored Life", + "sort": "x0a002", + "type": "int", + "minVal": "1", + "maxVal": "1000000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "irc3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Restored Mana (-1 for current)", + "sort": "x0a003", + "type": "int", + "minVal": "-1", + "maxVal": "1000000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ihps", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Hit Points Restored", + "sort": "x0i041", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIre", + "AIra" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Imps", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Points Restored", + "sort": "x0i042", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIre", + "AIra" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ispi", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Increase", + "sort": "x0i044", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIsp", + "AIsa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Itpm", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Number of Units", + "sort": "x0i045", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AItp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Itp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Use Teleport Clustering", + "sort": "x0a002", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AItp", + "AIrt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idps", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0i046", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cad1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Corpses Raised", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ACad", + "AIan" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cac1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Damage Increase", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ACac", + "AIcd" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cor1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acor" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Isx1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Speed Increase", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIas", + "AIsx", + "AIs2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wrs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awrs", + "Ahrs", + "Awrh", + "Awrg", + "AOws" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wrs2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Terrain Deformation Amplitude", + "sort": "x0a001", + "type": "unreal", + "minVal": "-1000", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awrs", + "Ahrs", + "Awrh", + "Awrg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Wrs3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Terrain Deformation Duration (ms)", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Awrs", + "Ahrs", + "Awrh", + "Awrg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ctc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ACtc", + "ACt2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ctc2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Extra Damage To Target", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ACtc", + "ACt2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ctc3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Movement Speed Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ACtc", + "ACt2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ctc4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Attack Speed Reduction", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ACtc", + "ACt2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ctb1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ACtb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ibl1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Unit Created (per player race)", + "sort": "x0a000", + "type": "unitList", + "minVal": "4", + "maxVal": "4", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIbl", + "AIbg", + "AIbt" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uds1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Units", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "90", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUds" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uds2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Casting Delay (seconds)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUds" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Race to Convert", + "sort": "x0a000", + "type": "unitRace", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdc", + "SNdc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndc2", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Conversion Unit", + "sort": "x0a001", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdc", + "SNdc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsl1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Unit to Preserve", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Chl1", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Unit Type Allowed", + "sort": "x0a000", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Achl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Det1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Detection Type", + "sort": "x0a000", + "type": "detectionType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adet", + "Adt1", + "Atru", + "Agyv", + "Adts", + "Adtg", + "Abdt", + "AIrv", + "AItb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dtn1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Loss (per unit)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adtn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Dtn2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage to Summoned Units", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adtn" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eth1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Immune to Morph Effects", + "sort": "x0a000", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aeth" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Eth2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Does Not Block Buildings", + "sort": "x0a001", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aeth" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gho1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Auto-Acquire Attack Targets", + "sort": "x0a000", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agho", + "Apiv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gho2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "WESTRING_AEVAL_ETH1", + "sort": "x0a001", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agho" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Gho3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "WESTRING_AEVAL_ETH2", + "sort": "x0a002", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agho" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ivs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Transition Time (seconds)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aivs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nmr1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Drained per Second", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANmr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsp1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Gold Cost per Structure", + "sort": "x0a000", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ansp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Lumber Cost per Use", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ansp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsp3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Detection Type", + "sort": "x0a002", + "type": "detectionType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ansp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ssk1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Chance to Reduce Damage (%)", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Assk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ssk2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Minimum Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Assk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ssk3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Ignored Damage", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Assk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ssk4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Include Ranged Damage", + "sort": "x0a004", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Assk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ssk5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Include Melee Damage", + "sort": "x0a005", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Assk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hfs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Full Damage Dealt", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHfs", + "ACfs", + "Abof" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hfs2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Full Damage Interval", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHfs", + "ACfs", + "Abof" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hfs3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Half Damage Dealt", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHfs", + "ACfs", + "Abof" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hfs4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Half Damage Interval", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHfs", + "ACfs", + "Abof" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hfs5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Building Reduction", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHfs", + "ACfs", + "Abof" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hfs6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Maximum Damage", + "sort": "x0a006", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHfs", + "ACfs", + "Abof" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nms1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana per Hit Point", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANms", + "ACmf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nms2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Absorbed (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANms", + "ACmf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uim1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Wave Distance", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUim", + "ACmp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uim2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Wave Time (seconds)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUim", + "ACmp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uim3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Dealt", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUim", + "ACmp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uim4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Air Time (seconds)", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUim", + "ACmp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uim5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_UIM5", + "sort": "x0a005", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUim", + "ACmp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uim6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "WESTRING_AEVAL_UIM6", + "sort": "x0a006", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUim", + "ACmp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uls1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Swarm Units", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uls2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Unit Release Interval (seconds)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uls3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Max Swarm Units Per Target", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uls4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Damage Return Factor", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uls5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Damage Return Threshold", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ulsu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Swarm Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uts1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Returned Damage Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUts", + "ANth" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uts2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Received Damage Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUts", + "ANth" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uts3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Defense Bonus", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AUts", + "ANth" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nba1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANba", + "ANbs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nba2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Number of Summoned Units", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANba", + "ANbs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nba3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Summoned Unit Duration (seconds)", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANba", + "ANbs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nbau", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANba", + "ANbs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nch1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Creep Level", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANch", + "ACch", + "Acmg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cmg2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana per Summoned Hitpoint", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acmg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Cmg3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Charge for Current Life", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acmg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Hit Points Drained", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Points Drained", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Drain Interval (seconds)", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Life Transferred Per Second", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr", + "ACdr", + "ACsm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Mana Transferred Per Second", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr", + "ACdr", + "ACsm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Bonus Life Factor", + "sort": "x0a006", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr", + "ACdr", + "ACsm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr7", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 7, + "category": "data", + "displayName": "Bonus Life Decay", + "sort": "x0a007", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr", + "ACdr", + "ACsm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr8", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 8, + "category": "data", + "displayName": "Bonus Mana Factor", + "sort": "x0a008", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr", + "ACdr", + "ACsm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndr9", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 9, + "category": "data", + "displayName": "Bonus Mana Decay", + "sort": "x0a009", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr", + "AHdr", + "ACdr", + "ACsm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "NdrA", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 10, + "category": "data", + "displayName": "WESTRING_AEVAL_NDRA", + "sort": "x0a010", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsi1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attacks Prevented", + "sort": "x0a001", + "type": "silenceFlags", + "minVal": "0", + "maxVal": "15", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsi", + "ACsi", + "ANdh", + "Aclf", + "AIse", + "AIfg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsi2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Chance To Miss (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsi", + "ACsi", + "ANdh", + "Aclf", + "AIse", + "AIfg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsi3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Movement Speed Modifier", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsi", + "ACsi", + "ANdh", + "Aclf", + "AIse", + "AIfg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsi4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Attack Speed Modifier", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsi", + "ACsi", + "ANdh", + "Aclf", + "AIse", + "AIfg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ntou", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit Type", + "sort": "x0a001", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANto" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tdg1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atdg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tdg2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Medium Damage Radius", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atdg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tdg3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Medium Damage Per Second", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atdg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tdg4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Small Damage Radius", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atdg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tdg5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Small Damage Per Second", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atdg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tsp1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Air Time (seconds)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atsp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tsp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Minimum Hit Interval (seconds)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atsp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nbf5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANbf", + "ACbc", + "ACbf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ebl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Range", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEbl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ebl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Minimum Range", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEbl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Efk1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Target", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEfk", + "Aroc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Efk2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Maximum Total Damage", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEfk", + "Aroc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Efk3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Maximum Number of Targets", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEfk", + "Aroc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Efk4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Maximum Speed Adjustment", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEfk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esh1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Decaying Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsh", + "ACss" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esh2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Movement Speed Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsh", + "ACss" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esh3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Attack Speed Factor", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsh", + "ACss" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esh4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Decay Power", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsh", + "ACss" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esh5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Initial Damage", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsh", + "ACss" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esv1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Summoned Units", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Esvu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AEsv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "abs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Life Absorbed", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aabs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "abs2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Maximum Mana Absorbed", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aabs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bsk1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Increase", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Absk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bsk2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Speed Increase", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Absk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bsk3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Taken Increase", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Absk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "coau", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Resulting Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acoa", + "Acoh", + "Aco2", + "Aco3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "coa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Partner Unit Type", + "sort": "x0a001", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acoa", + "Acoh", + "Aco2", + "Aco3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "coa2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Move To Partner", + "sort": "x0a002", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aco2", + "Aco3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "cyc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Can Be Dispelled", + "sort": "x0a001", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Acyc", + "ACcy", + "SCc1", + "AIcy" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dcp1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Partner Unit Type One", + "sort": "x0a001", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adec" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dcp2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Partner Unit Type Two", + "sort": "x0a002", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Adec" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dvm1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Life Per Unit", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dvm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Per Unit", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dvm3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Life Per Buff", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dvm4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Mana Per Buff", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dvm5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Summoned Unit Damage", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "dvm6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Ignore Friendly Buffs", + "sort": "x0a006", + "type": "bool", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Advm", + "ACde" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "exh1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Maximum Number of Corpses", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aexh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "exhu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aexh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fak1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afak" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fak2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Medium Damage Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afak" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fak3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Small Damage Factor", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afak" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fak4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Full Damage Radius", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afak" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fak5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Half Damage Radius", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afak" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "hwdu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Ward Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahwd", + "AChw", + "Apts", + "Aeye", + "AIhw", + "AIsw" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "inv1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Item Capacity", + "sort": "x0a001", + "type": "int", + "minVal": "1", + "maxVal": "6", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AInv", + "Apak", + "Aiun" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "inv2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Drop Items On Death", + "sort": "x0a002", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AInv", + "Apak", + "Aiun" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "inv3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Can Use Items", + "sort": "x0a003", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AInv", + "Apak", + "Aiun" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "inv4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Can Get Items", + "sort": "x0a004", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AInv", + "Apak", + "Aiun" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "inv5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Can Drop Items", + "sort": "x0a005", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AInv", + "Apak", + "Aiun" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "liq1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Extra Damage Per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aliq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "liq2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Movement Speed Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aliq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "liq3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Attack Speed Reduction", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aliq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "liq4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Repairs Allowed", + "sort": "x0a004", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aliq" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mim1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Magic Damage Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amim", + "AImx", + "ACmi", + "ACm2", + "ACm3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mfl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Unit - Damage Per Mana Point", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mfl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Hero - Damage Per Mana Point", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mfl3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Unit - Maximum Damage", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mfl4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Hero - Maximum Damage", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mfl5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Damage Cooldown", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mfl6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Caster Only Splash", + "sort": "x0a006", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amfl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "tpi1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Required Unit Type", + "sort": "x0a001", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Stpm", + "Stpr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "tpi2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Converted Unit Type", + "sort": "x0a002", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Stpm", + "Stpr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Distributed Damage Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspl", + "Aspp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Maximum Number of Targets", + "sort": "x0a002", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "irl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Life Regenerated", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrl", + "AIpr", + "AIsl", + "AIpl", + "AIp1", + "AIp2", + "AIp3", + "AIp4", + "AIp5", + "AIp6" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "irl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Regenerated", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrl", + "AIpr", + "AIsl", + "AIpl", + "AIp1", + "AIp2", + "AIp3", + "AIp4", + "AIp5", + "AIp6" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "irl3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Allow When Full", + "sort": "x0a003", + "type": "fullFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrl", + "AIpr", + "AIsl", + "AIpl", + "AIp1", + "AIp2", + "AIp3", + "AIp4", + "AIp5", + "AIp6" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "irl4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "No Target Required", + "sort": "x0a004", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrl", + "AIpr", + "AIsl", + "AIpl", + "AIp1", + "AIp2", + "AIp3", + "AIp4", + "AIp5", + "AIp6" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "irl5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Dispel On Attack", + "sort": "x0a005", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIrl", + "AIpr", + "AIsl", + "AIpl", + "AIp1", + "AIp2", + "AIp3", + "AIp4", + "AIp5", + "AIp6" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "idc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Mana Loss Per Unit", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "idc2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Summoned Unit Damage", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "idc3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Maximum Dispelled Units", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "imo1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Lures", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AImo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "imo2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Activation Delay", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "9999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AImo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "imo3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Lure Interval (seconds)", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "9999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AImo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "imou", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Lure Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AImo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ict1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "New Time of Day - Hour", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIct" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ict2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "New Time of Day - Minute", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "60", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIct" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "isr1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIsr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "isr2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIsr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ipv1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIpv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ipv2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Life Steal Amount", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIpv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ipv3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Amount Is Raw Value", + "sort": "x0a003", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIpv" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mec1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Number of Units Created", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amec" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spb1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Spell List", + "sort": "x0a001", + "type": "abilityList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spb2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Shared Spell Cooldown", + "sort": "x0a002", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spb3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Minimum Spells", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spb4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Maximum Spells", + "sort": "x0a004", + "type": "int", + "minVal": "0", + "maxVal": "12", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spb5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Base Order ID", + "sort": "x0a005", + "type": "orderString", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aspb" + ], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ast1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Life Restored Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aast" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ast2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Mana Restored Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aast" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gra1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attach Delay", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agra" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gra2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Remove Delay", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agra" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gra3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Disabled Attack Index", + "sort": "x0a003", + "type": "int", + "minVal": "-1", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agra" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gra4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Enabled Attack Index", + "sort": "x0a004", + "type": "int", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agra" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gra5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Maximum Attacks", + "sort": "x0a005", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Agra" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ipmu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIpm", + "ANpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Npr1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Building Types Allowed", + "sort": "x0a001", + "type": "pickFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANpr" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Building Types Allowed", + "sort": "x0a001", + "type": "pickFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsa2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Hero Regeneration Delay", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsa3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Unit Regeneration Delay", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsa4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Magic Damage Reduction", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsa5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Hit Points Per Second", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iaa1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Attack Modification", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIaa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ixs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage To Summoned Units", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIxs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ixs2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Magic Damage Reduction", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIxs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nef1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Summoned Unit Types", + "sort": "x0a001", + "type": "unitList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANef" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Npa5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Summoned Unit Count", + "sort": "x0a005", + "type": "int", + "minVal": "1", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Npa6", + "field": "Cast", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit Duration", + "sort": "x0a006", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANpa" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Igl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Upgrade Levels", + "sort": "x0a001", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIgf", + "AIgu" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iglu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Upgrade Type", + "sort": "x0a00u", + "type": "upgradeCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIgf", + "AIgu" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nse1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Shield Cooldown Time", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANse" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndo1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndo2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Number of Summoned Units", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndo3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Summoned Unit Duration (seconds)", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndo4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "WESTRING_AEVAL_NDO4", + "sort": "x0a004", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndo5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_NDO5", + "sort": "x0a005", + "type": "unreal", + "minVal": "-10", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ndou", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Summoned Unit Type", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANdo" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "flk1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Medium Damage Radius", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aflk", + "Afsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "flk2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Small Damage Radius", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aflk", + "Afsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "flk3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Full Damage Amount", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aflk", + "Afsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "flk4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Medium Damage Amount", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aflk", + "Afsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "flk5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Small Damage Amount", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aflk", + "Afsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbn1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Reduction (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbn", + "Apsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hbn2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Speed Reduction (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AHbn", + "Apsh" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fbk1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Max Mana Drained - Units", + "sort": "x0a000", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afbk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fbk2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Ratio - Units (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afbk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fbk3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Max Mana Drained - Heros", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afbk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fbk4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Damage Ratio - Heros (%)", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afbk" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fbk5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Summoned Damage", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Afbk", + "Afbt", + "Afbb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "nca1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Distributed Damage Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANca" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "pxf1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Initial Damage", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Apxf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "pxf2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Apxf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mls1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Per Second", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Amls" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "sla1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Sleep Once", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asla" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nst1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Beasts Per Second", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nst2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Beast Collision Radius", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "1024", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nst3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Amount", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nst4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Damage Radius", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nst5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Damage Delay", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANst" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "sla2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Allow On Any Player Slot", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Asla" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncl1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Follow Through Time", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncl2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Target Type", + "sort": "x0a002", + "type": "channelType", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncl3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Options", + "sort": "x0a003", + "type": "channelFlags", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncl4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Art Duration", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncl5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Disable Other Abilities", + "sort": "x0a005", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcl" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncl6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Base Order ID", + "sort": "x0a006", + "type": "orderString", + "minVal": null, + "maxVal": "32", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcl" + ], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nab1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Movement Speed Reduction (%)", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANab" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nab2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Attack Speed Reduction (%)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANab" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nab3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Armor Penalty", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANab" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nab4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Primary Damage", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANab" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nab5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Secondary Damage", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANab" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nab6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Damage Interval", + "sort": "x0a006", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANab" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nhs6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Wave Count", + "sort": "x0a006", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANhs" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ntm1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Gold Cost Factor", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANtm", + "AIts" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ntm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Lumber Cost Factor", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANtm", + "AIts" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ntm3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Max Creep Level", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANtm", + "AIts" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ntm4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Allow Bounty", + "sort": "x0a004", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANtm", + "AIts" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neg1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Move Speed Bonus", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANeg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neg2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Bonus", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANeg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neg3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Ability Upgrade 1", + "sort": "x0a003", + "type": "heroAbilityList", + "minVal": null, + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANeg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neg4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Ability Upgrade 2", + "sort": "x0a004", + "type": "heroAbilityList", + "minVal": null, + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANeg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neg5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Ability Upgrade 3", + "sort": "x0a005", + "type": "heroAbilityList", + "minVal": null, + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANeg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Neg6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Ability Upgrade 4", + "sort": "x0a006", + "type": "heroAbilityList", + "minVal": null, + "maxVal": "2", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANeg" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncs1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Amount", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANhs", + "ANcs", + "ANc1", + "ANc2", + "ANc3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncs2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Interval", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANhs", + "ANcs", + "ANc1", + "ANc2", + "ANc3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncs3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Missile Count", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANhs", + "ANcs", + "ANc1", + "ANc2", + "ANc3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncs4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Max Damage", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANhs", + "ANcs", + "ANc1", + "ANc2", + "ANc3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncs5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Building Damage Factor", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANhs", + "ANcs", + "ANc1", + "ANc2", + "ANc3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Ncs6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Effect Duration", + "sort": "x0a006", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANcs", + "ANc1", + "ANc2", + "ANc3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsy1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Spawn Interval", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsy", + "ANs1", + "ANs2", + "ANs3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsy2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Spawn Unit ID", + "sort": "x0a002", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsy", + "ANs1", + "ANs2", + "ANs3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsy3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Spawn Unit Duration", + "sort": "x0a003", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsy", + "ANs1", + "ANs2", + "ANs3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsy4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Spawn Unit Offset", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsy", + "ANs1", + "ANs2", + "ANs3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsy5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Leash Range", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsy", + "ANs1", + "ANs2", + "ANs3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nsyu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Factory Unit ID", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANsy", + "ANs1", + "ANs2", + "ANs3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nfy1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Spawn Interval", + "sort": "x0a001", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANfy" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nfy2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Leash Range", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANfy" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nfyu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Spawn Unit ID", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANfy" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nde1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Chance to Demolish", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANde", + "ANd1", + "ANd2", + "ANd3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nde2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Multiplier (Buildings)", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANde", + "ANd1", + "ANd2", + "ANd3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nde3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Multiplier (Units)", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANde", + "ANd1", + "ANd2", + "ANd3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nde4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Damage Multiplier (Heroes)", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANde", + "ANd1", + "ANd2", + "ANd3" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nic1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Bonus Damage Multiplier", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANic" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nic2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Death Damage Full Amount", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANic" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nic3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Death Damage Full Area", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANic" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nic4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Death Damage Half Amount", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANic" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nic5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Death Damage Half Area", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "1000", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANic" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nic6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Death Damage Delay", + "sort": "x0a006", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANic" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nso1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Damage Amount", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANso" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nso2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Damage Period", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANso" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nso3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Damage Penalty", + "sort": "x0a003", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANso" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nso4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Movement Speed Reduction (%)", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANso" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nso5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Attack Speed Reduction (%)", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANso" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nlm2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Split Delay", + "sort": "x0a002", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nlm3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Split Attack Count", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nlm4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Max Hitpoint Factor", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nlm5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Life Duration Split Bonus", + "sort": "x0a005", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nlm6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Generation Count", + "sort": "x0a006", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANlm" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nvc1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Rock Ring Count", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANvc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nvc2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Wave Count", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANvc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nvc3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Wave Interval", + "sort": "x0a003", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANvc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nvc4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Building Damage Factor", + "sort": "x0a004", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANvc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nvc5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "Full Damage Amount", + "sort": "x0a005", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANvc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nvc6", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 6, + "category": "data", + "displayName": "Half Damage Factor", + "sort": "x0a006", + "type": "unreal", + "minVal": "0", + "maxVal": "10", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANvc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Nvcu", + "field": "UnitID", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 0, + "category": "data", + "displayName": "Destructible ID", + "sort": "x0a00u", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "ANvc" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tau1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "Prefer Hostiles", + "sort": "x0a001", + "type": "int", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atau", + "ANta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tau2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "Prefer Friendlies", + "sort": "x0a002", + "type": "int", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atau", + "ANta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tau3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "Max Units", + "sort": "x0a003", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atau", + "ANta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tau4", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "WESTRING_AEVAL_TAU4", + "sort": "x0a004", + "type": "int", + "minVal": "0", + "maxVal": "100", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atau", + "ANta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Tau5", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_TAU5", + "sort": "x0a005", + "type": "unreal", + "minVal": "0.001", + "maxVal": "300", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Atau", + "ANta" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idg1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "WESTRING_AEVAL_IDG1", + "sort": "x0i011", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdg", + "AIg2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idg2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "WESTRING_AEVAL_IDG2", + "sort": "x0i012", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdg", + "AIg2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Idg3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 8, + "category": "data", + "displayName": "WESTRING_AEVAL_IDG3", + "sort": "f0a02", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIdg", + "AIg2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uuf1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "WESTRING_AEVAL_IDG1", + "sort": "x0i011", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Auuf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uuf2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 4, + "category": "data", + "displayName": "Leave Target Alive", + "sort": "x0i012", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Auuf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Uuf3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 8, + "category": "data", + "displayName": "WESTRING_AEVAL_UUF3", + "sort": "f0a02", + "type": "targetList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Auuf" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hsb1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "WESTRING_AEVAL_HSB1", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahsb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hsb2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "WESTRING_AEVAL_HSB2", + "sort": "x0a002", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahsb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Hsb3", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 3, + "category": "data", + "displayName": "WESTRING_AEVAL_HSB3", + "sort": "x0a003", + "type": "defenseTypeInt", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Ahsb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "Iofr", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 2, + "category": "data", + "displayName": "WESTRING_AEVAL_IOFR", + "sort": "x0a001", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIf2" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "AIvu", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "WESTRING_AEVAL_AIVU", + "sort": "x0a001", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "AIvu" + ], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "Akb2", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 5, + "category": "data", + "displayName": "WESTRING_AEVAL_AKB2", + "sort": "x0a004", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aakb" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ausk", + "field": "UnitSkinID", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "WESTRING_AEVAL_AUSK", + "sort": "x0a000", + "type": "unitSkinList", + "minVal": null, + "maxVal": null, + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "Aat1", + "field": "Data", + "slk": "AbilityData", + "index": -1, + "repeat": 4, + "data": 1, + "category": "data", + "displayName": "WESTRING_AEVAL_AAT1", + "sort": "x0a000", + "type": "bool", + "minVal": "0", + "maxVal": "1", + "useHero": true, + "useUnit": true, + "useBuilding": false, + "useItem": true, + "useCreep": true, + "useSpecific": [ + "Aatp" + ], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + } + ], + "buff": [ + { + "id": "fnam", + "field": "EditorName", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name (Editor Only)", + "sort": "", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "fnsf", + "field": "EditorSuffix", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Editor Suffix", + "sort": "", + "type": "string", + "minVal": null, + "maxVal": "50", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ftip", + "field": "Bufftip", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip", + "sort": "", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "fube", + "field": "Buffubertip", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Tooltip - Extended", + "sort": "", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "feff", + "field": "isEffect", + "slk": "AbilityBuffData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Is an Effect", + "sort": "", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "frac", + "field": "race", + "slk": "AbilityBuffData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Race", + "sort": "", + "type": "unitRace", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fart", + "field": "Buffart", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Icon", + "sort": "", + "type": "icon", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ftat", + "field": "TargetArt", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target", + "sort": "", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "fsat", + "field": "SpecialArt", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Special", + "sort": "", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "feat", + "field": "EffectArt", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Effect", + "sort": "", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "flig", + "field": "LightningEffect", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Lightning", + "sort": "", + "type": "lightningEffect", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "fmat", + "field": "Missileart", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Art", + "sort": "", + "type": "modelList", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "fmsp", + "field": "Missilespeed", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Speed", + "sort": "", + "type": "int", + "minVal": "0", + "maxVal": "10000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fmac", + "field": "Missilearc", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Arc", + "sort": "", + "type": "unreal", + "minVal": "0", + "maxVal": "1", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fmho", + "field": "MissileHoming", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Missile Homing Enabled", + "sort": "", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ftac", + "field": "Targetattachcount", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachments", + "sort": "", + "type": "int", + "minVal": "0", + "maxVal": "6", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fta0", + "field": "Targetattach", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 1", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fta1", + "field": "Targetattach1", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 2", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fta2", + "field": "Targetattach2", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 3", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fta3", + "field": "Targetattach3", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 4", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fta4", + "field": "Targetattach4", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 5", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fta5", + "field": "Targetattach5", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Target Attachment Point 6", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "feft", + "field": "Effectattach", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Effect Attachment Point", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fspt", + "field": "Specialattach", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Special Attachment Point", + "sort": "", + "type": "stringList", + "minVal": null, + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "fefs", + "field": "Effectsound", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Effect Sound", + "sort": "", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "fefl", + "field": "Effectsoundlooped", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Effect Sound (Looping)", + "sort": "", + "type": "soundLabel", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "fspd", + "field": "Spelldetail", + "slk": "Profile", + "index": -1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Required Spell Detail", + "sort": "", + "type": "spellDetail", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + } + ], + "destructable": [ + { + "id": "bnam", + "field": "Name", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Name", + "sort": "a1a00", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bsuf", + "field": "EditorSuffix", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "text", + "displayName": "Editor Suffix", + "sort": "a1a00a", + "type": "string", + "minVal": null, + "maxVal": "50", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "bcat", + "field": "category", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Category", + "sort": "a2a00", + "type": "destructableCategory", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "btil", + "field": "tilesets", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Tilesets", + "sort": "a3a00", + "type": "tilesetList", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "btsp", + "field": "tilesetSpecific", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Has Tileset Specific Data", + "sort": "a4a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bfil", + "field": "file", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File", + "sort": "a6a00", + "type": "model", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "blit", + "field": "lightweight", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File - Has Lightweight Model", + "sort": "a7a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bflo", + "field": "fatLOS", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fat Line of Sight", + "sort": "a8a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "btxi", + "field": "texID", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Replaceable Texture ID", + "sort": "a9a00", + "type": "int", + "minVal": "0", + "maxVal": "1000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "btxf", + "field": "texFile", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Replaceable Texture File", + "sort": "b1a00", + "type": "texture", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "buch", + "field": "useClickHelper", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Show Helper Object for Selection", + "sort": "b3a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bonc", + "field": "onCliffs", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Placeable on Cliffs", + "sort": "b4a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bonw", + "field": "onWater", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Placeable on Water", + "sort": "b5a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bcpd", + "field": "canPlaceDead", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Show Dead Version in Palette", + "sort": "b6a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bwal", + "field": "walkable", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Is Walkable", + "sort": "b7a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bclh", + "field": "cliffHeight", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Cliff Height", + "sort": "b8a00", + "type": "int", + "minVal": "0", + "maxVal": "50", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "btar", + "field": "targType", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Targeted As", + "sort": "b9a00", + "type": "targetList", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "barm", + "field": "armor", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "combat", + "displayName": "Armor Type", + "sort": "c1a00", + "type": "armorType", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bvar", + "field": "numVar", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File - Variations", + "sort": "c2a00", + "type": "int", + "minVal": "1", + "maxVal": "10", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bhps", + "field": "HP", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Hit Points", + "sort": "c3a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "boch", + "field": "occH", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Occlusion Height", + "sort": "c4a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bflh", + "field": "flyH", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fly-Over Height", + "sort": "c5a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bfxr", + "field": "fixedRot", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fixed Rotation", + "sort": "c6a00", + "type": "unreal", + "minVal": "-1", + "maxVal": "360", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bsel", + "field": "selSize", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Size - Editor", + "sort": "c7a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "bmis", + "field": "minScale", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Minimum Scale", + "sort": "c8a00", + "type": "unreal", + "minVal": "0.1", + "maxVal": "10", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "bmas", + "field": "maxScale", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Maximum Scale", + "sort": "c9a00", + "type": "unreal", + "minVal": "0.1", + "maxVal": "10", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "bcpr", + "field": "canPlaceRandScale", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "Can Place Random Scale", + "sort": "d1a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bmap", + "field": "maxPitch", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Maximum Pitch Angle (degrees)", + "sort": "d2a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "bmar", + "field": "maxRoll", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Max Roll Angle (degrees)", + "sort": "d3a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "brad", + "field": "radius", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Elevation Sample Radius", + "sort": "d4a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "bfra", + "field": "fogRadius", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fog Radius", + "sort": "d5a00", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "bfvi", + "field": "fogVis", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Fog Visibility", + "sort": "d6a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bptx", + "field": "pathTex", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Pathing Texture", + "sort": "d7a00", + "type": "pathingTexture", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "bptd", + "field": "pathTexDeath", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "path", + "displayName": "Pathing Texture (Dead)", + "sort": "d8a00", + "type": "pathingTexture", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "bdsn", + "field": "deathSnd", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "Death", + "sort": "d9a00", + "type": "soundLabel", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "bsnd", + "field": "loopSound", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "sound", + "displayName": "WESTRING_BEVAL_BSND", + "sort": "daa00", + "type": "soundLabel", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "bshd", + "field": "shadow", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Shadow", + "sort": "e1a00", + "type": "shadowTexture", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "bsmm", + "field": "showInMM", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Minimap - Show", + "sort": "e2a00", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bmmr", + "field": "MMRed", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Minimap Color 1 (Red)", + "sort": "e3a00", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bmmg", + "field": "MMGreen", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Minimap Color 2 (Green)", + "sort": "e4a00", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bmmb", + "field": "MMBlue", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Minimap Color 3 (Blue)", + "sort": "e5a00", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bumm", + "field": "useMMColor", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Minimap - Use Custom Color", + "sort": "e2a01", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bbut", + "field": "buildTime", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Build Time", + "sort": "f1a00", + "type": "int", + "minVal": "1", + "maxVal": "298", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bret", + "field": "repairTime", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Time", + "sort": "f2a00", + "type": "int", + "minVal": "1", + "maxVal": "10000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "breg", + "field": "goldRep", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Gold Cost", + "sort": "f2b00", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "brel", + "field": "lumberRep", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Repair Lumber Cost", + "sort": "f2c00", + "type": "int", + "minVal": "0", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "busr", + "field": "UserList", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "editor", + "displayName": "On User-Specified List", + "sort": "b000", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bvcr", + "field": "colorR", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 1 (Red)", + "sort": "c000", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bvcg", + "field": "colorG", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 2 (Green)", + "sort": "c000", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bvcb", + "field": "colorB", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Tinting Color 3 (Blue)", + "sort": "c000", + "type": "int", + "minVal": "0", + "maxVal": "255", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bgse", + "field": "selectable", + "slk": "DestructableData", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selectable In Game", + "sort": "c000", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "bgsc", + "field": "selcircsize", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Selection Size - Game", + "sort": "c000", + "type": "real", + "minVal": "1", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": true, + "section": null + }, + { + "id": "bgpm", + "field": "portraitmodel", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Model File - Portrait", + "sort": "c000", + "type": "model", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + } + ], + "upgrade": [ + { + "id": "gnam", + "field": "Name", + "slk": "Profile", + "index": 0, + "repeat": 1, + "data": 0, + "category": "text", + "displayName": "Name", + "sort": "a1a00", + "type": "string", + "minVal": null, + "maxVal": "TTName", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gnsf", + "field": "EditorSuffix", + "slk": "Profile", + "index": 0, + "repeat": 1, + "data": 0, + "category": "text", + "displayName": "Editor Suffix", + "sort": "a1a01", + "type": "string", + "minVal": null, + "maxVal": "50", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "grac", + "field": "race", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Race", + "sort": "a1a02", + "type": "unitRace", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gtp1", + "field": "Tip", + "slk": "Profile", + "index": 0, + "repeat": 1, + "data": 0, + "category": "text", + "displayName": "Tooltip", + "sort": "d0a01", + "type": "string", + "minVal": null, + "maxVal": "TTDesc", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gub1", + "field": "Ubertip", + "slk": "Profile", + "index": 0, + "repeat": 1, + "data": 0, + "category": "text", + "displayName": "Tooltip - Extended", + "sort": "d0b01", + "type": "string", + "minVal": null, + "maxVal": "TTUber", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ghk1", + "field": "Hotkey", + "slk": "Profile", + "index": 0, + "repeat": 1, + "data": 0, + "category": "text", + "displayName": "Hotkey", + "sort": "d0c01", + "type": "char", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gbpx", + "field": "Buttonpos", + "slk": "Profile", + "index": 0, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (X)", + "sort": "b2a00", + "type": "int", + "minVal": "0", + "maxVal": "3", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gbpy", + "field": "Buttonpos", + "slk": "Profile", + "index": 1, + "repeat": 0, + "data": 0, + "category": "art", + "displayName": "Button Position (Y)", + "sort": "b2a01", + "type": "int", + "minVal": "0", + "maxVal": "2", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gar1", + "field": "Art", + "slk": "Profile", + "index": 0, + "repeat": 1, + "data": 0, + "category": "art", + "displayName": "Icon", + "sort": "d0d01", + "type": "icon", + "minVal": null, + "maxVal": "200", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gcls", + "field": "class", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Class", + "sort": "c1a02", + "type": "upgradeClass", + "minVal": null, + "maxVal": "50", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "glvl", + "field": "maxlevel", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Levels", + "sort": "d0a00", + "type": "int", + "minVal": "1", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gglb", + "field": "goldbase", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Base", + "sort": "c1a04", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gglm", + "field": "goldmod", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Gold Increment", + "sort": "c1a05", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "glmb", + "field": "lumberbase", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Base", + "sort": "c1a06", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "glmm", + "field": "lumbermod", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Lumber Increment", + "sort": "c1a07", + "type": "int", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gtib", + "field": "timebase", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Time Base", + "sort": "c1a08", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gtim", + "field": "timemod", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Time Increment", + "sort": "c1a09", + "type": "int", + "minVal": "0", + "maxVal": "300", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gef1", + "field": "effect1", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 1", + "sort": "c1a10", + "type": "upgradeEffect", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gba1", + "field": "base1", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 1 - %s", + "sort": "c1a11", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gmo1", + "field": "mod1", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 1 - %s", + "sort": "c1a12", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gco1", + "field": "code1", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 1 - %s", + "sort": "c1a13", + "type": "string", + "minVal": "0", + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gef2", + "field": "effect2", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 2", + "sort": "c1b10", + "type": "upgradeEffect", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gba2", + "field": "base2", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 2 - %s", + "sort": "c1b11", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gmo2", + "field": "mod2", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 2 - %s", + "sort": "c1b12", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gco2", + "field": "code2", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 2 - %s", + "sort": "c1b13", + "type": "string", + "minVal": "0", + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gef3", + "field": "effect3", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 3", + "sort": "c1c10", + "type": "upgradeEffect", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gba3", + "field": "base3", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 3 - %s", + "sort": "c1c11", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gmo3", + "field": "mod3", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 3 - %s", + "sort": "c1c12", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gco3", + "field": "code3", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 3 - %s", + "sort": "c1c13", + "type": "string", + "minVal": "0", + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gef4", + "field": "effect4", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 4", + "sort": "c1d10", + "type": "upgradeEffect", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "gba4", + "field": "base4", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 4 - %s", + "sort": "c1d11", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gmo4", + "field": "mod4", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 4 - %s", + "sort": "c1d12", + "type": "unreal", + "minVal": "0", + "maxVal": "99999", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "gco4", + "field": "code4", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "data", + "displayName": "Effect 4 - %s", + "sort": "c1d13", + "type": "string", + "minVal": "0", + "maxVal": "32", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "ginh", + "field": "inherit", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Transfer with Unit Ownership", + "sort": "c1a03", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "greq", + "field": "Requires", + "slk": "Profile", + "index": -1, + "repeat": 1, + "data": 0, + "category": "tech", + "displayName": "Requirements", + "sort": "d0a00a", + "type": "techList", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "grqc", + "field": "Requiresamount", + "slk": "Profile", + "index": -1, + "repeat": 1, + "data": 0, + "category": "tech", + "displayName": "Requirements - Levels", + "sort": "d0a00b", + "type": "intList", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": true, + "forceNonNeg": false, + "section": null + }, + { + "id": "glob", + "field": "global", + "slk": "UpgradeData", + "index": -1, + "repeat": 0, + "data": 0, + "category": "stats", + "displayName": "Applies to All Units", + "sort": "c1a03a", + "type": "bool", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atdb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Dice Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atdm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Dice Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "levb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Ability Level Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "levm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Ability Level Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "levc", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Ability Affected", + "sort": "", + "type": "abilCode", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "hpxb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Hit Point Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "hpxm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Hit Point Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mnxb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Mana Point Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mnxm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Mana Point Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mvxb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Movement Speed Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-400", + "maxVal": "400", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mvxm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Movement Speed Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-400", + "maxVal": "400", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mnrb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Mana Regeneration Bonus (%) - Base", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "mnrm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Mana Regeneration Bonus (%) - Increment", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "hpob", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Hit Point Bonus (%) - Base", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "hpom", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Hit Point Bonus (%) - Increment", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "manb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Mana Point Bonus (%) - Base", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "manm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Mana Point Bonus (%) - Increment", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "movb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Movement Speed Bonus (%) - Base", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "movm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Movement Speed Bonus (%) - Increment", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atxb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Damage Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atxm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Damage Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "lumb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Lumber Harvest Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "lumm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Lumber Harvest Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atrb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Range Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atrm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Range Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atsb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Speed Bonus (%) - Base", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atsm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Speed Bonus (%) - Increment", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spib", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Spike Damage - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "spim", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Spike Damage - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "hprb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Hit Point Regeneration Bonus (%) - Base", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "hprm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Hit Point Regeneration Bonus (%) - Increment", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "sigb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Sight Range Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-1800", + "maxVal": "1800", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "sigm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Sight Range Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-1800", + "maxVal": "1800", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atcb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Target Count Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-10000", + "maxVal": "10000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "atcm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Target Count Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-10000", + "maxVal": "10000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "adlb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Damage Loss Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "adlm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Damage Loss Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "minb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Gold Harvest Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "minm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Gold Harvest Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "raib", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Raise Dead Duration Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "raim", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Raise Dead Duration Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "entb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Gold Harvest Bonus (Entangle) - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "entm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Gold Harvest Bonus (Entangle) - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "enwb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attacks to Enable", + "sort": "", + "type": "attackBits", + "minVal": "0", + "maxVal": "3", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "audb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Aura Data Bonus - Base", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "audm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Aura Data Bonus - Increment", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "asdb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Spill Distance Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "asdm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Spill Distance Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "asrb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Spill Radius Bonus - Base", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "asrm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attack Spill Radius Bonus - Increment", + "sort": "", + "type": "int", + "minVal": "-100000", + "maxVal": "100000", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "roob", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attacks to Enable (Rooted)", + "sort": "", + "type": "attackBits", + "minVal": "0", + "maxVal": "3", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "urob", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Attacks to Enable (Uprooted)", + "sort": "", + "type": "attackBits", + "minVal": "0", + "maxVal": "3", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "uart", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "New Defense Type", + "sort": "", + "type": "defenseTypeInt", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "utma", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "New Availability", + "sort": "", + "type": "techAvail", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "ttma", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "Unit Type Affected", + "sort": "", + "type": "unitCode", + "minVal": null, + "maxVal": null, + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "sppb", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "WESTRING_EEVAL_SPPB", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + }, + { + "id": "sppm", + "field": "", + "slk": "", + "index": null, + "repeat": 0, + "data": 0, + "category": "", + "displayName": "WESTRING_EEVAL_SPPM", + "sort": "", + "type": "unreal", + "minVal": "-100", + "maxVal": "100", + "useHero": false, + "useUnit": false, + "useBuilding": false, + "useItem": false, + "useCreep": false, + "useSpecific": [], + "notSpecific": [], + "canBeEmpty": false, + "forceNonNeg": false, + "section": null + } + ] + }, + "objects": { + "unit": { + "Hamg": { + "unitID": "Hamg", + "sort": "a1", + "comment(s)": "HeroArchMage", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.8, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 13, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Hamg", + "sortUI": "a1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "archmage", + "unitClass": "HHero02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hamg", + "sortBalance": "a1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 450, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.1, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 14, + "INT": 19, + "AGI": 17, + "STRplus": 2, + "INTplus": 3.2, + "AGIplus": 1, + "abilTest": 6.2, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hamg", + "sortWeap": "a1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.13, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.34741784037559, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.85, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hamg", + "sortAbil": "a1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHbz,AHab,AHwe,AHmt", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "MovementSoundLabel": "HumanHeroArchMageMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-archmage.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroArchMage.blp", + "skinType": "unit", + "heroAbilSkinList": "AHbz,AHab,AHwe,AHmt", + "abilSkinList": "AInv", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Hamg", + "file": "units\\human\\HeroArchMage\\HeroArchMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "-2", + "projectileVisOffsetY:hd": "150", + "addon": "Heroes" + }, + "Hblm": { + "unitID": "Hblm", + "sort": "a1", + "comment(s)": "HeroBloodMage", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 9, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Hblm", + "sortUI": "a1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bloodmage", + "unitClass": "HHero04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hblm", + "sortBalance": "a1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 19, + "AGI": 14, + "STRplus": 2, + "INTplus": 3, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hblm", + "sortWeap": "a1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.64, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.04878048780488, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.64, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.85, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hblm", + "sortAbil": "a1", + "auto": "_", + "abilList": "AInv,Asph", + "heroAbilList": "AHfs,AHbn,AHdr,AHpx", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\BloodElfMissile\\BloodElfMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-sorceror.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroBloodElfPrince.blp", + "skinType": "unit", + "heroAbilSkinList": "AHfs,AHbn,AHdr,AHpx", + "abilSkinList": "AInv,Asph", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Hblm", + "file": "units\\human\\HeroBloodElf\\HeroBloodElf", + "unitSound": "BloodElfSorceror", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "65", + "shadowY": "65", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "launchZ:hd": "100", + "impactZ:hd": "90", + "projectileVisOffsetX:hd": "-20", + "projectileVisOffsetY:hd": "30", + "addon": "Heroes" + }, + "Hmkg": { + "unitID": "Hmkg", + "sort": "a1", + "comment(s)": "HeroMountainKing", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 13, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Hmkg", + "sortUI": "a1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mountainking", + "unitClass": "HHero03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hmkg", + "sortBalance": "a1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2.3, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 24, + "INT": 15, + "AGI": 11, + "STRplus": 3, + "INTplus": 1.5, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hmkg", + "sortWeap": "a1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.22, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.15315315315315, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.22, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hmkg", + "sortAbil": "a1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHtc,AHtb,AHbh,AHav", + "Buttonpos": "1,2", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-mountainking.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroMountainKing.blp", + "skinType": "unit", + "heroAbilSkinList": "AHtc,AHtb,AHbh,AHav", + "abilSkinList": "AInv", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "skinnableID": "Hmkg", + "file": "units\\human\\HeroMountainKing\\HeroMountainKing", + "unitSound": "HeroMountainKing", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "150", + "shadowH": "150", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "-60", + "addon": "Heroes" + }, + "Hpal": { + "unitID": "Hpal", + "sort": "a1", + "comment(s)": "HeroPaladin", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 15, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Hpal", + "sortUI": "a1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "paladin", + "unitClass": "HHero01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hpal", + "sortBalance": "a1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 120, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 100, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hpal", + "sortWeap": "a1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.5, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.433, + "backSw2": 0.567, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hpal", + "sortAbil": "a1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Buttonpos": "2,2", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Hpal", + "file": "units\\human\\HeroPaladin\\HeroPaladin", + "unitSound": "HeroPaladin", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "65", + "shadowY": "65", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "hbot": { + "unitID": "hbot", + "sort": "a2", + "comment(s)": "transport ship", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "hbot", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "humantransportship", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "hbot", + "sortBalance": "a2", + "sort2": "zz", + "level": 2, + "type": "Mechanical", + "goldcost": 170, + "lumbercost": 50, + "goldRep": 170, + "lumberRep": 50, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "hbot", + "sortWeap": "a2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hbot", + "sortAbil": "a2", + "auto": "_", + "abilList": "Sch5,Slo3,Sdro", + "Buttonpos": "0,0", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanTransport.blp", + "skinType": "unit", + "abilSkinList": "Sch5,Slo3,Sdro", + "skinnableID": "hbot", + "file": "units\\creeps\\HumanTransportShip\\HumanTransportShip", + "portrait:sd": "units\\creeps\\HumanTransportShip\\HumanTransportShip", + "portrait:hd": "units\\creeps\\HumanTransportShip\\HumanTransportShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hbsh": { + "unitID": "hbsh", + "sort": "a2", + "comment(s)": "battleship", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.1, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "hbsh", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "humanbattleship", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "hbsh", + "sortBalance": "a2", + "sort2": "zz", + "level": 6, + "type": "Mechanical", + "goldcost": 500, + "lumbercost": 200, + "goldRep": 500, + "lumberRep": 200, + "fmade": " - ", + "fused": 0, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1000, + "realHP": 1000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 2, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "hbsh", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 900, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 2, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 75, + "dmgUp1": "-", + "mindmg1": 78, + "avgdmg1": 91.5, + "maxdmg1": 105, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 100, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 45.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hbsh", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\BoatMissile\\BoatMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanBattleShip.blp", + "skinType": "unit", + "skinnableID": "hbsh", + "file": "units\\creeps\\HumanBattleship\\HumanBattleship", + "portrait:sd": "units\\creeps\\HumanBattleship\\HumanBattleship", + "portrait:hd": "units\\creeps\\HumanBattleship\\HumanBattleship_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "400", + "shadowH": "400", + "shadowX": "180", + "shadowY": "180", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hdes": { + "unitID": "hdes", + "sort": "a2", + "comment(s)": "destroyer", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.2, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "hdes", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "humandestroyer", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "hdes", + "sortBalance": "a2", + "sort2": "zz", + "level": 4, + "type": "Mechanical", + "goldcost": 250, + "lumbercost": 100, + "goldRep": 250, + "lumberRep": 100, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 60, + "stockStart": 0, + "HP": 575, + "realHP": 575, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1500, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "hdes", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 15, + "dmgplus1": 54, + "dmgUp1": "-", + "mindmg1": 55, + "avgdmg1": 62, + "maxdmg1": 69, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 25, + "Harea1": 35, + "Qarea1": 50, + "Hfact1": 0.3, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 59, + "DPS": 41.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hdes", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\BoatMissile\\BoatMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanDestroyer.blp", + "skinType": "unit", + "skinnableID": "hdes", + "file": "units\\creeps\\HumanDestroyerShip\\HumanDestroyerShip", + "portrait:sd": "units\\creeps\\HumanDestroyerShip\\HumanDestroyerShip", + "portrait:hd": "units\\creeps\\HumanDestroyerShip\\HumanDestroyerShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "30", + "impactZ": "60", + "launchSwimZ": "30", + "showUI1": "1", + "showUI2": "1", + "launchZ": "30", + "addon": "Units" + }, + "hdhw": { + "unitID": "hdhw", + "sort": "a2", + "comment(s)": "blood elf dragon hawk", + "race": "human", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.13, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hdhw", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dragonhawk", + "unitClass": "HUnit15", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hdhw", + "sortBalance": "a2", + "sort2": "fly2", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 30, + "goldRep": 200, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 625, + "realHP": 625, + "regenHP": 0.25, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 150, + "regenMana": 0.75, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1600, + "nsight": 900, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhla,Rhme,Rguv,Rhan,Rhcd", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "hdhw", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.03, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 20, + "avgdmg1": 21, + "maxdmg1": 22, + "dmgpt1": 0.43, + "backSw1": 0.633, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 15, + "DPS": 12, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hdhw", + "sortAbil": "a2", + "auto": "_", + "abilList": "Aclf,Amls,Ahan", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\DragonHawkMissile\\DragonHawkMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1100", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDragonHawkRiderV1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDragonHawk.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Aclf,Amls,Ahan", + "abilSkinList:custom,V1": "Aclf,Amls", + "skinnableID": "hdhw", + "file:hd": "units\\human\\BloodElfDragonHawk\\BloodElfDragonHawk_V1", + "file:sd": "units\\human\\BloodElfDragonHawk\\BloodElfDragonHawk", + "unitSound": "BloodElfDragonHawk", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\human\\BloodElfDragonHawk\\BloodElfDragonHawk_portrait", + "portrait:hd": "units\\human\\BloodElfDragonHawk\\BloodElfDragonHawk_V1_portrait", + "impactSwimZ": "0", + "impactZ": "20", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "33", + "launchZ:hd": "20", + "projectileVisOffsetX:hd": "-7", + "projectileVisOffsetY:hd": "135", + "addon": "Units" + }, + "hfoo": { + "unitID": "hfoo", + "sort": "a2", + "comment(s)": "Footman", + "race": "human", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.04, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hfoo", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "footman", + "unitClass": "HUnit02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hfoo", + "sortBalance": "a2", + "sort2": "me1", + "level": 2, + "type": "_", + "goldcost": 135, + "lumbercost": 0, + "goldRep": 135, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 420, + "realHP": 420, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhme,Rhde,Rhpm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "hfoo", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hfoo", + "sortAbil": "a2", + "auto": "_", + "abilList": "Adef,Aihn", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFootman.blp", + "skinType": "unit", + "abilSkinList": "Adef,Aihn", + "abilSkinList:melee,V0": "Adef", + "abilSkinList:custom,V0": "Adef", + "skinnableID": "hfoo", + "file": "units\\human\\Footman\\Footman", + "unitSound": "Footman", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hgry": { + "unitID": "hgry", + "sort": "a2", + "comment(s)": "GryphonRider", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.67, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hgry", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gryphonrider", + "unitClass": "HUnit08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hgry", + "sortBalance": "a2", + "sort2": "fly2", + "level": 5, + "type": "_", + "goldcost": 280, + "lumbercost": 70, + "goldRep": 280, + "lumberRep": 70, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 875, + "realHP": 875, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1600, + "nsight": 900, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhan,Rhla,Rhhb,Rhme,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "hgry", + "sortWeap": "a2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "mline", + "cool1": 2.2, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.8, + "backSw1": 0.87, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,structure,enemy,debris,ward", + "targCount1": 1, + "damageLoss1": 0.2, + "spillDist1": 0, + "spillRadius1": 50, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 22.7272727272727, + "targs2": "air", + "rangeN2": 450, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "magic", + "weapTp2": "missile", + "cool2": 2.4, + "mincool2": "-", + "dice2": 1, + "sides2": 11, + "dmgplus2": 44, + "dmgUp2": "-", + "mindmg2": 45, + "avgdmg2": 50, + "maxdmg2": 55, + "dmgpt2": 0.8, + "backSw2": 0.87, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hgry", + "sortAbil": "a2", + "auto": "_", + "abilList": "Asth,Ahan", + "Requires": "hcas", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\GryphonRiderMissile\\GryphonRiderMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1100", + "Targetart": "Abilities\\Weapons\\GryphonRiderMissile\\GryphonRiderMissileTarget.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGryphonRider.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Asth,Ahan", + "abilSkinList:melee,V0": "Asth", + "abilSkinList:custom,V0": "Asth", + "abilSkinList:custom,V1": "Asth", + "skinnableID": "hgry", + "file": "units\\human\\GryphonRider\\GryphonRider", + "unitSound": "GryphonRider", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "20", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "33", + "launchZ:hd": "60", + "projectileVisOffsetX:hd": "13", + "projectileVisOffsetY:hd": "67", + "addon": "Units" + }, + "hgyr": { + "unitID": "hgyr", + "sort": "a2", + "comment(s)": "Flying Machine", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.67, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 2, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hgyr", + "sortUI": "a2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "flyingmachine", + "unitClass": "HUnit07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hgyr", + "sortBalance": "a2", + "sort2": "fly1", + "level": 1, + "type": "Mechanical", + "goldcost": 100, + "lumbercost": 30, + "goldRep": 90, + "lumberRep": 30, + "fmade": " - ", + "fused": 1, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 250, + "realHP": 250, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 375, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 13, + "reptm": 13, + "sight": 1800, + "nsight": 1100, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhra,Rhgb,Rhfc,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "hgyr", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "instant", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 18.5, + "maxdmg1": 19, + "dmgpt1": 0.03, + "backSw1": 0.97, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 9.25, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 100, + "RngTst2": "-", + "RngBuff2": 125, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 6, + "dmgUp2": "-", + "mindmg2": 7, + "avgdmg2": 7.5, + "maxdmg2": 8, + "dmgpt2": 0.633, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hgyr", + "sortAbil": "a2", + "auto": "_", + "abilList": "Agyb,Agyv,Aflk", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\GyroCopter\\GyroCopterImpact.mdl,Abilities\\Weapons\\GyroCopter\\GyroCopterMissile.mdl", + "Missilearc": "0.0,0.0", + "Missilespeed": "2000,900", + "MovementSoundLabel": "HumanGyrocopterMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlyingMachine.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Agyb,Agyv,Aflk", + "abilSkinList:melee,V0": "Agyb,Agyv", + "abilSkinList:custom,V0": "Agyb,Agyv", + "skinnableID": "hgyr", + "file": "units\\human\\Gyrocopter\\Gyrocopter", + "unitSound": "Gyrocopter", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "400", + "run:sd": "200", + "run:hd": "400", + "selZ": "230", + "armor": "Metal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hkni": { + "unitID": "hkni", + "sort": "a2", + "comment(s)": "Knight", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 5.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hkni", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "knight", + "unitClass": "HUnit03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hkni", + "sortBalance": "a2", + "sort2": "me2", + "level": 4, + "type": "_", + "goldcost": 245, + "lumbercost": 60, + "goldRep": 245, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 885, + "realHP": 885, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 45, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhme,Rhan,Rhpm,Rguv,Rhsb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hkni", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 300, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.4, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 30, + "avgdmg1": 34, + "maxdmg1": 38, + "dmgpt1": 0.66, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 24.2857142857143, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hkni", + "sortAbil": "a2", + "auto": "_", + "abilList": "Aihn,Ahsb,Ahan", + "Requires": "hcas,hbla", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanKnightMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKnight.blp", + "skinType": "unit", + "abilSkinList": "Aihn,Ahsb,Ahan", + "abilSkinList:custom,V1": "Aihn", + "skinnableID": "hkni", + "file": "units\\human\\Knight\\Knight", + "unitSound": "Knight", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "380", + "walk:hd": "350", + "run:sd": "380", + "run:hd": "350", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.87", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hmil": { + "unitID": "hmil", + "sort": "a2", + "comment(s)": "Militia", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.34, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hmil", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "militia", + "unitClass": "HUnit13", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hmil", + "sortBalance": "a2", + "sort2": "me1", + "level": 1, + "type": "_", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 240, + "realHP": 240, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhme,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "hmil", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.39, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 10.4166666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hmil", + "sortAbil": "a2", + "auto": "_", + "abilList": "Ahar,Amil,Ahrp", + "Builds": "htow,hhou,hbar,hbla,hwtw,halt,harm,hars,hlum,hgra,hvlt", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMilitia.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Amil,Ahrp", + "skinnableID": "hmil", + "file": "units\\human\\Militia\\Militia", + "unitSound": "Militia", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hmpr": { + "unitID": "hmpr", + "sort": "a2", + "comment(s)": "Priest", + "race": "human", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hmpr", + "sortUI": "a2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "priest", + "unitClass": "HUnit09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hmpr", + "sortBalance": "a2", + "sort2": "cas", + "level": 2, + "type": "_", + "goldcost": 135, + "lumbercost": 10, + "goldRep": 135, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 290, + "realHP": 290, + "regenHP": 0.25, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.72, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhpt,Rhpm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "hmpr", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.67, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 8, + "avgdmg1": 8.5, + "maxdmg1": 9, + "dmgpt1": 0.59, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 4.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hmpr", + "sortAbil": "a2", + "auto": "Ahea", + "abilList": "Ahea,Ainf,Adis,Aihn", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\PriestMissile\\PriestMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-priest.blp", + "Art:hd:custom,V0": "ReplaceableTextures\\CommandButtons\\BTNPriest.blp", + "Art:hd:melee,V0": "ReplaceableTextures\\CommandButtons\\BTNPriest.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPriestV1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPriest.blp", + "skinType": "unit", + "abilSkinList": "Ahea,Ainf,Adis,Aihn", + "abilSkinList:melee,V0": "Ahea,Ainf,Adis", + "abilSkinList:custom,V0": "Ahea,Ainf,Adis", + "skinnableID": "hmpr", + "file": "units\\human\\Priest\\Priest", + "unitSound": "Priest", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "185", + "walk:hd": "270", + "run:sd": "185", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.03", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "-20", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "hmtm": { + "unitID": "hmtm", + "sort": "a2", + "comment(s)": "MortarTeam", + "race": "human", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.5, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hmtm", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mortarteam", + "unitClass": "HUnit05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hmtm", + "sortBalance": "a2", + "sort2": "art", + "level": 2, + "type": "_", + "goldcost": 180, + "lumbercost": 70, + "goldRep": 180, + "lumberRep": 70, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 360, + "realHP": 360, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 32, + "reptm": 32, + "sight": 1400, + "nsight": 1200, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhla,Rhra,Rhfl,Rhfs,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hmtm", + "sortWeap": "a2", + "weapsOn": 3, + "acquire": 1150, + "minRange": 250, + "castpt": 1.1, + "castbsw": 0.9, + "targs1": "ground,debris,tree,wall,item,ward", + "rangeN1": 1150, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 3.5, + "mincool1": "-", + "dice1": 1, + "sides1": 13, + "dmgplus1": 51, + "dmgUp1": "-", + "mindmg1": 52, + "avgdmg1": 58, + "maxdmg1": 64, + "dmgpt1": 1, + "backSw1": 1.1, + "Farea1": 25, + "Harea1": 100, + "Qarea1": 200, + "Hfact1": 0.4, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 16.5714285714286, + "targs2": "structure", + "rangeN2": 1150, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 3.5, + "mincool2": "-", + "dice2": 1, + "sides2": 13, + "dmgplus2": 51, + "dmgUp2": "-", + "mindmg2": 52, + "avgdmg2": 58, + "maxdmg2": 64, + "dmgpt2": 1, + "backSw2": 1.1, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hmtm", + "sortAbil": "a2", + "auto": "_", + "abilList": "Afla,Afsh", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\Mortar\\MortarMissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMortarTeam.blp", + "skinType": "unit", + "abilSkinList": "Afla,Afsh", + "abilSkinList:melee,V0": "Afla", + "abilSkinList:custom,V0": "Afla", + "skinnableID": "hmtm", + "file": "units\\human\\MortarTeam\\MortarTeam", + "unitSound": "MortarTeam", + "blend": "0.15", + "scale": "1.3", + "legacyScale": "1.3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "0", + "launchZ:hd": "60", + "projectileVisOffsetX:hd": "-15", + "projectileVisOffsetY:hd": "25", + "addon": "Units" + }, + "hmtt": { + "unitID": "hmtt", + "sort": "a2", + "comment(s)": "Siege Engine", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hmtt", + "sortUI": "a2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "siegeengine", + "unitClass": "HUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hmtt", + "sortBalance": "a2", + "sort2": "art", + "level": 4, + "type": "Mechanical", + "goldcost": 195, + "lumbercost": 60, + "goldRep": 195, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhra,Rhrt,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "hmtt", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "structure,debris", + "rangeN1": 192, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "instant", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 23.8095238095238, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 16, + "dmgUp2": 11, + "mindmg2": 17, + "avgdmg2": 17.5, + "maxdmg2": 18, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hmtt", + "sortAbil": "a2", + "auto": "_", + "abilList": "Srtt,Aroc", + "Requires": "hcas", + "Attachmentanimprops": "large", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanSteamTankMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\SteamTank\\SteamTankImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "2500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeigeEngine.blp", + "elevPts": "3", + "skinType": "unit", + "abilSkinList": "Srtt,Aroc", + "skinnableID": "hmtt", + "file": "units\\human\\WarWagon\\WarWagon", + "unitSound": "SteamTank", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hpea": { + "unitID": "hpea", + "sort": "a2", + "comment(s)": "Peasant", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.34, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hpea", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "peasant", + "unitClass": "HUnit01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hpea", + "sortBalance": "a2", + "sort2": "peo", + "level": 1, + "type": "Peon", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 240, + "realHP": 240, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhlh,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "hpea", + "sortWeap": "a2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 4, + "dmgUp1": "-", + "mindmg1": 5, + "avgdmg1": 5.5, + "maxdmg1": 6, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 2.75, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hpea", + "sortAbil": "a2", + "auto": "_", + "abilList": "Ahar,Amil,Ahrp,Ahlh", + "Builds": "htow,hhou,hbar,hbla,hwtw,halt,harm,hars,hlum,hgra,hvlt", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPeasant.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Amil,Ahrp,Ahlh", + "abilSkinList:melee,V0": "Ahar,Amil,Ahrp", + "abilSkinList:custom,V0": "Ahar,Amil,Ahrp", + "abilSkinList:custom,V1": "Ahar,Amil,Ahrp", + "skinnableID": "hpea", + "file": "units\\human\\Peasant\\Peasant", + "unitSound": "Peasant", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "190", + "run:sd": "150", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalLightChop", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hphx": { + "unitID": "hphx", + "sort": "a2", + "comment(s)": "Phoenix", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.7, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hphx", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "phoenix", + "unitClass": "HUnit21", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hphx", + "sortBalance": "a2", + "sort2": "fly2", + "level": 0, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1250, + "realHP": 1250, + "regenHP": -25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1600, + "nsight": 900, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "hphx", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "msplash", + "cool1": 1.4, + "mincool1": "-", + "dice1": 1, + "sides1": 15, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 68, + "maxdmg1": 75, + "dmgpt1": 0.43, + "backSw1": 0.633, + "Farea1": 25, + "Harea1": 66, + "Qarea1": 125, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 59, + "DPS": 48.5714285714286, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hphx", + "sortAbil": "a2", + "auto": "_", + "abilList": "Aphx,ACmi,ACrk,Apxf,Ahpe", + "Missileart": "Abilities\\Weapons\\PhoenixMissile\\Phoenix_Missile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1800", + "MissileHoming": "1", + "Buttonpos": "0,0", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPhoenix.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Aphx,ACmi,ACrk,Apxf,Ahpe", + "abilSkinList:custom,V1": "Aphx,ACmi,ACrk,Apxf", + "skinnableID": "hphx", + "file": "units\\human\\phoenix\\phoenix", + "unitSound": "Phoenix", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "230", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "20", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "launchZ:hd": "50", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "0", + "addon": "Units" + }, + "hpxe": { + "unitID": "hpxe", + "sort": "a2", + "comment(s)": "Phoenix Egg", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hpxe", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "phoenixegg", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hpxe", + "sortBalance": "a2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 200, + "realHP": 200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hpxe", + "sortWeap": "a2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hpxe", + "sortAbil": "a2", + "auto": "_", + "abilList": "Aphx,ACrk,ACmi", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPhoenixEgg.blp", + "skinType": "unit", + "abilSkinList": "Aphx,ACrk,ACmi", + "skinnableID": "hpxe", + "file": "units\\human\\phoenix\\phoenix", + "unitSound": "PhoenixEgg", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hrif": { + "unitID": "hrif", + "sort": "a2", + "comment(s)": "Rifleman", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.7, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hrif", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rifleman", + "unitClass": "HUnit04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hrif", + "sortBalance": "a2", + "sort2": "ran", + "level": 3, + "type": "_", + "goldcost": 205, + "lumbercost": 30, + "goldRep": 205, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 535, + "realHP": 535, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhla,Rhra,Rhri,Rhpm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hrif", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "instant", + "cool1": 1.4, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 21, + "maxdmg1": 24, + "dmgpt1": 0.17, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 15, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hrif", + "sortAbil": "a2", + "auto": "_", + "abilList": "Aihn,Ahri", + "Requires": "hbla", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\Rifle\\RifleImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "1900", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRifleman.blp", + "skinType": "unit", + "abilSkinList": "Aihn,Ahri", + "abilSkinList:custom,V1": "Aihn", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "hrif", + "file": "units\\human\\Rifleman\\Rifleman", + "unitSound": "Rifleman", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hrtt": { + "unitID": "hrtt", + "sort": "a2", + "comment(s)": "siege engine upgraded", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hrtt", + "sortUI": "a2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "rocketengine", + "unitClass": "HUnit12", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hrtt", + "sortBalance": "a2", + "sort2": "art", + "level": 4, + "type": "Mechanical", + "goldcost": 195, + "lumbercost": 60, + "goldRep": 195, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhra,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "hrtt", + "sortWeap": "a2", + "weapsOn": 3, + "acquire": 500, + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "structure,debris", + "rangeN1": 192, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "instant", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 23.8095238095238, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 16, + "dmgUp2": 11, + "mindmg2": 17, + "avgdmg2": 17.5, + "maxdmg2": 18, + "dmgpt2": 0.125, + "backSw2": 0.875, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hrtt", + "sortAbil": "a2", + "auto": "_", + "abilList": "Aroc", + "Requires": "hcas", + "Attachmentanimprops": "large", + "Animprops": "alternate", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanSteamTankMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\SteamTank\\SteamTankImpact.mdl,Abilities\\Weapons\\RocketMissile\\RocketMissile.mdl", + "Missilearc": "0.0,0.15", + "Missilespeed": "2500,900", + "Missilehoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeigeEngineWithMissles.blp", + "elevPts": "3", + "skinType": "unit", + "abilSkinList": "Aroc", + "skinnableID": "hrtt", + "file": "units\\human\\WarWagon\\WarWagon", + "unitSound": "SteamTank", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "100", + "addon": "Units" + }, + "hsor": { + "unitID": "hsor", + "sort": "a2", + "comment(s)": "Sorceress", + "race": "human", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.87, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hsor", + "sortUI": "a2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "sorceress", + "unitClass": "HUnit10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hsor", + "sortBalance": "a2", + "sort2": "cas", + "level": 2, + "type": "_", + "goldcost": 155, + "lumbercost": 20, + "goldRep": 155, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 325, + "realHP": 325, + "regenHP": 0.25, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.666666666666667, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhst,Rhpm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "hsor", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.45, + "castbsw": 1.08, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 11, + "maxdmg1": 12, + "dmgpt1": 0.75, + "backSw1": 0.78, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 6.28571428571429, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hsor", + "sortAbil": "a2", + "auto": "Aslo", + "abilList": "Aivs,Aply,Aslo,Aihn", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\SorceressMissile\\SorceressMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-sorceress.blp", + "Art:hd:custom,V0": "ReplaceableTextures\\CommandButtons\\BTNSorceress.blp", + "Art:hd:melee,V0": "ReplaceableTextures\\CommandButtons\\BTNSorceress.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSorceressV1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSorceress.blp", + "skinType": "unit", + "abilSkinList": "Aivs,Aply,Aslo,Aihn", + "abilSkinList:melee,V0": "Aivs,Aply,Aslo", + "abilSkinList:custom,V0": "Aivs,Aply,Aslo", + "skinnableID": "hsor", + "file": "units\\human\\Sorceress\\Sorceress", + "unitSound": "Sorceress", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.11", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "85", + "launchZ:hd": "80", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "35", + "addon": "Units" + }, + "hspt": { + "unitID": "hspt", + "sort": "a2", + "comment(s)": "Blood Elf Spell Breaker", + "race": "human", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hspt", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spellbreaker", + "unitClass": "HUnit14", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hspt", + "sortBalance": "a2", + "sort2": "me1", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 30, + "goldRep": 215, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 600, + "realHP": 600, + "regenHP": 0.25, + "regenType": "always", + "manaN": 250, + "realM": 250, + "mana0": 75, + "regenMana": 0.8, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhme,Rhss,Rhpm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "hspt", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 250, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 7.36842105263158, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hspt", + "sortAbil": "a2", + "auto": "Asps", + "abilList": "Asps,Acmg,Amim,Afbk,Aihn", + "Requires": "hvlt,hkee", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\BloodElfSpellThiefMISSILE\\BloodElfSpellThiefMISSILE.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellBreaker.blp", + "skinType": "unit", + "abilSkinList": "Asps,Acmg,Amim,Afbk,Aihn", + "skinnableID": "hspt", + "file": "units\\human\\BloodElfSpellThief\\BloodElfSpellThief", + "unitSound": "SpellBreaker", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk": "300", + "run": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "40", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "hwat": { + "unitID": "hwat", + "sort": "a2", + "comment(s)": "WaterElemental", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hwat", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "waterelemental1", + "unitClass": "HUnit16", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hwat", + "sortBalance": "a2", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hwat", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 18, + "dmgUp1": "-", + "mindmg1": 19, + "avgdmg1": 21, + "maxdmg1": 23, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hwat", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\WaterElementalMissile\\WaterElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWaterElemental.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp", + "skinType": "unit", + "skinnableID": "hwat", + "file": "units\\human\\WaterElemental\\WaterElemental", + "unitSound": "WaterElemental", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "105", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Heroes" + }, + "hwt2": { + "unitID": "hwt2", + "sort": "a2", + "comment(s)": "WaterElemental level 2", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hwt2", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "waterelemental2", + "unitClass": "HUnit17", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hwt2", + "sortBalance": "a2", + "sort2": "sum", + "level": 5, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 625, + "realHP": 625, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hwt2", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 32, + "avgdmg1": 36, + "maxdmg1": 40, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 24, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hwt2", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\WaterElementalMissile\\WaterElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWaterElementalLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp", + "skinType": "unit", + "skinnableID": "hwt2", + "file:hd": "Units\\Human\\WaterElementalLvl2\\WaterElementalLvl2", + "file:sd": "units\\human\\WaterElemental\\WaterElemental", + "unitSound": "WaterElemental", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "192", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\human\\WaterElemental\\WaterElemental_portrait", + "portrait:hd": "Units\\Human\\WaterElementalLvl2\\WaterElementalLvl2_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "125", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "110", + "addon": "Heroes" + }, + "hwt3": { + "unitID": "hwt3", + "sort": "a2", + "comment(s)": "WaterElemental level 3", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hwt3", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "waterelemental3", + "unitClass": "HUnit18", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hwt3", + "sortBalance": "a2", + "sort2": "sum", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 825, + "realHP": 825, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "hwt3", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 42, + "dmgUp1": "-", + "mindmg1": 44, + "avgdmg1": 48, + "maxdmg1": 52, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 32, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hwt3", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\WaterElementalMissile\\WaterElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWaterElementalLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp", + "skinType": "unit", + "skinnableID": "hwt3", + "file:hd": "Units\\Human\\WaterElementalLvl3\\WaterElementalLvl3", + "file:sd": "units\\human\\WaterElemental\\WaterElemental", + "unitSound": "WaterElemental", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "192", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\human\\WaterElemental\\WaterElemental_portrait", + "portrait:hd": "Units\\Human\\WaterElementalLvl3\\WaterElementalLvl3_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "145", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "110", + "addon": "Heroes" + }, + "nlv1": { + "unitID": "nlv1", + "sort": "a2", + "comment(s)": "LavaSpawn1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 6, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlv1", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lavaspawn", + "unitClass": "lavaspawn", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlv1", + "sortBalance": "a2", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 425, + "realHP": 425, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nlv1", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 4, + "sides1": 5, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 19, + "maxdmg1": 27, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 13, + "DPS": 12.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlv1", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\LavaSpawnMissile\\LavaSpawnMissile.mdl", + "Missilearc": "0.15", + "MissileHoming": "1", + "Missilespeed": "1000", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawn.blp", + "skinType": "unit", + "skinnableID": "nlv1", + "file": "Units\\Creeps\\LavaSpawn\\LavaSpawn", + "unitSound": "LavaSpawn", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nlv2": { + "unitID": "nlv2", + "sort": "a2", + "comment(s)": "LavaSpawn2", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 6, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlv2", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lavaspawn2", + "unitClass": "lavaspawn", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlv2", + "sortBalance": "a2", + "sort2": "sum", + "level": 5, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 550, + "realHP": 550, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nlv2", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 6, + "sides1": 5, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 33, + "maxdmg1": 45, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 7, + "DPS": 22, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlv2", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\LavaSpawnMissile\\LavaSpawnMissile.mdl", + "Missilearc": "0.15", + "MissileHoming": "1", + "Missilespeed": "1000", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawnLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawn.blp", + "skinType": "unit", + "skinnableID": "nlv2", + "file:hd": "Units\\Creeps\\LavaSpawnLvl2\\LavaSpawnLvl2", + "file:sd": "Units\\Creeps\\LavaSpawn\\LavaSpawn", + "unitSound": "LavaSpawn", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "Units\\Creeps\\LavaSpawn\\LavaSpawn_portrait", + "portrait:hd": "Units\\Creeps\\LavaSpawnLvl2\\LavaSpawnLvl2_portrait", + "impactSwimZ": "0", + "impactZ": "70", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "70", + "addon": "Units" + }, + "nlv3": { + "unitID": "nlv3", + "sort": "a2", + "comment(s)": "LavaSpawn3", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 6, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlv3", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lavaspawn3", + "unitClass": "lavaspawn", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlv3", + "sortBalance": "a2", + "sort2": "sum", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nlv3", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 6, + "sides1": 5, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 32, + "avgdmg1": 44, + "maxdmg1": 56, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 7, + "DPS": 29.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlv3", + "sortAbil": "a2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\LavaSpawnMissile\\LavaSpawnMissile.mdl", + "Missilearc": "0.15", + "MissileHoming": "1", + "Missilespeed": "1000", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawnLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawn.blp", + "skinType": "unit", + "skinnableID": "nlv3", + "file:hd": "Units\\Creeps\\LavaSpawnLvl3\\LavaSpawnLvl3", + "file:sd": "Units\\Creeps\\LavaSpawn\\LavaSpawn", + "unitSound": "LavaSpawn", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "Units\\Creeps\\LavaSpawn\\LavaSpawn_portrait", + "portrait:hd": "Units\\Creeps\\LavaSpawnLvl3\\LavaSpawnLvl3_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "80", + "addon": "Units" + }, + "halt": { + "unitID": "halt", + "sort": "a3", + "comment(s)": "AltarofKings", + "race": "human", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.335, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\10x10Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "halt", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "altarofkings", + "unitClass": "HBuilding05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "halt", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 180, + "lumbercost": 50, + "goldRep": 180, + "lumberRep": 50, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "halt", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "halt", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds", + "Trains": "Hamg,Hmkg,Hpal,Hblm", + "Buttonpos": "1,1", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Revive": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfKings.blp", + "buildingShadow": "ShadowAltarofKings", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "halt", + "file": "buildings\\human\\AltarofKings\\AltarofKings", + "portrait:sd": "buildings\\human\\AltarofKings\\AltarofKings", + "portrait:hd": "buildings\\human\\AltarofKings\\AltarofKings_portrait", + "unitSound": "AltarofKings", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "harm": { + "unitID": "harm", + "sort": "a3", + "comment(s)": "Workshop", + "race": "human", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.335, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "harm", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "workshop", + "unitClass": "HBuilding09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "harm", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 140, + "lumbercost": 140, + "goldRep": 140, + "lumberRep": 140, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "harm", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "harm", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds", + "Requires": "hkee,hbla", + "Trains": "hgyr,hmtm,hmtt,hrtt", + "Buttonpos": "3,1", + "Researches": "Rhgb,Rhfl,Rhrt,Rhfc,Rhfs", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWorkshop.blp", + "buildingShadow": "ShadowArmory", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "harm", + "file": "buildings\\human\\Workshop\\Workshop", + "portrait:sd": "buildings\\human\\Workshop\\Workshop", + "portrait:hd": "buildings\\human\\Workshop\\Workshop_portrait", + "unitSound": "Workshop", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hars": { + "unitID": "hars", + "sort": "a3", + "comment(s)": "ArcaneSanctum", + "race": "human", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hars", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "arcanesanctum", + "unitClass": "HBuilding10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hars", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 150, + "lumbercost": 140, + "goldRep": 150, + "lumberRep": 140, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1050, + "realHP": 1050, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "hars", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hars", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds", + "Requires": "hkee", + "Trains": "hmpr,hsor,hspt", + "Researches": "Rhpt,Rhst,Rhse,Rhss", + "Buttonpos": "2,1", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcaneSanctum.blp", + "buildingShadow": "ShadowArcaneSanctum", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "hars", + "file": "buildings\\human\\ArcaneSanctum\\ArcaneSanctum", + "portrait:sd": "buildings\\human\\ArcaneSanctum\\ArcaneSanctum", + "portrait:hd": "buildings\\human\\ArcaneSanctum\\ArcaneSanctum_portrait", + "unitSound": "ArcaneSanctum", + "blend": "0.15", + "scale": "3.75", + "legacyScale": "3.75", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hatw": { + "unitID": "hatw", + "sort": "a3", + "comment(s)": "Arcane Tower", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.67, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hatw", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "humanarcanetower", + "unitClass": "HBuilding15", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hatw", + "sortBalance": "a3", + "sort2": "tow", + "level": 1, + "type": "Mechanical", + "goldcost": 100, + "lumbercost": 70, + "goldRep": 100, + "lumberRep": 70, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 45, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "hatw", + "sortWeap": "a3", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 800, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 8, + "avgdmg1": 9, + "maxdmg1": 10, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 9, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hatw", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds,Afbt,AHta,Adts", + "Buttonpos": "2,2", + "Missileart": "Abilities\\Spells\\Undead\\OrbOfDeath\\OrbOfDeathMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "MissileHoming": "1", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "upgrade,third", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanArcaneTower.blp", + "buildingShadow": "ShadowGuardTower", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Afbt,AHta,Adts", + "uberSplat": "HSMA", + "skinnableID": "hatw", + "file": "buildings\\human\\HumanTower\\HumanTower", + "portrait:sd": "buildings\\human\\HumanTower\\HumanTower", + "portrait:hd": "buildings\\human\\HumanTower\\HumanTower_portrait", + "unitSound": "ArcaneTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "245", + "addon": "Buildings" + }, + "hbar": { + "unitID": "hbar", + "sort": "a3", + "comment(s)": "HumanBarracks", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hbar", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "humanbarracks", + "unitClass": "HBuilding06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hbar", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 160, + "lumbercost": 60, + "goldRep": 160, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "hbar", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hbar", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds", + "Trains": "hfoo,hrif,hkni", + "Researches": "Rhde,Rhan,Rhri,Rhsb", + "Buttonpos": "1,0", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanBarracks.blp", + "buildingShadow": "ShadowHumanBarracks", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "hbar", + "file": "buildings\\human\\HumanBarracks\\HumanBarracks", + "portrait:sd": "buildings\\human\\HumanBarracks\\HumanBarracks", + "portrait:hd": "buildings\\human\\HumanBarracks\\HumanBarracks_portrait", + "unitSound": "HumanBarracks", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hbla": { + "unitID": "hbla", + "sort": "a3", + "comment(s)": "Blacksmith", + "race": "human", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hbla", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "blacksmith", + "unitClass": "HBuilding08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hbla", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 140, + "lumbercost": 40, + "goldRep": 140, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "hbla", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hbla", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds", + "Requires": "htow", + "Buttonpos": "3,0", + "Researches": "Rhme,Rhar,Rhla,Rhra", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlacksmith.blp", + "buildingShadow": "ShadowBlacksmith", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "hbla", + "file": "buildings\\human\\Blacksmith\\Blacksmith", + "portrait:sd": "buildings\\human\\Blacksmith\\Blacksmith", + "portrait:hd": "buildings\\human\\Blacksmith\\Blacksmith_portrait", + "unitSound": "Blacksmith", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hcas": { + "unitID": "hcas", + "sort": "a3", + "comment(s)": "Castle", + "race": "human", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.17, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hcas", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "1", + "name": "castle", + "unitClass": "HBuilding03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hcas", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 1025, + "lumbercost": 625, + "goldRep": 1065, + "lumberRep": 625, + "fmade": 16, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2500, + "realHP": 2500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 120, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 172, + "stockInitial": "-", + "unitWeaponID": "hcas", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hcas", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abdl,Amic,Argl", + "Requires": "halt", + "Trains": "hpea", + "Researches": "Rhpm", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\GuardTowerMissile\\GuardTowerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1800", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "upgrade,second", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCastle.blp", + "buildingShadow": "ShadowCastle", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abdl,Amic,Argl", + "uberSplat": "HCAS", + "skinnableID": "hcas", + "file": "buildings\\human\\TownHall\\TownHall", + "portrait:sd": "buildings\\human\\TownHall\\TownHall", + "portrait:hd": "buildings\\human\\TownHall\\TownHall_portrait", + "unitSound": "Castle", + "blend": "0.25", + "scale": "6.3", + "legacyScale": "6.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hctw": { + "unitID": "hctw", + "sort": "a3", + "comment(s)": "CannonTower", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hctw", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cannontower", + "unitClass": "HBuilding14", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hctw", + "sortBalance": "a3", + "sort2": "tow", + "level": 1, + "type": "Mechanical", + "goldcost": 150, + "lumbercost": 120, + "goldRep": 150, + "lumberRep": 120, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 65, + "reptm": 60, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "hctw", + "sortWeap": "a3", + "weapsOn": 3, + "acquire": 800, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,debris,tree,wall,ward,item", + "rangeN1": 800, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 22, + "dmgplus1": 89, + "dmgUp1": "-", + "mindmg1": 90, + "avgdmg1": 100.5, + "maxdmg1": 111, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 50, + "Harea1": 100, + "Qarea1": 125, + "Hfact1": 0.5, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,notself,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 84, + "DPS": 40.2, + "targs2": "structure", + "rangeN2": 800, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 22, + "dmgplus2": 89, + "dmgUp2": "-", + "mindmg2": 90, + "avgdmg2": 100.5, + "maxdmg2": 111, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hctw", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds,Adts,Afsh", + "Requires": "harm", + "Buttonpos": "1,2", + "Missileart": "Abilities\\Weapons\\CannonTowerMissile\\CannonTowerMissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "700", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "upgrade,second", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannonTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Adts,Afsh", + "abilSkinList:melee,V0": "Abds,Adts", + "abilSkinList:custom,V0": "Abds,Adts", + "abilSkinList:custom,V1": "Abds,Adts", + "uberSplat": "HSMA", + "skinnableID": "hctw", + "file": "buildings\\human\\HumanTower\\HumanTower", + "portrait:sd": "buildings\\human\\HumanTower\\HumanTower", + "portrait:hd": "buildings\\human\\HumanTower\\HumanTower_portrait", + "unitSound": "CannonTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "160", + "addon": "Buildings" + }, + "hgra": { + "unitID": "hgra", + "sort": "a3", + "comment(s)": "GryphonAviary", + "race": "human", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hgra", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gryphonaviary", + "unitClass": "HBuilding11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hgra", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 140, + "lumbercost": 150, + "goldRep": 140, + "lumberRep": 150, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 75, + "reptm": 75, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 100, + "stockInitial": "-", + "unitWeaponID": "hgra", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hgra", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds", + "Requires": "hkee,hlum", + "Trains": "hgry,hdhw", + "Researches": "Rhhb,Rhcd", + "Buttonpos": "1,2", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGryphonAviary.blp", + "buildingShadow": "ShadowGryphonAviary", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "hgra", + "file": "buildings\\human\\GryphonAviary\\GryphonAviary", + "portrait:sd": "buildings\\human\\GryphonAviary\\GryphonAviary", + "portrait:hd": "buildings\\human\\GryphonAviary\\GryphonAviary_portrait", + "unitSound": "GryphonAviary", + "blend": "0.15", + "scale:hd": "4.1", + "scale:sd": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hgtw": { + "unitID": "hgtw", + "sort": "a3", + "comment(s)": "GuardTower", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hgtw", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "guardtower", + "unitClass": "HBuilding13", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hgtw", + "sortBalance": "a3", + "sort2": "tow", + "level": 1, + "type": "Mechanical", + "goldcost": 100, + "lumbercost": 70, + "goldRep": 100, + "lumberRep": 70, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 45, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "hgtw", + "sortWeap": "a3", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 700, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 0.9, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 27.7777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hgtw", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds,Adts", + "Requires": "hlum", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\GuardTowerMissile\\GuardTowerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1800", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "upgrade,first", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGuardTower.blp", + "buildingShadow": "ShadowGuardTower", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Adts", + "uberSplat": "HSMA", + "skinnableID": "hgtw", + "file": "buildings\\human\\HumanTower\\HumanTower", + "portrait:sd": "buildings\\human\\HumanTower\\HumanTower", + "portrait:hd": "buildings\\human\\HumanTower\\HumanTower_portrait", + "unitSound": "GuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "145", + "addon": "Buildings" + }, + "hhou": { + "unitID": "hhou", + "sort": "a3", + "comment(s)": "Farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hhou", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "farm", + "unitClass": "HBuilding04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hhou", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 80, + "lumbercost": 20, + "goldRep": 80, + "lumberRep": 20, + "fmade": 6, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "hhou", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hhou", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds", + "Buttonpos": "0,1", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFarm.blp", + "buildingShadow": "ShadowHouse", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HSMA", + "skinnableID": "hhou", + "file": "buildings\\human\\Farm\\Farm", + "portrait:sd": "buildings\\human\\Farm\\Farm", + "portrait:hd": "buildings\\human\\Farm\\Farm_portrait", + "unitSound": "Farm", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "0.85", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hkee": { + "unitID": "hkee", + "sort": "a3", + "comment(s)": "Keep", + "race": "human", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.17, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hkee", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "1", + "name": "keep", + "unitClass": "HBuilding02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hkee", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 705, + "lumbercost": 415, + "goldRep": 705, + "lumberRep": 415, + "fmade": 14, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 120, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 176, + "stockInitial": "-", + "unitWeaponID": "hkee", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hkee", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abdl,Amic,Argl", + "Upgrade": "hcas", + "Trains": "hpea", + "Researches": "Rhpm", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\GuardTowerMissile\\GuardTowerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1800", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "upgrade,first", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKeep.blp", + "buildingShadow": "ShadowKeep", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abdl,Amic,Argl", + "uberSplat": "HTOW", + "skinnableID": "hkee", + "file": "buildings\\human\\TownHall\\TownHall", + "portrait:sd": "buildings\\human\\TownHall\\TownHall", + "portrait:hd": "buildings\\human\\TownHall\\TownHall_portrait", + "unitSound": "Keep", + "blend": "0.25", + "scale": "6.3", + "legacyScale": "6.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hlum": { + "unitID": "hlum", + "sort": "a3", + "comment(s)": "LumberMill", + "race": "human", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\10x10SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hlum", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "humanlumbermill", + "unitClass": "HBuilding07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hlum", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 0, + "goldRep": 120, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "hlum", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hlum", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds,Arlm", + "Buttonpos": "2,0", + "Researches": "Rhac,Rhlh", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanLumberMill.blp", + "buildingShadow": "ShadowHumanLumberMill", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Arlm", + "uberSplat": "HMED", + "skinnableID": "hlum", + "file": "buildings\\human\\HumanLumbermill\\HumanLumbermill", + "portrait:sd": "buildings\\human\\HumanLumbermill\\HumanLumbermill", + "portrait:hd": "buildings\\human\\HumanLumbermill\\HumanLumbermill_portrait", + "unitSound": "HumanLumberMill", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hshy": { + "unitID": "hshy", + "sort": "a3", + "comment(s)": "human shipyard", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 384, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "hshy", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "humanshipyard", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hshy", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "hshy", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hshy", + "sortAbil": "a3", + "auto": "_", + "abilList": "Ane2,Abds", + "Sellunits": "hbot", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanShipyard.blp", + "buildingShadow": "ShadowHumanShipyard", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Abds", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "uberSplat": "HMED", + "skinnableID": "hshy", + "file": "buildings\\human\\HumanShipyard\\HumanShipyard", + "portrait:sd": "buildings\\human\\HumanShipyard\\HumanShipyard", + "portrait:hd": "buildings\\human\\HumanShipyard\\HumanShipyard_portrait", + "unitSound": "GoblinShipyard", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "htow": { + "unitID": "htow", + "sort": "a3", + "comment(s)": "TownHall", + "race": "human", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.17, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "htow", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "1", + "name": "townhall", + "unitClass": "HBuilding01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "htow", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 385, + "lumbercost": 205, + "goldRep": 385, + "lumberRep": 205, + "fmade": 12, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 180, + "reptm": 180, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 176, + "stockInitial": "-", + "unitWeaponID": "htow", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "htow", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abdl,Argl", + "Upgrade": "hkee", + "Trains": "hpea", + "Researches": "Rhpm", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\GuardTowerMissile\\GuardTowerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1800", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTownHall.blp", + "buildingShadow": "ShadowTownhall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abdl,Amic,Argl", + "abilSkinList:melee,V0": "Abdl,Amic,Argl", + "abilSkinList:custom,V0": "Abdl,Amic,Argl", + "abilSkinList:custom,V1": "Abdl,Amic,Argl", + "uberSplat": "HTOW", + "skinnableID": "htow", + "file": "buildings\\human\\TownHall\\TownHall", + "portrait:sd": "buildings\\human\\TownHall\\TownHall", + "portrait:hd": "buildings\\human\\TownHall\\TownHall_portrait", + "unitSound": "TownHall", + "blend": "0.25", + "scale": "6.3", + "legacyScale": "6.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hvlt": { + "unitID": "hvlt", + "sort": "a3", + "comment(s)": "Arcane Vault", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hvlt", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "arcanevault", + "unitClass": "HBuilding16", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hvlt", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 130, + "lumbercost": 30, + "goldRep": 130, + "lumberRep": 30, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 485, + "realHP": 485, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1000, + "nsight": 750, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "hvlt", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hvlt", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds,Aall,Apit", + "Buttonpos": "2,2", + "Makeitems": "sreg,mcri,plcl,phea,pman,stwp,tsct,oslo,ssan", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcaneVault.blp", + "buildingShadow": "ShadowArcaneVault", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aall,Apit", + "uberSplat": "HMED", + "skinnableID": "hvlt", + "file": "buildings\\human\\ArcaneVault\\ArcaneVault", + "portrait:sd": "buildings\\human\\ArcaneVault\\ArcaneVault", + "portrait:hd": "buildings\\human\\ArcaneVault\\ArcaneVault_portrait", + "unitSound": "ArcaneVault", + "blend": "0.15", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "hwtw": { + "unitID": "hwtw", + "sort": "a3", + "comment(s)": "Scout Tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "hwtw", + "sortUI": "a3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "scouttower", + "unitClass": "HBuilding12", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hwtw", + "sortBalance": "a3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 30, + "lumbercost": 20, + "goldRep": 30, + "lumberRep": 20, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 300, + "realHP": 300, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 1, + "realdef": 0, + "defType": "small", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 15, + "sight": 1600, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhac,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "hwtw", + "sortWeap": "a3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hwtw", + "sortAbil": "a3", + "auto": "_", + "abilList": "Abds,Adts", + "Upgrade": "hgtw,hctw,hatw", + "Buttonpos": "0,2", + "BuildingSoundLabel": "BuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanWatchTower.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Adts", + "uberSplat": "HSMA", + "skinnableID": "hwtw", + "file": "buildings\\human\\HumanTower\\HumanTower", + "portrait:sd": "buildings\\human\\HumanTower\\HumanTower", + "portrait:hd": "buildings\\human\\HumanTower\\HumanTower_portrait", + "unitSound": "ScoutTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "Obla": { + "unitID": "Obla", + "sort": "b1", + "comment(s)": "HeroBladeMaster", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 14, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Obla", + "sortUI": "b1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "blademaster", + "unitClass": "OHero01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Obla", + "sortBalance": "b1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.6, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 16, + "AGI": 22, + "STRplus": 2, + "INTplus": 2.25, + "AGIplus": 1.75, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Obla", + "sortWeap": "b1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.77, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.33, + "backSw1": 0.84, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.34463276836158, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.77, + "mincool2": "-", + "dice2": 2, + "sides2": 12, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 13, + "maxdmg2": 24, + "dmgpt2": 0.33, + "backSw2": 0.84, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Obla", + "sortAbil": "b1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOwk,AOcr,AOmi,AOww", + "Buttonpos": "0,2", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-blademaster.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroBlademaster.blp", + "skinType": "unit", + "heroAbilSkinList": "AOwk,AOcr,AOmi,AOww", + "abilSkinList": "AInv", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "skinnableID": "Obla", + "file": "units\\orc\\HeroBladeMaster\\HeroBladeMaster", + "unitSound": "HeroBladeMaster", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "50", + "addon": "Heroes" + }, + "Ofar": { + "unitID": "Ofar", + "sort": "b1", + "comment(s)": "HeroFarSeer", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 11, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Ofar", + "sortUI": "b1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "farseer", + "unitClass": "OHero02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ofar", + "sortBalance": "b1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 120, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 19, + "AGI": 18, + "STRplus": 2, + "INTplus": 3, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ofar", + "sortWeap": "b1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.07, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.28, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.19298245614035, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.28, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ofar", + "sortAbil": "b1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOfs,AOsf,AOcl,AOeq", + "Buttonpos": "1,2", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-farseer.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroFarseer.blp", + "skinType": "unit", + "heroAbilSkinList": "AOfs,AOsf,AOcl,AOeq", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Ofar", + "file": "units\\orc\\HeroFarSeer\\HeroFarSeer", + "unitSound": "HeroFarSeer", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "100", + "addon": "Heroes" + }, + "Oshd": { + "unitID": "Oshd", + "sort": "b1", + "comment(s)": "HeroShadowHunter", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.77, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 9, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Oshd", + "sortUI": "b1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "shadowhunter", + "unitClass": "OHero07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Oshd", + "sortBalance": "b1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 17, + "AGI": 20, + "STRplus": 2, + "INTplus": 2.5, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Oshd", + "sortWeap": "b1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.07, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.28, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.19298245614035, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.28, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Oshd", + "sortAbil": "b1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOhw,AOhx,AOsw,AOvd", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\ShadowHunterMissile\\ShadowHunterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-shadowhunter.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowHunter.blp", + "skinType": "unit", + "heroAbilSkinList": "AOhw,AOhx,AOsw,AOvd", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Oshd", + "file": "units\\orc\\HeroShadowHunter\\HeroShadowHunter", + "unitSound": "HeroShadowHunter", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "85", + "shadowY": "85", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "80", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "110", + "addon": "Heroes" + }, + "Otch": { + "unitID": "Otch", + "sort": "b1", + "comment(s)": "HeroTaurenChieftain", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 10, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Otch", + "sortUI": "b1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "taurenchieftain", + "unitClass": "OHero03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Otch", + "sortBalance": "b1", + "sort2": "uher", + "level": 5, + "type": "Tauren", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 15, + "AGI": 10, + "STRplus": 3.2, + "INTplus": 1.3, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Otch", + "sortWeap": "b1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.8, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.36, + "backSw1": 0.97, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.41463414634146, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.05, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.36, + "backSw2": 0.97, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Otch", + "sortAbil": "b1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOsh,AOae,AOre,AOws", + "Buttonpos": "2,2", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-taurenchieftain.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroTaurenChieftain.blp", + "skinType": "unit", + "heroAbilSkinList": "AOsh,AOae,AOre,AOws", + "abilSkinList": "AInv", + "modelScale:hd": "1.05", + "modelScale:sd": "1.1", + "skinnableID": "Otch", + "file": "units\\orc\\HeroTaurenChieftain\\HeroTaurenChieftain", + "unitSound": "HeroTaurenChieftain", + "blend": "0.3", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "180", + "walk:hd": "290", + "run:sd": "180", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ncat": { + "unitID": "ncat", + "sort": "b2", + "comment(s)": "Demolisher(Draenei)", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.34, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ncat", + "sortUI": "z2", + "fileVerFlags": 2, + "tilesetSpecific": "0", + "name": "demolisherdraenei", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncat", + "sortBalance": "b2", + "sort2": "art", + "level": 2, + "type": "Mechanical", + "goldcost": 220, + "lumbercost": 50, + "goldRep": 220, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 425, + "realHP": 425, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 36, + "reptm": 36, + "sight": 1400, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rora,Robf,Rguv", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ncat", + "sortWeap": "b2", + "weapsOn": 3, + "acquire": 1150, + "minRange": 250, + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,debris,tree,wall,item,ward", + "rangeN1": 1150, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 4.5, + "mincool1": "-", + "dice1": 3, + "sides1": 21, + "dmgplus1": 81, + "dmgUp1": "-", + "mindmg1": 84, + "avgdmg1": 114, + "maxdmg1": 144, + "dmgpt1": 0.1, + "backSw1": 1.9, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 150, + "Hfact1": 0.4, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,tree,wall,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 59, + "DPS": 25.3333333333333, + "targs2": "structure", + "rangeN2": 1000, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 4.5, + "mincool2": "-", + "dice2": 1, + "sides2": 21, + "dmgplus2": 81, + "dmgUp2": "-", + "mindmg2": 82, + "avgdmg2": 92, + "maxdmg2": 102, + "dmgpt2": 0.1, + "backSw2": 1.9, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncat", + "sortAbil": "b2", + "auto": "_", + "abilList": "Abof", + "Buttonpos": "0,0", + "Missileart": "abilities\\weapons\\catapult\\catapultmissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "900", + "MovementSoundLabel": "OrcCatapultMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiDemolisher.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCatapult.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abof", + "skinnableID": "ncat", + "file:hd": "Units\\Creeps\\DraeneiDemolisher\\DraeneiDemolisher", + "file:sd": "units\\orc\\catapult\\catapult", + "portrait:sd": "units\\orc\\catapult\\catapult", + "portrait:hd": "Units\\Creeps\\DraeneiDemolisher\\DraeneiDemolisher_portrait", + "fileVerFlags:hd": "0", + "fileVerFlags:sd": "2", + "unitSound": "Catapult", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "2.75", + "legacyScale": "2.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "220", + "run:sd": "150", + "run:hd": "220", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "280", + "shadowH": "280", + "shadowX": "110", + "shadowY": "110", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsw1": { + "unitID": "nsw1", + "sort": "b2", + "comment(s)": "spirit beast level 1", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nsw1", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritbeast", + "unitClass": "felstalkersum", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsw1", + "sortBalance": "b2", + "sort2": "sum", + "level": 2, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 200, + "realHP": 200, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nsw1", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 11.5, + "maxdmg1": 12, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 11.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsw1", + "sortAbil": "b2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLesserSpiritBeast.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "skinType": "unit", + "skinnableID": "nsw1", + "file:hd": "Units\\Creeps\\SpiritBeastLesser\\SpiritBeastLesser", + "file:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple", + "unitSound": "Felhound", + "blend": "0.15", + "scale:hd": "2.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple_portrait", + "portrait:hd": "Units\\Creeps\\SpiritBeastLesser\\SpiritBeastLesser_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nsw2": { + "unitID": "nsw2", + "sort": "b2", + "comment(s)": "spirit beast level 2", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nsw2", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritbeast2", + "unitClass": "felstalkersum", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsw2", + "sortBalance": "b2", + "sort2": "sum", + "level": 3, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsw2", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 16.5, + "maxdmg1": 17, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 16.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsw2", + "sortAbil": "b2", + "auto": "_", + "abilList": "Afbb", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSpiritBeast.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "skinType": "unit", + "abilSkinList": "Afbb", + "skinnableID": "nsw2", + "file:hd": "Units\\Creeps\\SpiritBeast\\SpiritBeast", + "file:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple", + "unitSound": "Felhound", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "1.7", + "legacyScale": "1.7", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple_portrait", + "portrait:hd": "Units\\Creeps\\SpiritBeast\\SpiritBeast_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nsw3": { + "unitID": "nsw3", + "sort": "b2", + "comment(s)": "spirit beast level 3", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nsw3", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritbeast3", + "unitClass": "felstalkersum", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsw3", + "sortBalance": "b2", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 400, + "realHP": 400, + "regenHP": 0.25, + "regenType": "always", + "manaN": 150, + "realM": 150, + "mana0": 150, + "regenMana": 0.375, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsw3", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 21.5, + "maxdmg1": 22, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 21.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsw3", + "sortAbil": "b2", + "auto": "_", + "abilList": "Afbb,Ambb", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGreaterSpiritBeast.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "skinType": "unit", + "abilSkinList": "Afbb,Ambb", + "skinnableID": "nsw3", + "file:hd": "Units\\Creeps\\SpiritBeastGreater\\SpiritBeastGreater", + "file:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple", + "unitSound": "Felhound", + "blend": "0.15", + "scale:hd": "3.9", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "220", + "green:hd": "255", + "green:sd": "220", + "blue:hd": "255", + "blue:sd": "220", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple_portrait", + "portrait:hd": "Units\\Creeps\\SpiritBeastGreater\\SpiritBeastGreater_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nwad": { + "unitID": "nwad", + "sort": "b2", + "comment(s)": "WatcherWard", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nwad", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "watcherward", + "unitClass": "OUnit12", + "special": "1", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwad", + "sortBalance": "b2", + "sort2": "zz", + "level": "-", + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 50, + "realHP": 50, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 1200, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nwad", + "sortWeap": "b2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwad", + "sortAbil": "b2", + "auto": "_", + "abilList": "Adt1,Aeth,Avul", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWatcherWard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp", + "skinType": "unit", + "abilSkinList": "Adt1,Aeth,Avul", + "skinnableID": "nwad", + "file": "units\\orc\\WatcherWard\\WatcherWard", + "portrait:sd": "units\\orc\\WatcherWard\\WatcherWard", + "portrait:hd": "units\\orc\\WatcherWard\\WatcherWard_portrait", + "unitSound": "SentryWard", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "obot": { + "unitID": "obot", + "sort": "b2", + "comment(s)": "orcish transport", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "obot", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "orcishtransportship", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "obot", + "sortBalance": "b2", + "sort2": "zz", + "level": 2, + "type": "Mechanical", + "goldcost": 170, + "lumbercost": 50, + "goldRep": 170, + "lumberRep": 50, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "obot", + "sortWeap": "b2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "obot", + "sortAbil": "b2", + "auto": "_", + "abilList": "Sch5,Slo3,Sdro", + "Buttonpos": "0,0", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcishTransport.blp", + "skinType": "unit", + "abilSkinList": "Sch5,Slo3,Sdro", + "skinnableID": "obot", + "file": "units\\creeps\\OrcishTransportShip\\OrcishTransportShip", + "portrait:sd": "units\\creeps\\OrcishTransportShip\\OrcishTransportShip", + "portrait:hd": "units\\creeps\\OrcishTransportShip\\OrcishTransportShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ocat": { + "unitID": "ocat", + "sort": "b2", + "comment(s)": "Demolisher", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.34, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ocat", + "sortUI": "b2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "demolisher", + "unitClass": "OUnit06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ocat", + "sortBalance": "b2", + "sort2": "art", + "level": 2, + "type": "Mechanical", + "goldcost": 220, + "lumbercost": 50, + "goldRep": 220, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 425, + "realHP": 425, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rora,Robf,Rolf,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ocat", + "sortWeap": "b2", + "weapsOn": 3, + "acquire": 1150, + "minRange": 250, + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,debris,tree,wall,item,ward", + "rangeN1": 1150, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 4.5, + "mincool1": "-", + "dice1": 1, + "sides1": 18, + "dmgplus1": 71, + "dmgUp1": "-", + "mindmg1": 72, + "avgdmg1": 80.5, + "maxdmg1": 89, + "dmgpt1": 0.1, + "backSw1": 1.9, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 150, + "Hfact1": 0.4, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,tree,wall,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 70, + "DPS": 17.8888888888889, + "targs2": "structure", + "rangeN2": 1150, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 4.5, + "mincool2": "-", + "dice2": 1, + "sides2": 18, + "dmgplus2": 71, + "dmgUp2": "-", + "mindmg2": 72, + "avgdmg2": 80.5, + "maxdmg2": 89, + "dmgpt2": 0.1, + "backSw2": 1.9, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "structure", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ocat", + "sortAbil": "b2", + "auto": "_", + "abilList": "Abof", + "Requires": "ofor,ostr", + "Buttonpos": "0,0", + "Missileart": "abilities\\weapons\\DemolisherMissile\\DemolisherMissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDemolisher.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abof", + "skinnableID": "ocat", + "file": "units\\orc\\catapult\\catapult", + "portrait:sd": "units\\orc\\catapult\\catapult", + "portrait:hd": "units\\orc\\catapult\\catapult_portrait", + "unitSound": "Catapult", + "blend": "0.15", + "scale": "2.75", + "legacyScale": "2.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "185", + "walk:hd": "220", + "run:sd": "185", + "run:hd": "220", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "280", + "shadowH": "280", + "shadowX": "110", + "shadowY": "110", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "odes": { + "unitID": "odes", + "sort": "b2", + "comment(s)": "orcish destroyer", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.2, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "odes", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "orcishdestroyer", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "odes", + "sortBalance": "b2", + "sort2": "zz", + "level": 4, + "type": "Mechanical", + "goldcost": 250, + "lumbercost": 100, + "goldRep": 250, + "lumberRep": 100, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 60, + "stockStart": 0, + "HP": 575, + "realHP": 575, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1500, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "odes", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 15, + "dmgplus1": 54, + "dmgUp1": "-", + "mindmg1": 55, + "avgdmg1": 62, + "maxdmg1": 69, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 25, + "Harea1": 35, + "Qarea1": 50, + "Hfact1": 0.3, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 59, + "DPS": 41.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "odes", + "sortAbil": "b2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\BoatMissile\\BoatMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcDestroyer.blp", + "skinType": "unit", + "skinnableID": "odes", + "file": "units\\creeps\\OrcishDestroyerShip\\OrcishDestroyerShip", + "portrait:sd": "units\\creeps\\OrcishDestroyerShip\\OrcishDestroyerShip", + "portrait:hd": "units\\creeps\\OrcishDestroyerShip\\OrcishDestroyerShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "odoc": { + "unitID": "odoc", + "sort": "b2", + "comment(s)": "WitchDoctor", + "race": "orc", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.97, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "odoc", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "witchdoctor", + "unitClass": "OUnit10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "odoc", + "sortBalance": "b2", + "sort2": "cas", + "level": 2, + "type": "_", + "goldcost": 145, + "lumbercost": 25, + "goldRep": 145, + "lumberRep": 25, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 315, + "realHP": 315, + "regenHP": 0.25, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.72, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rowd,Rotr,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "odoc", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.35, + "castbsw": 0.52, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 12, + "maxdmg1": 14, + "dmgpt1": 0.73, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 6.85714285714286, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "odoc", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aeye,Ahwd,Asta,Aion,Aotr", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\WitchDoctorMissile\\WitchDoctorMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-witchdoctor.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWitchDoctor.blp", + "skinType": "unit", + "abilSkinList": "Aeye,Ahwd,Asta,Aion,Aotr", + "abilSkinList:melee,V0": "Aeye,Ahwd,Asta", + "abilSkinList:custom,V0": "Aeye,Ahwd,Asta", + "abilSkinList:custom,V1": "Aeye,Ahwd,Asta,Aion", + "skinnableID": "odoc", + "file": "units\\orc\\WitchDoctor\\WitchDoctor", + "unitSound": "WitchDoctor", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "40", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "160", + "addon": "Units" + }, + "oeye": { + "unitID": "oeye", + "sort": "b2", + "comment(s)": "SentryWard", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "oeye", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sentryward", + "unitClass": "OUnit12", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "oeye", + "sortBalance": "b2", + "sort2": "zz", + "level": "-", + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 50, + "realHP": 50, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 1200, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "oeye", + "sortWeap": "b2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "oeye", + "sortAbil": "b2", + "auto": "_", + "abilList": "Adt1,Aeth,ACmi", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp", + "skinType": "unit", + "abilSkinList": "Adt1,Aeth", + "skinnableID": "oeye", + "file": "units\\orc\\SentryWard\\SentryWard", + "portrait:sd": "units\\orc\\SentryWard\\SentryWard", + "portrait:hd": "units\\orc\\SentryWard\\SentryWard_portrait", + "unitSound": "SentryWard", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ogru": { + "unitID": "ogru", + "sort": "b2", + "comment(s)": "Grunt", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ogru", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "grunt", + "unitClass": "OUnit02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ogru", + "sortBalance": "b2", + "sort2": "me1", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 0, + "goldRep": 200, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Robs,Ropg,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ogru", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 12.1875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ogru", + "sortAbil": "b2", + "auto": "_", + "abilList": "Asal,Aion,Aobs", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrunt.blp", + "skinType": "unit", + "abilSkinList": "Asal,Aion,Aobs", + "abilSkinList:melee,V0": "Asal", + "abilSkinList:custom,V0": "Asal", + "abilSkinList:custom,V1": "Asal,Aion", + "skinnableID": "ogru", + "file": "units\\orc\\Grunt\\Grunt", + "unitSound": "Grunt", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ohun": { + "unitID": "ohun", + "sort": "b2", + "comment(s)": "HeadHunter", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ohun", + "sortUI": "b2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "headhunter", + "unitClass": "OUnit05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ohun", + "sortBalance": "b2", + "sort2": "ran", + "level": 2, + "type": "_", + "goldcost": 140, + "lumbercost": 20, + "goldRep": 135, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 375, + "realHP": 375, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rora,Rotr,Ropm,Robk,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ohun", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2.31, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.31, + "backSw1": 0.86, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 10.8225108225108, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ohun", + "sortAbil": "b2", + "auto": "_", + "abilList": "Sbsk,Aion,Absk,Aobk,Aotr", + "DependencyOr": "otbk", + "Requires": "ofor", + "Buttonpos": "1,0", + "Missileart": "abilities\\weapons\\huntermissile\\huntermissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeadhunter.blp", + "skinType": "unit", + "abilSkinList": "Sbsk,Aion,Absk,Aobk,Aotr", + "abilSkinList:custom,V1": "Sbsk,Aion", + "skinnableID": "ohun", + "file": "units\\orc\\HeadHunter\\HeadHunter", + "unitSound": "HeadHunter", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "113", + "launchZ:hd": "130", + "projectileVisOffsetX:hd": "-50", + "projectileVisOffsetY:hd": "10", + "addon": "Units" + }, + "ohwd": { + "unitID": "ohwd", + "sort": "b2", + "comment(s)": "Healing Ward", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ohwd", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "healingward", + "unitClass": "OUnit17", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ohwd", + "sortBalance": "b2", + "sort2": "zz", + "level": "-", + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 5, + "realHP": 5, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ohwd", + "sortWeap": "b2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ohwd", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aoar,ACmi", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp", + "skinType": "unit", + "abilSkinList": "Aoar", + "skinnableID": "ohwd", + "file": "units\\orc\\HealingWard\\HealingWard", + "portrait:sd": "units\\orc\\HealingWard\\HealingWard", + "portrait:hd": "units\\orc\\HealingWard\\HealingWard_portrait", + "unitSound": "HealingWard", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.4", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "okod": { + "unitID": "okod", + "sort": "b2", + "comment(s)": "KodoBeast", + "race": "orc", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 2, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "okod", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kotobeast", + "unitClass": "OUnit07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "okod", + "sortBalance": "b2", + "sort2": "xx", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 60, + "goldRep": 255, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1000, + "realHP": 1000, + "regenHP": 0.25, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "none", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rwdm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "okod", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.44, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 18, + "maxdmg1": 20, + "dmgpt1": 0.85, + "backSw1": 0.32, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 12.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "okod", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aakb,Advc,Adev,Apak", + "Requires": "ofor", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKotoBeast.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Aakb,Advc,Adev,Apak", + "abilSkinList:melee,V0": "Aakb,Advc,Adev", + "abilSkinList:custom,V0": "Aakb,Advc,Adev", + "skinnableID": "okod", + "file": "units\\orc\\KotoBeast\\KotoBeast", + "unitSound": "KotoBeast", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "79", + "run:sd": "240", + "run:hd": "309", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "310", + "shadowH": "280", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "150", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "125", + "addon": "Units" + }, + "opeo": { + "unitID": "opeo", + "sort": "b2", + "comment(s)": "Peon", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "opeo", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "peon", + "unitClass": "OUnit01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "opeo", + "sortBalance": "b2", + "sort2": "peo", + "level": 1, + "type": "Peon", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 250, + "realHP": 250, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ropg,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "opeo", + "sortWeap": "b2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 3, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 7.5, + "maxdmg1": 8, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 2.5, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "opeo", + "sortAbil": "b2", + "auto": "_", + "abilList": "Ahar,Arep,Asal", + "Builds": "ogre,otrb,orbr,obar,ofor,oalt,obea,osld,otto,owtw,ovln", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPeon.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Arep,Asal", + "skinnableID": "opeo", + "file": "units\\orc\\Peon\\Peon", + "unitSound": "Peon", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "190", + "run:sd": "180", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "45", + "weapType1": "MetalLightChop", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "orai": { + "unitID": "orai", + "sort": "b2", + "comment(s)": "WolfRider", + "race": "orc", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.87, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "orai", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wolfrider", + "unitClass": "OUnit03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "orai", + "sortBalance": "b2", + "sort2": "me1", + "level": 3, + "type": "_", + "goldcost": 180, + "lumbercost": 40, + "goldRep": 180, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 610, + "realHP": 610, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Roen,Ropg,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "orai", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "normal", + "cool1": 1.85, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.5135135135135, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "orai", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aens,Asal,Aion", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaider.blp", + "skinType": "unit", + "abilSkinList": "Aens,Asal,Aion", + "abilSkinList:melee,V0": "Aens,Asal", + "abilSkinList:custom,V0": "Aens,Asal", + "skinnableID": "orai", + "file": "units\\orc\\WolfRider\\WolfRider", + "unitSound": "WolfRider", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "360", + "walk:hd": "350", + "run:sd": "360", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "oshm": { + "unitID": "oshm", + "sort": "b2", + "comment(s)": "Shaman", + "race": "orc", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.37, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "oshm", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "shaman", + "unitClass": "OUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "oshm", + "sortBalance": "b2", + "sort2": "cas", + "level": 2, + "type": "_", + "goldcost": 130, + "lumbercost": 20, + "goldRep": 130, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 350, + "realHP": 350, + "regenHP": 0.25, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.72, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rost,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "oshm", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.6, + "castbsw": 1.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.43, + "backSw1": 0.74, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "oshm", + "sortAbil": "b2", + "auto": "Ablo", + "abilList": "Ablo,Alsh,Apg2,Aion", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-shaman.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShaman.blp", + "skinType": "unit", + "abilSkinList": "Ablo,Alsh,Apg2,Aion", + "abilSkinList:melee,V0": "Ablo,Alsh,Aprg", + "abilSkinList:custom,V0": "Ablo,Alsh,Aprg", + "abilSkinList:custom,V1": "Ablo,Alsh,Aprg,Aion", + "skinnableID": "oshm", + "file": "units\\orc\\Shaman\\Shaman", + "unitSound": "Shaman", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "275", + "walk:hd": "270", + "run:sd": "275", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "150", + "shadowH": "150", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "80", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "25", + "addon": "Units" + }, + "osp1": { + "unitID": "osp1", + "sort": "b2", + "comment(s)": "Serpent Ward 1", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "osp1", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "serpentward1", + "unitClass": "OUnit21", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osp1", + "sortBalance": "b2", + "sort2": "sum", + "level": 1, + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 90, + "realHP": 90, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "osp1", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 15, + "maxdmg1": 16, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 10, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osp1", + "sortAbil": "b2", + "auto": "_", + "abilList": "ACmi", + "Missileart": "Abilities\\Weapons\\SerpentWardMissile\\SerpentWardMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "osp1", + "file": "units\\orc\\SerpentWard\\SerpentWard", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "225", + "launchZ:hd": "200", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "osp2": { + "unitID": "osp2", + "sort": "b2", + "comment(s)": "Serpent Ward 2", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "osp2", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "serpentward2", + "unitClass": "OUnit22", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osp2", + "sortBalance": "b2", + "sort2": "sum", + "level": 3, + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 165, + "realHP": 165, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "osp2", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 28.5, + "maxdmg1": 30, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 19, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osp2", + "sortAbil": "b2", + "auto": "_", + "abilList": "ACmi", + "Missileart": "Abilities\\Weapons\\SerpentWardMissile\\SerpentWardMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSerpentWardLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "osp2", + "file:hd": "Units\\Orc\\SerpentWardLvl2\\SerpentWardLvl2", + "file:sd": "units\\orc\\SerpentWard\\SerpentWard", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "portrait:sd": "units\\orc\\SerpentWard\\SerpentWard_portrait", + "portrait:hd": "Units\\Orc\\SerpentWardLvl2\\SerpentWardLvl2_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "225", + "launchZ:hd": "200", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "osp3": { + "unitID": "osp3", + "sort": "b2", + "comment(s)": "Serpent Ward 3", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "osp3", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "serpentward3", + "unitClass": "OUnit23", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osp3", + "sortBalance": "b2", + "sort2": "sum", + "level": 4, + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 200, + "realHP": 200, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "osp3", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 46, + "avgdmg1": 48, + "maxdmg1": 50, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 32, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osp3", + "sortAbil": "b2", + "auto": "_", + "abilList": "ACmi", + "Missileart": "Abilities\\Weapons\\SerpentWardMissile\\SerpentWardMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSerpentWardLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "osp3", + "file:hd": "Units\\Orc\\SerpentWardLvl3\\SerpentWardLvl3", + "file:sd": "units\\orc\\SerpentWard\\SerpentWard", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "portrait:sd": "units\\orc\\SerpentWard\\SerpentWard_portrait", + "portrait:hd": "Units\\Orc\\SerpentWardLvl3\\SerpentWardLvl3_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "225", + "launchZ:hd": "200", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "osp4": { + "unitID": "osp4", + "sort": "b2", + "comment(s)": "Serpent Ward 4", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "osp4", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "serpentward4", + "unitClass": "OUnit23", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osp4", + "sortBalance": "b2", + "sort2": "sum", + "level": 4, + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 135, + "realHP": 135, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "osp4", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 43, + "maxdmg1": 45, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": 50, + "Harea1": 75, + "Qarea1": 150, + "Hfact1": 0.4, + "Qfact1": 0.2, + "splashTargs1": "ground,air,structure,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 28.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osp4", + "sortAbil": "b2", + "auto": "_", + "abilList": "ACmi", + "Missileart": "Abilities\\Weapons\\SerpentWardMissile\\SerpentWardMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSerpentWardLV4.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "osp4", + "file:hd": "Units\\Orc\\SerpentWardLvl4\\SerpentWardLvl4", + "file:sd": "units\\orc\\SerpentWard\\SerpentWard", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "portrait:sd": "units\\orc\\SerpentWard\\SerpentWard_portrait", + "portrait:hd": "Units\\Orc\\SerpentWardLvl4\\SerpentWardLvl4_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "225", + "launchZ:hd": "200", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ospm": { + "unitID": "ospm", + "sort": "b2", + "comment(s)": "spiritwalkermorph", + "race": "orc", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 0, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ospm", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritwalkermorph", + "unitClass": "OUnit25", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ospm", + "sortBalance": "b2", + "sort2": "cas", + "level": 3, + "type": "Tauren", + "goldcost": 195, + "lumbercost": 35, + "goldRep": 195, + "lumberRep": 35, + "fmade": " - ", + "fused": 3, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 100, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rowt,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ospm", + "sortWeap": "b2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0.68, + "castbsw": 0.59, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ospm", + "sortAbil": "b2", + "auto": "_", + "abilList": "Acpf,Aspl,Adcn,Aast,Aion,ACsk", + "Attachmentanimprops": "medium", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\SorceressMissile\\SorceressMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-spiritwalker.blp", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSpiritWalkerEthereal.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpiritWalker.blp", + "skinType": "unit", + "abilSkinList": "Acpf,Aspl,Adcn,Aast,Aion,ACsk", + "abilSkinList:custom,V1": "Acpf,Aspl,Adcn,Aast,Aion", + "skinnableID": "ospm", + "file": "units\\orc\\spiritwalker\\spiritwalker", + "unitSound": "SpiritWalker", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "275", + "walk:hd": "270", + "run:sd": "275", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ospw": { + "unitID": "ospw", + "sort": "b2", + "comment(s)": "spiritwalker", + "race": "orc", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ospw", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritwalker", + "unitClass": "OUnit24", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ospw", + "sortBalance": "b2", + "sort2": "cas", + "level": 3, + "type": "Tauren", + "goldcost": 195, + "lumbercost": 35, + "goldRep": 195, + "lumberRep": 35, + "fmade": " - ", + "fused": 3, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 100, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rowt,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ospw", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.68, + "castbsw": 0.59, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 19.5, + "maxdmg1": 22, + "dmgpt1": 0.5, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 26, + "DPS": 11.1428571428571, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ospw", + "sortAbil": "b2", + "auto": "_", + "abilList": "Acpf,Aspl,Adcn,Aast,Aion,ACsk", + "Attachmentanimprops": "medium", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\SorceressMissile\\SorceressMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-spiritwalker.blp", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWalker.blp", + "skinType": "unit", + "abilSkinList": "Acpf,Aspl,Adcn,Aast,Aion,ACsk", + "abilSkinList:custom,V1": "Acpf,Aspl,Adcn,Aast,Aion", + "skinnableID": "ospw", + "file": "units\\orc\\spiritwalker\\spiritwalker", + "unitSound": "SpiritWalker", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "110", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "110", + "addon": "Units" + }, + "osw1": { + "unitID": "osw1", + "sort": "b2", + "comment(s)": "spirit wolf level 1", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "osw1", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritwolf1", + "unitClass": "OUnit14", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osw1", + "sortBalance": "b2", + "sort2": "sum", + "level": 2, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 250, + "realHP": 250, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "osw1", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 11.5, + "maxdmg1": 12, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 11.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osw1", + "sortAbil": "b2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "skinType": "unit", + "skinnableID": "osw1", + "file": "units\\orc\\Spiritwolf\\Spiritwolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "1.35", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "osw2": { + "unitID": "osw2", + "sort": "b2", + "comment(s)": "spirit wolf level 2", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "osw2", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritwolf2", + "unitClass": "OUnit15", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osw2", + "sortBalance": "b2", + "sort2": "sum", + "level": 3, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 350, + "realHP": 350, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "osw2", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 16.5, + "maxdmg1": 17, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 16.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osw2", + "sortAbil": "b2", + "auto": "_", + "abilList": "ACct", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDireWolfLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "skinType": "unit", + "abilSkinList": "ACct", + "abilSkinList:custom,V1": "ACct,Asal", + "skinnableID": "osw2", + "file:hd": "Units\\Orc\\OrcDireWolf\\OrcDireWolf", + "file:sd": "units\\orc\\Spiritwolf\\Spiritwolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.775", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\orc\\Spiritwolf\\Spiritwolf_portrait", + "portrait:hd": "Units\\Orc\\OrcDireWolf\\OrcDireWolf_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "osw3": { + "unitID": "osw3", + "sort": "b2", + "comment(s)": "spirit wolf level 3", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "osw3", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritwolf3", + "unitClass": "OUnit16", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osw3", + "sortBalance": "b2", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "osw3", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 21.5, + "maxdmg1": 22, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 21.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osw3", + "sortAbil": "b2", + "auto": "_", + "abilList": "ACct,Apiv", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNShadowWolfLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "skinType": "unit", + "abilSkinList": "ACct,Apiv", + "abilSkinList:custom,V1": "ACct,Apiv,Asal", + "skinnableID": "osw3", + "file:hd": "Units\\Orc\\ShadowWolf\\ShadowWolf", + "file:sd": "units\\orc\\Spiritwolf\\Spiritwolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "1.85", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": ".9", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\orc\\Spiritwolf\\Spiritwolf_portrait", + "portrait:hd": "Units\\Orc\\ShadowWolf\\ShadowWolf_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "otau": { + "unitID": "otau", + "sort": "b2", + "comment(s)": "Tauren", + "race": "orc", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.14, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "otau", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tauren", + "unitClass": "OUnit04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "otau", + "sortBalance": "b2", + "sort2": "me2", + "level": 5, + "type": "Tauren", + "goldcost": 300, + "lumbercost": 100, + "goldRep": 300, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1300, + "realHP": 1300, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 39, + "reptm": 39, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Rows,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "otau", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.68, + "castbsw": 0.59, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.9, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 29, + "dmgUp1": "-", + "mindmg1": 30, + "avgdmg1": 33, + "maxdmg1": 36, + "dmgpt1": 0.467, + "backSw1": 0.863, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 17.3684210526316, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "otau", + "sortAbil": "b2", + "auto": "_", + "abilList": "Awar,Aion,ACsk", + "Requires": "ofor,ofrt", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTauren.blp", + "skinType": "unit", + "abilSkinList": "Awar,Aion", + "abilSkinList:melee,V0": "Awar", + "abilSkinList:custom,V0": "Awar", + "abilSkinList:custom,V1": "Awar,Aion,Asal", + "skinnableID": "otau", + "file": "units\\orc\\Tauren\\Tauren", + "unitSound": "Tauren", + "blend": "0.3", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "otbk": { + "unitID": "otbk", + "sort": "b2", + "comment(s)": "Berserker", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "otbk", + "sortUI": "b2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "berserker", + "unitClass": "OUnit26", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "otbk", + "sortBalance": "b2", + "sort2": "ran", + "level": 2, + "type": "_", + "goldcost": 140, + "lumbercost": 20, + "goldRep": 135, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 475, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rora,Rotr,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "otbk", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2.31, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.31, + "backSw1": 0.86, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 10.8225108225108, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "otbk", + "sortAbil": "b2", + "auto": "_", + "abilList": "Absk,Aion,Aobk,Aotr", + "Requires": "ofor", + "Buttonpos": "1,0", + "Missileart": "abilities\\weapons\\huntermissile\\huntermissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Attachmentlinkprops": "alternate", + "Boneprops": "alternate", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Animprops": "alternate", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeadHunterBerserker.blp", + "skinType": "unit", + "abilSkinList": "Absk,Aion,Aobk,Aotr", + "abilSkinList:custom,V1": "Absk,Aion", + "skinnableID": "otbk", + "file": "units\\orc\\HeadHunter\\HeadHunter", + "unitSound": "HeadHunter", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "113", + "launchZ:hd": "150", + "projectileVisOffsetX:hd": "20", + "projectileVisOffsetY:hd": "0", + "addon": "Units" + }, + "otbr": { + "unitID": "otbr", + "sort": "b2", + "comment(s)": "Troll Batrider", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "otbr", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "trollbatrider", + "unitClass": "OUnit09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "otbr", + "sortBalance": "b2", + "sort2": "fly1", + "level": 2, + "type": "_", + "goldcost": 160, + "lumbercost": 40, + "goldRep": 160, + "lumberRep": 40, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 325, + "realHP": 325, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 1400, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rora,Rguv,Rotr", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "otbr", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 1000, + "minRange": "-", + "castpt": 0, + "castbsw": 0, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 17, + "maxdmg1": 18, + "dmgpt1": 0.6, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.44444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "otbr", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aliq,Auco,Aotr", + "Requires": "ovln", + "Buttonpos": "3,0", + "Missileart": "Abilities\\Weapons\\BatTrollMissile\\BatTrollMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTrollBatRider.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Aliq,Auco,Aotr", + "abilSkinList:custom,V1": "Aliq,Auco", + "skinnableID": "otbr", + "file": "units\\orc\\BatTroll\\BatTroll", + "unitSound": "TrollBatrider", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "20", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "51", + "addon": "Units" + }, + "otot": { + "unitID": "otot", + "sort": "b2", + "comment(s)": "StasisTrapward", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "otot", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stasistraptotem", + "unitClass": "OUnit13", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "otot", + "sortBalance": "b2", + "sort2": "zz", + "level": "-", + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 25, + "realHP": 25, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "otot", + "sortWeap": "b2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "otot", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aeth,ACmi", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStasisTrap.blp", + "skinType": "unit", + "abilSkinList": "Aeth", + "skinnableID": "otot", + "file": "units\\orc\\StasisTotem\\StasisTotem", + "portrait:sd": "units\\orc\\StasisTotem\\StasisTotem", + "portrait:hd": "units\\orc\\StasisTotem\\StasisTotem_portrait", + "unitSound": "StasisTotem", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "owyv": { + "unitID": "owyv", + "sort": "b2", + "comment(s)": "Wind Rider", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.1, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "owyv", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "windrider", + "unitClass": "OUnit08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "owyv", + "sortBalance": "b2", + "sort2": "fly2", + "level": 3, + "type": "_", + "goldcost": 265, + "lumbercost": 40, + "goldRep": 265, + "lumberRep": 40, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 570, + "realHP": 570, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 310, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rora,Rovs,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "owyv", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 34, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 40, + "maxdmg1": 44, + "dmgpt1": 0.6, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 20, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "owyv", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aven", + "Buttonpos": "1,0", + "Missileart": "abilities\\weapons\\WyvernSpear\\WyvernSpearMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWyvernRider.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Aven", + "skinnableID": "owyv", + "file": "units\\orc\\WyvernRider\\WyvernRider", + "unitSound": "WyvernRider", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "0", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "20", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "51", + "launchZ:hd": "50", + "projectileVisOffsetX:hd": "-25", + "projectileVisOffsetY:hd": "-5", + "addon": "Units" + }, + "oalt": { + "unitID": "oalt", + "sort": "b3", + "comment(s)": "AltarofStorms", + "race": "orc", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\10x10Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "oalt", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "altarofstorms", + "unitClass": "OBuilding04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "oalt", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 180, + "lumbercost": 50, + "goldRep": 180, + "lumberRep": 50, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 0, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "oalt", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "oalt", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aspi", + "Attachmentanimprops": "medium", + "Trains": "Obla,Ofar,Otch,Oshd", + "Buttonpos": "1,1", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Revive": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfStorms.blp", + "buildingShadow": "ShadowAltarofStorms", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi", + "uberSplat": "OMED", + "skinnableID": "oalt", + "file": "buildings\\orc\\AltarofStorms\\AltarofStorms", + "portrait:sd": "buildings\\orc\\AltarofStorms\\AltarofStorms", + "portrait:hd": "buildings\\orc\\AltarofStorms\\AltarofStorms_portrait", + "unitSound": "AltarofStorms", + "blend": "0.15", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "obar": { + "unitID": "obar", + "sort": "b3", + "comment(s)": "Barracks", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "obar", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "orcbarracks", + "unitClass": "OBuilding05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "obar", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 180, + "lumbercost": 50, + "goldRep": 180, + "lumberRep": 50, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "obar", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "obar", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aspi", + "Attachmentanimprops": "medium", + "Trains": "ogru,ohun,otbk,ocat", + "Buttonpos": "1,0", + "Researches": "Robs,Rotr,Robk,Robf", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBarracks.blp", + "buildingShadow": "ShadowOrcBarracks", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi", + "uberSplat": "OMED", + "skinnableID": "obar", + "file": "buildings\\orc\\OrcBarracks\\OrcBarracks", + "portrait:sd": "buildings\\orc\\OrcBarracks\\OrcBarracks", + "portrait:hd": "buildings\\orc\\OrcBarracks\\OrcBarracks_portrait", + "unitSound": "OrcBarracks", + "blend": "0.15", + "scale:hd": "4.75", + "scale:sd": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "obea": { + "unitID": "obea", + "sort": "b3", + "comment(s)": "Beastiary", + "race": "orc", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "obea", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "beastiary", + "unitClass": "OBuilding09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "obea", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 145, + "lumbercost": 140, + "goldRep": 145, + "lumberRep": 140, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1100, + "realHP": 1100, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "obea", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "obea", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aspi", + "Attachmentanimprops": "medium", + "Requires": "ostr", + "Trains": "orai,okod,owyv,otbr", + "Buttonpos": "3,1", + "Researches": "Roen,Rovs,Rwdm,Rolf", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBeastiary.blp", + "buildingShadow": "ShadowBeastiary", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi", + "uberSplat": "OMED", + "skinnableID": "obea", + "file": "buildings\\orc\\Beastiary\\Beastiary", + "portrait:sd": "buildings\\orc\\Beastiary\\Beastiary", + "portrait:hd": "buildings\\orc\\Beastiary\\Beastiary_portrait", + "unitSound": "Beastiary", + "blend": "0.15", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ofor": { + "unitID": "ofor", + "sort": "b3", + "comment(s)": "Forge", + "race": "orc", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ofor", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "warmill", + "unitClass": "OBuilding06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ofor", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 205, + "lumbercost": 0, + "goldRep": 205, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1000, + "realHP": 1000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "ofor", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ofor", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aspi,Arlm", + "Attachmentanimprops": "medium", + "Buttonpos": "2,0", + "Researches": "Rome,Roar,Rora,Rosp,Rorb", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNForge.blp", + "buildingShadow": "ShadowForge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi,Arlm", + "uberSplat": "OMED", + "skinnableID": "ofor", + "file": "buildings\\orc\\WarMill\\WarMill", + "portrait:sd": "buildings\\orc\\WarMill\\WarMill", + "portrait:hd": "buildings\\orc\\WarMill\\WarMill_portrait", + "unitSound": "WarMill", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ofrt": { + "unitID": "ofrt", + "sort": "b3", + "comment(s)": "Fortress", + "race": "orc", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ofrt", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "fortress", + "unitClass": "OBuilding03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ofrt", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 1025, + "lumbercost": 565, + "goldRep": 1025, + "lumberRep": 565, + "fmade": 11, + "fused": " - ", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2500, + "realHP": 2500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 120, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 176, + "stockInitial": "-", + "unitWeaponID": "ofrt", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ofrt", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abdl,Aspi,Argl,Aosp", + "Attachmentanimprops": "large", + "Requires": "oalt", + "Trains": "opeo", + "Researches": "Ropg,Ropm", + "Buttonpos": "0,2", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "upgrade,second", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFortress.blp", + "buildingShadow": "ShadowFortress", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abdl,Aspi,Argl,Aosp", + "abilSkinList:melee,V0": "Abdl,Aspi,Argl", + "abilSkinList:custom,V0": "Abdl,Aspi,Argl", + "abilSkinList:custom,V1": "Abdl,Aspi,Argl", + "uberSplat": "OLAR", + "skinnableID": "ofrt", + "file": "buildings\\orc\\GreatHall\\GreatHall", + "portrait:sd": "buildings\\orc\\GreatHall\\GreatHall", + "portrait:hd": "buildings\\orc\\GreatHall\\GreatHall_portrait", + "unitSound": "Fortress", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ogre": { + "unitID": "ogre", + "sort": "b3", + "comment(s)": "GreatHall", + "race": "orc", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ogre", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "greathall", + "unitClass": "OBuilding01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ogre", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 385, + "lumbercost": 185, + "goldRep": 385, + "lumberRep": 185, + "fmade": 11, + "fused": " - ", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 135, + "reptm": 125, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 176, + "stockInitial": "-", + "unitWeaponID": "ogre", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ogre", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abdl,Aspi,Argl,Aosp", + "Attachmentanimprops": "large", + "Upgrade": "ostr", + "Trains": "opeo", + "Researches": "Ropg,Ropm", + "Buttonpos": "0,0", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreathall.blp", + "buildingShadow": "ShadowGreatHall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abdl,Aspi,Argl,Aosp", + "abilSkinList:melee,V0": "Abdl,Aspi,Argl", + "abilSkinList:custom,V0": "Abdl,Aspi,Argl", + "abilSkinList:custom,V1": "Abdl,Aspi,Argl", + "uberSplat": "OLAR", + "skinnableID": "ogre", + "file": "buildings\\orc\\GreatHall\\GreatHall", + "portrait:sd": "buildings\\orc\\GreatHall\\GreatHall", + "portrait:hd": "buildings\\orc\\GreatHall\\GreatHall_portrait", + "unitSound": "GreatHall", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "oshy": { + "unitID": "oshy", + "sort": "b3", + "comment(s)": "orc shipyard", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 384, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "oshy", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "orcshipyard", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "oshy", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "oshy", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "oshy", + "sortAbil": "b3", + "auto": "_", + "abilList": "Ane2,Abds", + "Sellunits": "obot", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOrcShipyard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGoblinShipyard.blp", + "buildingShadow": "ShadowGoblinShipyard", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Abds", + "uberSplat": "OSMA", + "skinnableID": "oshy", + "file:hd": "Buildings\\Orc\\OrcShipYard\\OrcShipYard", + "file:sd": "buildings\\other\\GoblinShipyard\\GoblinShipyard", + "portrait:sd": "buildings\\other\\GoblinShipyard\\GoblinShipyard", + "portrait:hd": "Buildings\\Orc\\OrcShipYard\\OrcShipYard_portrait", + "unitSound": "GoblinShipyard", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "osld": { + "unitID": "osld", + "sort": "b3", + "comment(s)": "SpiritLodge", + "race": "orc", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "osld", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritlodge", + "unitClass": "OBuilding08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "osld", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 150, + "lumbercost": 135, + "goldRep": 150, + "lumberRep": 135, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 800, + "realHP": 800, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "osld", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "osld", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aspi", + "Attachmentanimprops": "medium", + "Requires": "ostr", + "Trains": "oshm,odoc", + "Buttonpos": "2,1", + "Researches": "Rowd,Rost", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritLodge.blp", + "buildingShadow": "ShadowSpiritLodge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi", + "uberSplat": "OMED", + "skinnableID": "osld", + "file": "buildings\\orc\\SpiritLodge\\SpiritLodge", + "portrait:sd": "buildings\\orc\\SpiritLodge\\SpiritLodge", + "portrait:hd": "buildings\\orc\\SpiritLodge\\SpiritLodge_portrait", + "unitSound": "SpiritLodge", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ostr": { + "unitID": "ostr", + "sort": "b3", + "comment(s)": "Stronghold", + "race": "orc", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ostr", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stronghold", + "unitClass": "OBuilding02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ostr", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 700, + "lumbercost": 375, + "goldRep": 700, + "lumberRep": 375, + "fmade": 11, + "fused": " - ", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 120, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 176, + "stockInitial": "-", + "unitWeaponID": "ostr", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ostr", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abdl,Aspi,Argl,Aosp", + "Attachmentanimprops": "large", + "Upgrade": "ofrt", + "Trains": "opeo", + "Researches": "Ropg,Ropm", + "Buttonpos": "0,2", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "upgrade,first", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStronghold.blp", + "buildingShadow": "ShadowStronghold", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abdl,Aspi,Argl,Aosp", + "abilSkinList:melee,V0": "Abdl,Aspi,Argl", + "abilSkinList:custom,V0": "Abdl,Aspi,Argl", + "abilSkinList:custom,V1": "Abdl,Aspi,Argl", + "uberSplat": "OLAR", + "skinnableID": "ostr", + "file": "buildings\\orc\\GreatHall\\GreatHall", + "portrait:sd": "buildings\\orc\\GreatHall\\GreatHall", + "portrait:hd": "buildings\\orc\\GreatHall\\GreatHall_portrait", + "unitSound": "Stronghold", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "otrb": { + "unitID": "otrb", + "sort": "b3", + "comment(s)": "OrcBurrow", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "otrb", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "trollburrow", + "unitClass": "OBuilding10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "otrb", + "sortBalance": "b3", + "sort2": "tow", + "level": 1, + "type": "Mechanical", + "goldcost": 160, + "lumbercost": 40, + "goldRep": 160, + "lumberRep": 40, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rorb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "otrb", + "sortWeap": "b3", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 700, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 4, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 6.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "otrb", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aspi,Abun,Abtl,Astd,Arbr,Aorb", + "Buttonpos": "0,1", + "Missileart": "abilities\\weapons\\huntermissile\\huntermissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTrollBurrow.blp", + "buildingShadow": "ShadowTrollBurrow", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi,Abun,Abtl,Astd,Arbr,Aorb", + "abilSkinList:melee,V0": "Abds,Aspi,Abun,Abtl,Astd", + "abilSkinList:custom,V0": "Abds,Aspi,Abun,Abtl,Astd", + "abilSkinList:custom,V1": "Abds,Aspi,Abun,Abtl,Astd,Arbr", + "uberSplat": "OSMA", + "skinnableID": "otrb", + "file": "buildings\\orc\\TrollBurrow\\TrollBurrow", + "portrait:sd": "buildings\\orc\\TrollBurrow\\TrollBurrow", + "portrait:hd": "buildings\\orc\\TrollBurrow\\TrollBurrow_portrait", + "unitSound": "TrollBurrow", + "blend": "0.15", + "scale": "2.75", + "legacyScale": "2.75", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "otto": { + "unitID": "otto", + "sort": "b3", + "comment(s)": "Tauren Totem", + "race": "orc", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "otto", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "taurentotem", + "unitClass": "OBuilding07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "otto", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 135, + "lumbercost": 155, + "goldRep": 135, + "lumberRep": 155, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "otto", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "otto", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aspi", + "Attachmentanimprops": "medium", + "Requires": "ostr", + "Researches": "Rows,Rowt", + "Trains": "otau,ospm", + "Buttonpos": "0,2", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTaurenTotem.blp", + "buildingShadow": "ShadowTaurenTotem", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi", + "uberSplat": "OMED", + "skinnableID": "otto", + "file": "buildings\\orc\\TaurenTotem\\TaurenTotem", + "portrait:sd": "buildings\\orc\\TaurenTotem\\TaurenTotem", + "portrait:hd": "buildings\\orc\\TaurenTotem\\TaurenTotem_portrait", + "unitSound": "TaurenTotem", + "blend": "0.15", + "scale:hd": "3.5", + "scale:sd": "3.25", + "legacyScale": "3.25", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.97", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ovln": { + "unitID": "ovln", + "sort": "b3", + "comment(s)": "Voodoo Lounge", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ovln", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "voodoolounge", + "unitClass": "OBuilding12", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ovln", + "sortBalance": "b3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 130, + "lumbercost": 30, + "goldRep": 130, + "lumberRep": 30, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1000, + "nsight": 750, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ovln", + "sortWeap": "b3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ovln", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Aall,Aspi,Apit", + "Attachmentanimprops": "medium", + "Buttonpos": "1,2", + "Makeitems": "shas,hslv,plcl,phea,pman,stwp,tgrh,oli2", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVoodooLounge.blp", + "buildingShadow": "ShadowGoblinMerchant", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aall,Aspi,Apit", + "uberSplat": "OMED", + "skinnableID": "ovln", + "file": "buildings\\orc\\VoodooLounge\\VoodooLounge", + "portrait:sd": "buildings\\orc\\VoodooLounge\\VoodooLounge", + "portrait:hd": "buildings\\orc\\VoodooLounge\\VoodooLounge_portrait", + "unitSound": "VoodooLounge", + "blend": "0.01", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "owtw": { + "unitID": "owtw", + "sort": "b3", + "comment(s)": "WatchTower", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "owtw", + "sortUI": "b3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "watchtower", + "unitClass": "OBuilding11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "owtw", + "sortBalance": "b3", + "sort2": "tow", + "level": 1, + "type": "Mechanical", + "goldcost": 110, + "lumbercost": 80, + "goldRep": 110, + "lumberRep": 80, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 1, + "realdef": 3, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rorb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "owtw", + "sortWeap": "b3", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 800, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 0.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 17, + "maxdmg1": 18, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 28.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "owtw", + "sortAbil": "b3", + "auto": "_", + "abilList": "Abds,Arbr,Aspi,Aorb", + "Requires": "ofor", + "Missileart": "Abilities\\Weapons\\GuardTowerMissile\\GuardTowerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1800", + "Buttonpos": "3,0", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "Alternate", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcTower.blp", + "buildingShadow": "ShadowGuardTower", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Arbr,Aspi,Aorb", + "abilSkinList:melee,V0": "Abds,Aspi", + "abilSkinList:custom,V0": "Abds,Aspi", + "abilSkinList:custom,V1": "Abds,Arbr,Aspi", + "uberSplat": "OSMA", + "skinnableID": "owtw", + "file": "buildings\\orc\\WatchTower\\WatchTower", + "portrait:sd": "buildings\\orc\\WatchTower\\WatchTower", + "portrait:hd": "buildings\\orc\\WatchTower\\WatchTower_portrait", + "unitSound": "WatchTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "135", + "addon": "Buildings" + }, + "Edem": { + "unitID": "Edem", + "sort": "c1", + "comment(s)": "HeroDemonHunter", + "race": "nightelf", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 15, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Edem", + "sortUI": "c1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "demonhunter", + "unitClass": "EHero03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Edem", + "sortBalance": "c1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 120, + "HP": 100, + "realHP": 575, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.3, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 19, + "INT": 16, + "AGI": 21, + "STRplus": 2.4, + "INTplus": 2.1, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Edem", + "sortWeap": "c1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.47, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.7, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.3, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.64705882352941, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.7, + "mincool2": "-", + "dice2": 2, + "sides2": 12, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 13, + "maxdmg2": 24, + "dmgpt2": 0.3, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Edem", + "sortAbil": "c1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEmb,AEim,AEev,AEme", + "Buttonpos": "0,2", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe", + "DependencyOr": "Edmm", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-demonhunter.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIllidan.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDemonHunter.blp", + "skinType": "unit", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Edem", + "file:hd": "Units\\NightElf\\Illidan\\Illidan", + "file:sd": "Units\\NightElf\\HeroDemonHunter\\HeroDemonHunter", + "heroAbilSkinList": "AEmb,AEim,AEev,AEme", + "unitSound": "HeroDemonHunter", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "Units\\NightElf\\HeroDemonHunter\\HeroDemonHunter_portrait", + "portrait:hd": "Units\\NightElf\\Illidan\\Illidan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Edmm": { + "unitID": "Edmm", + "sort": "c1", + "comment(s)": "HeroDemonHunterMorph", + "race": "nightelf", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 15, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Edmm", + "sortUI": "c1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "demonhuntermorphed", + "unitClass": "EHero04", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Edmm", + "sortBalance": "c1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 750, + "regenHP": 1, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 26, + "INT": 16, + "AGI": 20, + "STRplus": 2.4, + "INTplus": 2.1, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Edmm", + "sortWeap": "c1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.47, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.6, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.26, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 8.125, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.6, + "mincool2": "-", + "dice2": 2, + "sides2": 12, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 13, + "maxdmg2": 24, + "dmgpt2": 0.26, + "backSw2": 0.64, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Edmm", + "sortAbil": "c1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEmb,AEim,AEev,AEme", + "Buttonpos": "0,2", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Attachmentlinkprops": "alternate", + "Boneprops": "alternate", + "Animprops": "alternateex", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-demonhunter.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIllidanDemonForm.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "skinType": "unit", + "heroAbilSkinList": "AEmb,AEim,AEev,AEme", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Edmm", + "file:hd": "Units\\NightElf\\Illidan\\Illidan", + "file:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter", + "unitSound": "HeroDemonHunterMorphed", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "350", + "walk:hd": "320", + "run:sd": "350", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter_portrait", + "portrait:hd": "Units\\NightElf\\Illidan\\Illidan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "160", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "75", + "addon": "Heroes" + }, + "Ekee": { + "unitID": "Ekee", + "sort": "c1", + "comment(s)": "HeroKeeperoftheGrove", + "race": "nightelf", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 13, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Ekee", + "sortUI": "c1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "keeperofthegrove", + "unitClass": "EHero01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ekee", + "sortBalance": "c1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 500, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.5, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 16, + "INT": 18, + "AGI": 15, + "STRplus": 2, + "INTplus": 2.7, + "AGIplus": 1.5, + "abilTest": 6.2, + "Primary": "INT", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ekee", + "sortWeap": "c1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.7, + "castbsw": 0.8, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.18, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.29357798165138, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.18, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.4, + "backSw2": 0.77, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ekee", + "sortAbil": "c1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEer,AEfn,AEah,AEtq", + "Buttonpos": "1,2", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe", + "Missileart": "Abilities\\Weapons\\KeeperGroveMissile\\KeeperGroveMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-keeperofthegrove.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKeeperOfTheGrove.blp", + "skinType": "unit", + "heroAbilSkinList": "AEer,AEfn,AEah,AEtq", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "skinnableID": "Ekee", + "file": "units\\nightelf\\HeroKeeperoftheGrove\\HeroKeeperoftheGrove", + "unitSound": "HeroKeeperoftheGrove", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "75", + "addon": "Heroes" + }, + "Emoo": { + "unitID": "Emoo", + "sort": "c1", + "comment(s)": "HeroMoonPriestess", + "race": "nightelf", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 13, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Emoo", + "sortUI": "c1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "priestessofthemoon", + "unitClass": "EHero02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Emoo", + "sortBalance": "c1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.7, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 15, + "AGI": 19, + "STRplus": 1.9, + "INTplus": 2.6, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Emoo", + "sortWeap": "c1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.33, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.00429184549356, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.46, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.3, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Emoo", + "sortAbil": "c1", + "auto": "_", + "abilList": "Ashm,AInv,Ault", + "heroAbilList": "AHfa,AEst,AEar,AEsf", + "Buttonpos": "2,2", + "Missileart": "Abilities\\Weapons\\MoonPriestessMissile\\MoonPriestessMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-priestessofthemoon.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPriestessOfTheMoon.blp", + "skinType": "unit", + "heroAbilSkinList": "AHfa,AEst,AEar,AEsf", + "abilSkinList": "Ashm,AInv,Ault", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Emoo", + "file": "units\\nightelf\\HeroMoonPriestess\\HeroMoonPriestess", + "unitSound": "HeroMoonPriestess", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "85", + "shadowY": "85", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "100", + "launchZ:hd": "110", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "35", + "addon": "Heroes" + }, + "Ewar": { + "unitID": "Ewar", + "sort": "c1", + "comment(s)": "HeroWarden", + "race": "nightelf", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 9, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Ewar", + "sortUI": "c1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "warden", + "unitClass": "EHero07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ewar", + "sortBalance": "c1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 16, + "AGI": 20, + "STRplus": 2.4, + "INTplus": 2, + "AGIplus": 1.6, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ewar", + "sortWeap": "c1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 11, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 12, + "maxdmg1": 22, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 5.85365853658537, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.05, + "mincool2": "-", + "dice2": 2, + "sides2": 11, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 12, + "maxdmg2": 22, + "dmgpt2": 0.3, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ewar", + "sortAbil": "c1", + "auto": "_", + "abilList": "Ashm,AInv,Ault", + "heroAbilList": "AEbl,AEfk,AEsh,AEsv", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\WardenMissile\\WardenMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-warden.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroWarden.blp", + "skinType": "unit", + "heroAbilSkinList": "AEbl,AEfk,AEsh,AEsv", + "abilSkinList": "Ashm,AInv,Ault", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "skinnableID": "Ewar", + "file": "units\\nightelf\\herowarden\\herowarden", + "unitSound": "HeroWarden", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "85", + "shadowY": "85", + "impactSwimZ": "0", + "impactZ": "80", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "80", + "addon": "Heroes" + }, + "earc": { + "unitID": "earc", + "sort": "c2", + "comment(s)": "Archer", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "earc", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "archer", + "unitClass": "EUnit02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "earc", + "sortBalance": "c2", + "sort2": "ran", + "level": 2, + "type": "_", + "goldcost": 130, + "lumbercost": 10, + "goldRep": 130, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 275, + "realHP": 275, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resm,Rema,Reib,Remk,Reuv,Repm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "earc", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 17, + "maxdmg1": 18, + "dmgpt1": 0.72, + "backSw1": 0.28, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 11.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "earc", + "sortAbil": "c2", + "auto": "_", + "abilList": "Aco2,Ashm,Aien,Ault,Aegr,Aeib,Aemk", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcher.blp", + "skinType": "unit", + "abilSkinList": "Aco2,Ashm,Aien,Ault,Aegr,Aeib,Aemk", + "abilSkinList:melee,V0": "Aco2,Ashm,Ault", + "abilSkinList:custom,V0": "Acoa,Ashm,Ault", + "abilSkinList:custom,V1": "Aco2,Ashm,Aien,Ault", + "skinnableID": "earc", + "file": "units\\nightelf\\Archer\\Archer", + "unitSound": "Archer", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "290", + "walk:hd": "270", + "run:sd": "290", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "71", + "launchZ:hd": "110", + "projectileVisOffsetX:hd": "-11", + "projectileVisOffsetY:hd": "-27", + "addon": "Units" + }, + "ebal": { + "unitID": "ebal", + "sort": "c2", + "comment(s)": "Glaive Thrower", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.34, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ebal", + "sortUI": "c2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "glaivethrower", + "unitClass": "EUnit05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ebal", + "sortBalance": "c2", + "sort2": "art", + "level": 2, + "type": "Mechanical", + "goldcost": 210, + "lumbercost": 65, + "goldRep": 210, + "lumberRep": 65, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 42, + "reptm": 42, + "sight": 1400, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resm,Reuv,Repb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ebal", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 1150, + "minRange": 250, + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,wall,item,ward", + "rangeN1": 1150, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 3.5, + "mincool1": "-", + "dice1": 1, + "sides1": 18, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 53.5, + "maxdmg1": 62, + "dmgpt1": 0.1, + "backSw1": 1.9, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 150, + "Hfact1": 0.4, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,wall,ward", + "targCount1": 1, + "damageLoss1": 0.2, + "spillDist1": 0, + "spillRadius1": 50, + "DmgUpg": "low", + "dmod1": 70, + "DPS": 15.2857142857143, + "targs2": "ground,structure,debris,wall,item,ward,tree", + "rangeN2": 1150, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "artillery", + "cool2": 3.5, + "mincool2": "-", + "dice2": 1, + "sides2": 18, + "dmgplus2": 44, + "dmgUp2": "-", + "mindmg2": 45, + "avgdmg2": 53.5, + "maxdmg2": 62, + "dmgpt2": 0.1, + "backSw2": 1.9, + "Farea2": 25, + "Harea2": 50, + "Qarea2": 150, + "Hfact2": 0.4, + "Qfact2": 0.25, + "splashTargs2": "ground,structure,debris,wall,tree,ward", + "targCount2": 1, + "damageLoss2": 0.2, + "spillDist2": 0, + "spillRadius2": 50, + "unitAbilID": "ebal", + "sortAbil": "c2", + "auto": "_", + "abilList": "Aimp,Ault", + "Requires": "edob", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\GlaiveMissile\\GlaiveMissile.mdl", + "Missilearc": "0.05", + "Missilespeed": "1400,2000", + "Targetart": "Abilities\\Weapons\\GlaiveMissile\\GlaiveMissileTarget.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlaiveThrower.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aimp,Ault", + "skinnableID": "ebal", + "file": "units\\nightelf\\Ballista\\Ballista", + "unitSound": "Ballista", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "220", + "run:sd": "150", + "run:hd": "220", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "ebsh": { + "unitID": "ebsh", + "sort": "c2", + "comment(s)": "night elf battleship", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.1, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ebsh", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nightelfbattleship", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ebsh", + "sortBalance": "c2", + "sort2": "zz", + "level": 6, + "type": "Mechanical", + "goldcost": 500, + "lumbercost": 200, + "goldRep": 500, + "lumberRep": 200, + "fmade": " - ", + "fused": 0, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1000, + "realHP": 1000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 2, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ebsh", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 900, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 2, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 75, + "dmgUp1": "-", + "mindmg1": 78, + "avgdmg1": 91.5, + "maxdmg1": 105, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 100, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 45.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ebsh", + "sortAbil": "c2", + "auto": "_", + "abilList": "Ault", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\GuardTowerMissile\\GuardTowerMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfBattleCruiser.blp", + "skinType": "unit", + "abilSkinList": "Ault", + "skinnableID": "ebsh", + "file": "units\\creeps\\NightElfBattleship\\NightElfBattleship", + "portrait:sd": "units\\creeps\\NightElfBattleship\\NightElfBattleship", + "portrait:hd": "units\\creeps\\NightElfBattleship\\NightElfBattleship_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "400", + "shadowH": "400", + "shadowX": "180", + "shadowY": "180", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "echm": { + "unitID": "echm", + "sort": "c2", + "comment(s)": "Chimaera", + "race": "nightelf", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "echm", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chimaera", + "unitClass": "EUnit08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "echm", + "sortBalance": "c2", + "sort2": "fly2", + "level": 5, + "type": "_", + "goldcost": 330, + "lumbercost": 70, + "goldRep": 330, + "lumberRep": 70, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1000, + "realHP": 1000, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resw,Rerh,Recb,Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "echm", + "sortWeap": "c2", + "weapsOn": 2, + "acquire": 900, + "minRange": "-", + "castpt": 0.7, + "castbsw": 0.3, + "targs1": "structure,debris", + "rangeN1": 850, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "missile", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.7, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": " - ", + "Qfact1": " - ", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 20, + "targs2": "ground,item,ward,structure,debris", + "rangeN2": 450, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "magic", + "weapTp2": "msplash", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 17, + "dmgplus2": 66, + "dmgUp2": "-", + "mindmg2": 67, + "avgdmg2": 75, + "maxdmg2": 83, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": 50, + "Harea2": 100, + "Qarea2": 200, + "Hfact2": 0.5, + "Qfact2": 0.1, + "splashTargs2": "ground,debris,enemy,ward", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "echm", + "sortAbil": "c2", + "auto": "_", + "abilList": "Acor,Alit,Ault", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl,Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.0,0.0", + "Missilespeed": "1200,1500", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChimaera.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Acor,Alit,Ault", + "skinnableID": "echm", + "file": "units\\nightelf\\Chimaera\\Chimaera", + "unitSound": "Chimaera", + "blend": "0.4", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "0", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "250", + "run:sd": "200", + "run:hd": "250", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-18", + "launchZ:hd": "-120", + "projectileVisOffsetX:hd": "-15", + "projectileVisOffsetY:hd": "25", + "addon": "Units" + }, + "edcm": { + "unitID": "edcm", + "sort": "c2", + "comment(s)": "DruidoftheClawMorph", + "race": "nightelf", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "edcm", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "druidoftheclawmorphed", + "unitClass": "EUnit12", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "edcm", + "sortBalance": "c2", + "sort2": "me2", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 80, + "goldRep": 255, + "lumberRep": 80, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 810, + "realHP": 810, + "regenHP": 1, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 100, + "regenMana": 0.333333333333333, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resw,Rerh,Reuv,Redc,Repm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "edcm", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 28.5, + "maxdmg1": 31, + "dmgpt1": 0.5, + "backSw1": 0.83, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 19, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edcm", + "sortAbil": "c2", + "auto": "_", + "abilList": "Abrf,Ara2,Aien,Ault", + "Requires": "etoa", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Attachmentlinkprops": "alternate", + "Boneprops": "alternate", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-druidofclaw.blp", + "Animprops": "alternateex", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBearForm.blp", + "skinType": "unit", + "abilSkinList": "Abrf,Ara2,Aien,Ault", + "abilSkinList:melee,V0": "Abrf,Arej,Aroa,Ault", + "abilSkinList:custom,V0": "Abrf,Arej,Aroa,Ault", + "skinnableID": "edcm", + "file": "units\\nightelf\\DruidoftheClaw\\DruidoftheClaw", + "unitSound": "DruidoftheClawMorphed", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "edes": { + "unitID": "edes", + "sort": "c2", + "comment(s)": "night elf destroyer", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.2, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "edes", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nightelfdestroyer", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "edes", + "sortBalance": "c2", + "sort2": "zz", + "level": 4, + "type": "Mechanical", + "goldcost": 250, + "lumbercost": 100, + "goldRep": 250, + "lumberRep": 100, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 60, + "stockStart": 0, + "HP": 575, + "realHP": 575, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1500, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "edes", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 15, + "dmgplus1": 54, + "dmgUp1": "-", + "mindmg1": 55, + "avgdmg1": 62, + "maxdmg1": 69, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 25, + "Harea1": 35, + "Qarea1": 50, + "Hfact1": 0.3, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 59, + "DPS": 41.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edes", + "sortAbil": "c2", + "auto": "_", + "abilList": "Ault", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\GuardTowerMissile\\GuardTowerMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfDestroyer.blp", + "skinType": "unit", + "abilSkinList": "Ault", + "skinnableID": "edes", + "file": "units\\nightelf\\NightElfDestroyerShip\\NightElfDestroyerShip", + "portrait:sd": "units\\nightelf\\NightElfDestroyerShip\\NightElfDestroyerShip", + "portrait:hd": "units\\nightelf\\NightElfDestroyerShip\\NightElfDestroyerShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "edoc": { + "unitID": "edoc", + "sort": "c2", + "comment(s)": "DruidoftheClaw", + "race": "nightelf", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "edoc", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "druidoftheclaw", + "unitClass": "EUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "edoc", + "sortBalance": "c2", + "sort2": "cas", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 80, + "goldRep": 255, + "lumberRep": 80, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 430, + "realHP": 430, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 100, + "regenMana": 0.666666666666667, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Redc,Reuv,Repm,Reeb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "edoc", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.17, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 18, + "dmgUp1": "-", + "mindmg1": 19, + "avgdmg1": 20.5, + "maxdmg1": 22, + "dmgpt1": 0.33, + "backSw1": 0.53, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edoc", + "sortAbil": "c2", + "auto": "_", + "abilList": "Abrf,Arej,Aroa,Aien,Ault", + "Requires": "etoa", + "DependencyOr": "edcm", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-druidofclaw.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDruidOfTheClaw.blp", + "skinType": "unit", + "abilSkinList": "Abrf,Arej,Aroa,Aien,Ault", + "abilSkinList:melee,V0": "Abrf,Arej,Aroa,Ault", + "abilSkinList:custom,V0": "Abrf,Arej,Aroa,Ault", + "skinnableID": "edoc", + "file": "units\\nightelf\\DruidoftheClaw\\DruidoftheClaw", + "unitSound": "DruidoftheClaw", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "edot": { + "unitID": "edot", + "sort": "c2", + "comment(s)": "DruidoftheTalon", + "race": "nightelf", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 4.335, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "edot", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "druidofthetalon", + "unitClass": "EUnit09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "edot", + "sortBalance": "c2", + "sort2": "cas", + "level": 2, + "type": "_", + "goldcost": 135, + "lumbercost": 20, + "goldRep": 135, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.666666666666667, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Redt,Reuv,Repm,Reec", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "edot", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.7, + "castbsw": 1.97, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 12, + "maxdmg1": 13, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 7.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edot", + "sortAbil": "c2", + "auto": "Afae", + "abilList": "Acyc,Arav,Afae,Aien,Ault", + "DependencyOr": "edtm", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\DruidoftheTalonMissile\\DruidoftheTalonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-druidoftalon.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDruidOfTheTalon.blp", + "skinType": "unit", + "abilSkinList": "Acyc,Arav,Afae,Aien,Ault", + "abilSkinList:melee,V0": "Acyc,Arav,Afae,Ault", + "abilSkinList:custom,V0": "Acyc,Arav,Afae,Ault", + "skinnableID": "edot", + "file": "units\\nightelf\\DruidoftheTalon\\DruidoftheTalon", + "unitSound": "DruidoftheTalon", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "80", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "125", + "addon": "Units" + }, + "edry": { + "unitID": "edry", + "sort": "c2", + "comment(s)": "Dryad", + "race": "nightelf", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "edry", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dryad", + "unitClass": "EUnit04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "edry", + "sortBalance": "c2", + "sort2": "ran", + "level": 3, + "type": "_", + "goldcost": 145, + "lumbercost": 60, + "goldRep": 145, + "lumberRep": 60, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 435, + "realHP": 435, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resw,Rerh,Resi,Reuv,Repm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "edry", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18, + "maxdmg1": 19, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 15, + "DPS": 9, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edry", + "sortAbil": "c2", + "auto": "Aadm", + "abilList": "Aadm,Amim,Aspo,Aien,Ault", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Dryadmissile\\Dryadmissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1000", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryad.blp", + "skinType": "unit", + "abilSkinList": "Aadm,Amim,Aspo,Aien,Ault", + "abilSkinList:melee,V0": "Aadm,Amim,Aspo,Ault", + "abilSkinList:custom,V0": "Aadm,Amim,Aspo,Ault", + "skinnableID": "edry", + "file": "units\\nightelf\\Dryad\\Dryad", + "unitSound": "Dryad", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "380", + "walk:hd": "350", + "run:sd": "380", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "125", + "addon": "Units" + }, + "edtm": { + "unitID": "edtm", + "sort": "c2", + "comment(s)": "DruidoftheTalonMorph", + "race": "nightelf", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 4.335, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "edtm", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "druidofthetalonmorphed", + "unitClass": "EUnit10", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "edtm", + "sortBalance": "c2", + "sort2": "fly1", + "level": 2, + "type": "_", + "goldcost": 135, + "lumbercost": 20, + "goldRep": 135, + "lumberRep": 35, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 1, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.666666666666667, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resw,Rerh,Reuv,Redt", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "edtm", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 30, + "maxdmg1": 33, + "dmgpt1": 0.6, + "backSw1": 0.57, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 21.71, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edtm", + "sortAbil": "c2", + "auto": "Afae", + "abilList": "Arav,Afa2,Ault", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\DruidoftheTalonMissile\\DruidoftheTalonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentlinkprops": "alternate", + "Boneprops": "alternate", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-druidoftalon.blp", + "Animprops": "alternateex", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Arav,Afa2,Ault", + "abilSkinList:melee,V0": "Acyc,Arav,Afae,Ault", + "abilSkinList:custom,V0": "Acyc,Arav,Afae,Ault", + "skinnableID": "edtm", + "file": "units\\nightelf\\DruidoftheTalon\\DruidoftheTalon", + "unitSound": "DruidoftheTalonMorphed", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "efdr": { + "unitID": "efdr", + "sort": "c2", + "comment(s)": "faerie dragon", + "race": "nightelf", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.13, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 4, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "efdr", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "faeriedragon", + "unitClass": "EUnit21", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "efdr", + "sortBalance": "c2", + "sort2": "fly1", + "level": 3, + "type": "_", + "goldcost": 155, + "lumbercost": 25, + "goldRep": 155, + "lumberRep": 25, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1600, + "nsight": 1000, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resw,Rerh,Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "efdr", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.5, + "backSw1": 0.8, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 8, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "efdr", + "sortAbil": "c2", + "auto": "Apsh", + "abilList": "Amim,Amfl,Apsh,Ault", + "Requires": "eden", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\FaerieDragonMissile\\FaerieDragonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFaerieDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Amim,Amfl,Apsh,Ault", + "skinnableID": "efdr", + "file": "units\\nightelf\\FaerieDragon\\FaerieDragon", + "unitSound": "FaerieDragon", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "33", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Ethereal", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "11", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "11", + "launchZ:hd": "8", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "-25", + "addon": "Units" + }, + "efon": { + "unitID": "efon", + "sort": "c2", + "comment(s)": "Ent", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.14, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "efon", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "forceofnature", + "unitClass": "EUnit14", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "efon", + "sortBalance": "c2", + "sort2": "sum", + "level": 2, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 1, + "bountysides": 3, + "bountyplus": 1, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 5, + "realdef": 0, + "defType": "large", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Reuv,Renb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "efon", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.65, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 14, + "dmgUp1": "-", + "mindmg1": 15, + "avgdmg1": 16, + "maxdmg1": 17, + "dmgpt1": 0.467, + "backSw1": 0.533, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 15, + "DPS": 9.6969696969697, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "efon", + "sortAbil": "c2", + "auto": "_", + "abilList": "Ault", + "Buttonpos": "0,0", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp", + "skinType": "unit", + "abilSkinList": "Ault", + "skinnableID": "efon", + "file": "units\\nightelf\\Ent\\Ent", + "unitSound": "Ent", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "110", + "walk:hd": "220", + "run:sd": "110", + "run:hd": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ehip": { + "unitID": "ehip", + "sort": "c2", + "comment(s)": "Hippogryph", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ehip", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "hippogryph", + "unitClass": "EUnit06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ehip", + "sortBalance": "c2", + "sort2": "fly1", + "level": 2, + "type": "_", + "goldcost": 160, + "lumbercost": 20, + "goldRep": 160, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 525, + "realHP": 525, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 400, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resw,Rerh,Reht,Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "ehip", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 300, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.05, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 49, + "dmgUp1": "-", + "mindmg1": 50, + "avgdmg1": 53.5, + "maxdmg1": 57, + "dmgpt1": 0.6, + "backSw1": 0.37, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 50.9523809523809, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ehip", + "sortAbil": "c2", + "auto": "_", + "abilList": "Aco3,Ault", + "Buttonpos": "0,0", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriff.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Aco3,Ault", + "abilSkinList:custom,V0": "Acoh,Ault", + "skinnableID": "ehip", + "file": "units\\nightelf\\Hippogryph\\Hippogryph", + "unitSound": "Hippogryph", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "350", + "walk:hd": "400", + "run:sd": "350", + "run:hd": "400", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ehpr": { + "unitID": "ehpr", + "sort": "c2", + "comment(s)": "Hippogryph Rider", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ehpr", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "riddenhippogryph", + "unitClass": "EUnit07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ehpr", + "sortBalance": "c2", + "sort2": "fly2", + "level": 4, + "type": "_", + "goldcost": 290, + "lumbercost": 30, + "goldRep": 290, + "lumberRep": 30, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 800, + "realHP": 800, + "regenHP": 1, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resm,Rema,Reib,Remk,Reht,Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "ehpr", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.1, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 17, + "maxdmg1": 18, + "dmgpt1": 0.633, + "backSw1": 0.337, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 15.4545454545455, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ehpr", + "sortAbil": "c2", + "auto": "_", + "abilList": "Adec,Ault,Aeib,Aemk", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Adec,Ault,Aeib,Aemk", + "abilSkinList:melee,V0": "Adec,Ault", + "abilSkinList:custom,V0": "Ault", + "abilSkinList:custom,V1": "Adec,Ault", + "skinnableID": "ehpr", + "file": "units\\nightelf\\RiddenHippogryph\\RiddenHippogryph", + "unitSound": "RiddenHippogryph", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk": "350", + "run": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "-15", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "emtg": { + "unitID": "emtg", + "sort": "c2", + "comment(s)": "Mountain Giant", + "race": "nightelf", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.34, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "emtg", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mountaingiant", + "unitClass": "EUnit13", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "emtg", + "sortBalance": "c2", + "sort2": "art", + "level": 6, + "type": "_", + "goldcost": 350, + "lumbercost": 100, + "goldRep": 350, + "lumberRep": 100, + "fmade": " - ", + "fused": 7, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1600, + "realHP": 1600, + "regenHP": 1.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resw,Rerh,Rers,Rehs,Repm,Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "emtg", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 3, + "targs1": "ground,structure,debris,tree,wall,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 2, + "sides1": 7, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 34, + "maxdmg1": 40, + "dmgpt1": 0.49, + "backSw1": 1, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 25, + "DPS": 13.6, + "targs2": "ground,structure,debris,tree,wall,item,ward", + "rangeN2": 250, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 2, + "sides2": 8, + "dmgplus2": 32, + "dmgUp2": "-", + "mindmg2": 34, + "avgdmg2": 41, + "maxdmg2": 48, + "dmgpt2": 0.49, + "backSw2": 1, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "emtg", + "sortAbil": "c2", + "auto": "_", + "abilList": "Atau,Agra,Arsk,Assk,Aien,Ault", + "Requires": "etoa,eden", + "Buttonpos": "2,0", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMountainGiant.blp", + "skinType": "unit", + "abilSkinList": "Atau,Agra,Arsk,Assk,Aien,Ault", + "abilSkinList:custom,V1": "Atau,Agra,Arsk,Assk,Aien", + "skinnableID": "emtg", + "file": "units\\nightelf\\MountainGiant\\MountainGiant", + "unitSound": "MountainGiant", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "esen": { + "unitID": "esen", + "sort": "c2", + "comment(s)": "Huntress", + "race": "nightelf", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "esen", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "huntress", + "unitClass": "EUnit03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "esen", + "sortBalance": "c2", + "sort2": "me1", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 20, + "goldRep": 195, + "lumberRep": 20, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "none", + "spd": 340, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resm,Rema,Resc,Reuv,Remg,Repm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "esen", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.4, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 225, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "mbounce", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 17, + "maxdmg1": 18, + "dmgpt1": 0.46, + "backSw1": 0.54, + "Farea1": 400, + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,debris,enemy,ward", + "targCount1": 2, + "damageLoss1": 0.5, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.44444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "esen", + "sortAbil": "c2", + "auto": "_", + "abilList": "Aesn,Ashm,Amgl,Aien,Ault,Amgi", + "Requires": "edob", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\SentinelMissile\\SentinelMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHuntress.blp", + "skinType": "unit", + "abilSkinList": "Aesn,Ashm,Amgl,Aien,Ault,Amgi", + "abilSkinList:melee,V0": "Aesn,Ashm,Amgl,Ault,Amgi", + "abilSkinList:custom,V0": "Aesn,Ashm,Amgl,Ault,Amgi", + "skinnableID": "esen", + "file": "units\\nightelf\\Huntress\\Huntress", + "unitSound": "Huntress", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "-50", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "espv": { + "unitID": "espv", + "sort": "c2", + "comment(s)": "spirit of vengeance", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "espv", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritofvengeance", + "unitClass": "EUnit15", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "espv", + "sortBalance": "c2", + "sort2": "sum", + "level": 7, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1200, + "realHP": 1200, + "regenHP": 1.6, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 2, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 1000, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "espv", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "missile", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 30.5, + "maxdmg1": 36, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 48, + "DPS": 22.5925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "espv", + "sortAbil": "c2", + "auto": "Avng", + "abilList": "ACmi,Asp1,ACrk,Avng,Ault", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\SpiritOfVengeanceMissile\\SpiritOfVengeanceMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "1200", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritOfVengeance.blp", + "skinType": "unit", + "abilSkinList": "ACmi,Asp1,ACrk,Avng,Ault", + "abilSkinList:custom,V1": "ACmi,Asp1,ACrk,Avng", + "skinnableID": "espv", + "file": "units\\nightelf\\SpiritOfVengeance\\SpiritOfVengeance", + "unitSound": "SpiritOfVengeance", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "140", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Heroes" + }, + "even": { + "unitID": "even", + "sort": "c2", + "comment(s)": "vengeance", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.13, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "even", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "vengeance", + "unitClass": "EUnit21", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "even", + "sortBalance": "c2", + "sort2": "sum", + "level": 2, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": 1.6, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "even", + "sortWeap": "c2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 19, + "maxdmg1": 21, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14.0740740740741, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "even", + "sortAbil": "c2", + "auto": "_", + "abilList": "Avul,Ault", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\VengeanceMissile\\VengeanceMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "1200", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAvengingWatcher.blp", + "skinType": "unit", + "abilSkinList": "Avul,Ault", + "abilSkinList:custom,V1": "Avul", + "skinnableID": "even", + "file": "units\\nightelf\\Vengeance\\Vengeance", + "unitSound": "Vengeance", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "290", + "walk:hd": "270", + "run:sd": "290", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "50", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "45", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ewsp": { + "unitID": "ewsp", + "sort": "c2", + "comment(s)": "Wisp", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ewsp", + "sortUI": "c2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wisp", + "unitClass": "EUnit01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ewsp", + "sortBalance": "c2", + "sort2": "peo", + "level": 1, + "type": "Peon", + "goldcost": 60, + "lumbercost": 0, + "goldRep": 60, + "lumberRep": 0, + "fmade": "-", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 125, + "realHP": 125, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": "-", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 14, + "reptm": 14, + "sight": 1000, + "nsight": 750, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ewsp", + "sortWeap": "c2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ewsp", + "sortAbil": "c2", + "auto": "_", + "abilList": "Adtn,Aren,Awha,Ault", + "Builds": "etol,emow,edos,eaom,eate,eaow,eaoe,edob,etrp,eden", + "Buttonpos": "0,0", + "Specialart": "Units\\NightElf\\Wisp\\WispExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWisp.blp", + "skinType": "unit", + "abilSkinList": "Adtn,Aren,Awha,Ault", + "skinnableID": "ewsp", + "file": "units\\nightelf\\Wisp\\Wisp", + "unitSound": "Wisp", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "eaoe": { + "unitID": "eaoe", + "sort": "c3", + "comment(s)": "AncientofLore", + "race": "nightelf", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "eaoe", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancientoflore", + "unitClass": "EBuilding07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eaoe", + "sortBalance": "c3", + "sort2": "xbui", + "level": 1, + "type": "Ancient", + "goldcost": 155, + "lumbercost": 145, + "goldRep": 155, + "lumberRep": 145, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "eaoe", + "sortWeap": "c3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 45.5, + "maxdmg1": 50, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 18.2, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 10, + "dmgplus2": 40, + "dmgUp2": "-", + "mindmg2": 41, + "avgdmg2": 45.5, + "maxdmg2": 50, + "dmgpt2": 0.5, + "backSw2": 0.67, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eaoe", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Aeat,Aro1", + "Requires": "etoa,edob", + "Trains": "edry,edoc,emtg", + "Researches": "Resi,Redc,Rers,Rehs,Reeb", + "Buttonpos": "2,1", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAncientOfLore.blp", + "buildingShadow": "ShadowAncientofLore", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aeat,Aro1", + "uberSplat": "EMDA", + "skinnableID": "eaoe", + "file": "buildings\\nightelf\\AncientOfLore\\AncientOfLore", + "unitSound": "AncientOfLore", + "blend": "0.4", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "400", + "shadowH": "400", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "eaom": { + "unitID": "eaom", + "sort": "c3", + "comment(s)": "AncientofWar", + "race": "nightelf", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "eaom", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancientofwar", + "unitClass": "EBuilding06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eaom", + "sortBalance": "c3", + "sort2": "xbui", + "level": 1, + "type": "Ancient", + "goldcost": 150, + "lumbercost": 60, + "goldRep": 150, + "lumberRep": 60, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "eaom", + "sortWeap": "c3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 36, + "dmgUp1": "-", + "mindmg1": 37, + "avgdmg1": 42, + "maxdmg1": 47, + "dmgpt1": 0.59, + "backSw1": 0.81, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 44, + "DPS": 16.8, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "@", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 11, + "dmgplus2": 36, + "dmgUp2": "-", + "mindmg2": 37, + "avgdmg2": 42, + "maxdmg2": 47, + "dmgpt2": 0.59, + "backSw2": 0.81, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eaom", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Aeat,Aro1", + "Trains": "earc,esen,ebal", + "Buttonpos": "1,0", + "Researches": "Reib,Remk,Resc,Remg,Repb", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAncientOfTheEarth.blp", + "buildingShadow": "ShadowAncientofWar", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aeat,Aro1", + "uberSplat": "EMDA", + "skinnableID": "eaom", + "file": "buildings\\nightelf\\AncientOfWar\\AncientOfWar", + "unitSound": "AncientOfWar", + "blend": "0.4", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.87", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "eaow": { + "unitID": "eaow", + "sort": "c3", + "comment(s)": "AncientofWind", + "race": "nightelf", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "eaow", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancientofwind", + "unitClass": "EBuilding08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eaow", + "sortBalance": "c3", + "sort2": "xbui", + "level": 1, + "type": "Ancient", + "goldcost": 150, + "lumbercost": 140, + "goldRep": 150, + "lumberRep": 140, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "eaow", + "sortWeap": "c3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 37, + "dmgUp1": "-", + "mindmg1": 38, + "avgdmg1": 42, + "maxdmg1": 46, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 16.8, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 9, + "dmgplus2": 37, + "dmgUp2": "-", + "mindmg2": 38, + "avgdmg2": 42, + "maxdmg2": 46, + "dmgpt2": 0.5, + "backSw2": 0.67, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eaow", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Aeat,Aro1", + "Requires": "etoa", + "Trains": "ehip,edot,efdr", + "Researches": "Redt,Reec", + "Buttonpos": "0,2", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAncientOfTheMoon.blp", + "buildingShadow": "ShadowAncientofWind", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aeat,Aro1", + "uberSplat": "EMDA", + "skinnableID": "eaow", + "file": "buildings\\nightelf\\AncientOfWind\\AncientOfWind", + "unitSound": "AncientOfWind", + "blend": "0.4", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "400", + "shadowH": "400", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "eate": { + "unitID": "eate", + "sort": "c3", + "comment(s)": "AltarofElders", + "race": "nightelf", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\10x10Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "eate", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "altarofelders", + "unitClass": "EBuilding05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eate", + "sortBalance": "c3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 180, + "lumbercost": 50, + "goldRep": 180, + "lumberRep": 50, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": "-", + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 5, + "defUp": 0, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "eate", + "sortWeap": "c3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eate", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds", + "Trains": "Edem,Ekee,Emoo,Ewar", + "Buttonpos": "1,1", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Attachmentanimprops": "medium", + "Revive": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfElders.blp", + "buildingShadow": "ShadowAltarofElders", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "EMDB", + "skinnableID": "eate", + "file": "buildings\\nightelf\\AltarOfElders\\AltarOfElders", + "portrait:sd": "buildings\\nightelf\\AltarOfElders\\AltarOfElders", + "portrait:hd": "buildings\\nightelf\\AltarOfElders\\AltarOfElders_portrait", + "unitSound": "AltarOfElders", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "eden": { + "unitID": "eden", + "sort": "c3", + "comment(s)": "Ancient of Wonders", + "race": "nightelf", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.2, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "eden", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancientofwonders", + "unitClass": "EBuilding13", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eden", + "sortBalance": "c3", + "sort2": "xbui", + "level": 1, + "type": "Ancient", + "goldcost": 90, + "lumbercost": 30, + "goldRep": 90, + "lumberRep": 30, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1000, + "nsight": 750, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "eden", + "sortWeap": "c3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 9.2, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "@", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 5, + "dmgplus2": 20, + "dmgUp2": "-", + "mindmg2": 21, + "avgdmg2": 23, + "maxdmg2": 25, + "dmgpt2": 0.5, + "backSw2": 0.67, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eden", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Aall,Aeat,Aro1,Apit", + "Buttonpos": "2,2", + "Makeitems": "moon,plcl,dust,phea,pman,stwp,spre,oven,pams", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAncientOfWonders.blp", + "buildingShadow": "ShadowAncientofWind", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aall,Aeat,Aro1,Apit", + "uberSplat": "EMDA", + "skinnableID": "eden", + "file": "buildings\\nightelf\\AncientOfWonder\\AncientOfWonder", + "unitSound": "AncientOfWonder", + "blend": "0.4", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "400", + "shadowH": "400", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "edob": { + "unitID": "edob", + "sort": "c3", + "comment(s)": "HuntersHall", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "edob", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "huntershall", + "unitClass": "EBuilding09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "edob", + "sortBalance": "c3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 210, + "lumbercost": 100, + "goldRep": 210, + "lumberRep": 80, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1100, + "realHP": 1100, + "regenHP": "-", + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "edob", + "sortWeap": "c3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edob", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds", + "Requires": "etol", + "Buttonpos": "2,0", + "Researches": "Resm,Rema,Resw,Rerh,Reuv,Rews", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHuntersHall.blp", + "buildingShadow": "ShadowHuntersHall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "EMDB", + "skinnableID": "edob", + "file": "buildings\\nightelf\\HuntersHall\\HuntersHall", + "portrait:sd": "buildings\\nightelf\\HuntersHall\\HuntersHall", + "portrait:hd": "buildings\\nightelf\\HuntersHall\\HuntersHall_portrait", + "unitSound": "HuntersHall", + "blend": "0.15", + "scale": "4.2", + "legacyScale": "4.2", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "edos": { + "unitID": "edos", + "sort": "c3", + "comment(s)": "ChimaeraRoost", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "edos", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chimaeraroost", + "unitClass": "EBuilding11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "edos", + "sortBalance": "c3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 140, + "lumbercost": 190, + "goldRep": 140, + "lumberRep": 190, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "edos", + "sortWeap": "c3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "edos", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds", + "Requires": "etoe", + "Researches": "Recb", + "Trains": "echm", + "Buttonpos": "1,2", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChimaeraRoost.blp", + "buildingShadow": "ShadowChimaeraRoost", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "EMDB", + "skinnableID": "edos", + "file": "buildings\\nightelf\\ChimaeraRoost\\ChimaeraRoost", + "portrait:sd": "buildings\\nightelf\\ChimaeraRoost\\ChimaeraRoost", + "portrait:hd": "buildings\\nightelf\\ChimaeraRoost\\ChimaeraRoost_portrait", + "unitSound": "ChimaeraRoost", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "100", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.93", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "egol": { + "unitID": "egol", + "sort": "c3", + "comment(s)": "EntangledGoldMine", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Goldmine.tga", + "fatLOS": 0, + "points": 100, + "buffType": "resource", + "buffRadius": 7, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "egol", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "entangledgoldmine", + "unitClass": "EBuilding12", + "special": "0", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "egol", + "sortBalance": "c3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 800, + "realHP": 800, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "egol", + "sortWeap": "c3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "egol", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Aenc,Slo2,Adri,Aegm", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEntangleMine.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGoldMine.blp", + "buildingShadow": "BuildingShadowLarge", + "skinType": "unit", + "abilSkinList": "Abds,Aenc,Slo2,Adri,Aegm", + "uberSplat": "EMDB", + "skinnableID": "egol", + "file": "buildings\\nightelf\\EntangledGoldMine\\EntangledGoldMine", + "portrait:sd": "buildings\\nightelf\\EntangledGoldMine\\EntangledGoldMine", + "portrait:hd": "buildings\\nightelf\\EntangledGoldMine\\EntangledGoldMine_portrait", + "unitSound": "EntangledGoldMine", + "blend": "0.15", + "scale": "5.5", + "legacyScale": "5.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "100", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "emow": { + "unitID": "emow", + "sort": "c3", + "comment(s)": "MoonWell", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "emow", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "moonwell", + "unitClass": "EBuilding04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "emow", + "sortBalance": "c3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 180, + "lumbercost": 40, + "goldRep": 180, + "lumberRep": 40, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": 300, + "realM": 300, + "mana0": 100, + "regenMana": 1.45, + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rews,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "emow", + "sortWeap": "c3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "emow", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Ambt,Aews", + "Buttonpos": "0,1", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMoonWell.blp", + "buildingShadow": "ShadowMoonWell", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Ambt,Aews", + "abilSkinList:melee,V0": "Abds,Ambt", + "abilSkinList:custom,V0": "Abds,Ambt", + "abilSkinList:custom,V1": "Abds,Ambt", + "uberSplat": "ESMB", + "skinnableID": "emow", + "file": "buildings\\nightelf\\MoonWell\\MoonWell", + "portrait:sd": "buildings\\nightelf\\MoonWell\\MoonWell", + "portrait:hd": "buildings\\nightelf\\MoonWell\\MoonWell_portrait", + "unitSound": "MoonWell", + "blend": "0.15", + "scale:hd": "3.45", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.87", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "eshy": { + "unitID": "eshy", + "sort": "c3", + "comment(s)": "nightelf shipyard", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 384, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "eshy", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nightelfshipyard", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eshy", + "sortBalance": "c3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "eshy", + "sortWeap": "c3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eshy", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Ane2", + "Sellunits": "etrs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfShipyard.blp", + "buildingShadow": "ShadowHumanShipyard", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Ane2", + "uberSplat": "EMDB", + "skinnableID": "eshy", + "file": "buildings\\NightElf\\NightElfShipyard\\NightElfShipyard", + "portrait:sd": "buildings\\NightElf\\NightElfShipyard\\NightElfShipyard", + "portrait:hd": "buildings\\NightElf\\NightElfShipyard\\NightElfShipyard_portrait", + "unitSound": "GoblinShipyard", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "etoa": { + "unitID": "etoa", + "sort": "c3", + "comment(s)": "TreeofAges", + "race": "nightelf", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12TreeOfLife.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "etoa", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "treeofages", + "unitClass": "EBuilding02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "etoa", + "sortBalance": "c3", + "sort2": "xbui", + "level": 2, + "type": "TownHall,Ancient", + "goldcost": 660, + "lumbercost": 365, + "goldRep": 660, + "lumberRep": 365, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1700, + "realHP": 1700, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 120, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "etoa", + "sortWeap": "c3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 54.5, + "maxdmg1": 60, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 21.8, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 12, + "dmgplus2": 48, + "dmgUp2": "-", + "mindmg2": 49, + "avgdmg2": 54.5, + "maxdmg2": 60, + "dmgpt2": 0.4, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "etoa", + "sortAbil": "c3", + "auto": "_", + "abilList": "Aent,Aeat,Aro1,Abdl,Atol,Arlm", + "Upgrade": "etoe", + "Trains": "ewsp", + "Buttonpos": "0,2", + "Researches": "Renb,Repm", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "Upgrade,First", + "Attachmentanimprops": "upgrade,first,large", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTreeOfAges.blp", + "buildingShadow": "ShadowTreeofLife", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aent,Aeat,Aro1,Abdl,Atol,Arlm", + "uberSplat": "EMDA", + "skinnableID": "etoa", + "file": "buildings\\nightelf\\TreeofLife\\TreeofLife", + "unitSound": "TreeofLife", + "blend": "0.4", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.83", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "200", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "etoe": { + "unitID": "etoe", + "sort": "c3", + "comment(s)": "TreeofEternity", + "race": "nightelf", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12TreeOfLife.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "etoe", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "treeofeternity", + "unitClass": "EBuilding03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "etoe", + "sortBalance": "c3", + "sort2": "xbui", + "level": 3, + "type": "TownHall,Ancient", + "goldcost": 990, + "lumbercost": 565, + "goldRep": 990, + "lumberRep": 565, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 130, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "etoe", + "sortWeap": "c3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 15, + "dmgplus1": 59, + "dmgUp1": "-", + "mindmg1": 60, + "avgdmg1": 67, + "maxdmg1": 74, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 26.8, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 15, + "dmgplus2": 59, + "dmgUp2": "-", + "mindmg2": 60, + "avgdmg2": 67, + "maxdmg2": 74, + "dmgpt2": 0.4, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "etoe", + "sortAbil": "c3", + "auto": "_", + "abilList": "Aent,Aeat,Aro1,Abdl,Atol,Arlm", + "Requires": "eate", + "Trains": "ewsp", + "Buttonpos": "0,2", + "Researches": "Renb,Repm", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "Upgrade,Second", + "Attachmentanimprops": "upgrade,second,large", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTreeOfEternity.blp", + "buildingShadow": "ShadowTreeofLife", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aent,Aeat,Aro1,Abdl,Atol,Arlm", + "uberSplat": "EMDA", + "skinnableID": "etoe", + "file": "buildings\\nightelf\\TreeofLife\\TreeofLife", + "unitSound": "TreeofLife", + "blend": "0.4", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "180", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "etol": { + "unitID": "etol", + "sort": "c3", + "comment(s)": "TreeofLife", + "race": "nightelf", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12TreeOfLife.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "etol", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "treeoflife", + "unitClass": "EBuilding01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "etol", + "sortBalance": "c3", + "sort2": "xbui", + "level": 1, + "type": "TownHall,Ancient", + "goldcost": 340, + "lumbercost": 185, + "goldRep": 340, + "lumberRep": 185, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1300, + "realHP": 1300, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 120, + "reptm": 120, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "etol", + "sortWeap": "c3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 45.5, + "maxdmg1": 50, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 18.2, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 10, + "dmgplus2": 40, + "dmgUp2": "-", + "mindmg2": 41, + "avgdmg2": 45.5, + "maxdmg2": 50, + "dmgpt2": 0.4, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "etol", + "sortAbil": "c3", + "auto": "_", + "abilList": "Aent,Aeat,Aro1,Abdl,Atol,Arlm", + "Upgrade": "etoa", + "Trains": "ewsp", + "Buttonpos": "0,0", + "Researches": "Renb,Repm", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTreeOfLife.blp", + "buildingShadow": "ShadowTreeofLife", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aent,Aeat,Aro1,Abdl,Atol,Arlm", + "uberSplat": "EMDA", + "skinnableID": "etol", + "file": "buildings\\nightelf\\TreeofLife\\TreeofLife", + "unitSound": "TreeofLife", + "blend": "0.4", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "160", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "etrp": { + "unitID": "etrp", + "sort": "c3", + "comment(s)": "Ancient Protector", + "race": "nightelf", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 55, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "etrp", + "sortUI": "c3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancientprotector", + "unitClass": "EBuilding10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "etrp", + "sortBalance": "c3", + "sort2": "tow", + "level": 3, + "type": "Ancient", + "goldcost": 135, + "lumbercost": 80, + "goldRep": 135, + "lumberRep": 80, + "fmade": " - ", + "fused": "-", + "bountydice": 3, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "etrp", + "sortWeap": "c3", + "weapsOn": 3, + "acquire": 700, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.4, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 29.5, + "maxdmg1": 33, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 21.0714285714286, + "targs2": "air,ground,structure,debris,item,ward", + "rangeN2": 700, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.7, + "mincool2": "-", + "dice2": 1, + "sides2": 10, + "dmgplus2": 44, + "dmgUp2": "-", + "mindmg2": 45, + "avgdmg2": 49.5, + "maxdmg2": 54, + "dmgpt2": 0.6, + "backSw2": 0.4, + "Farea2": 25, + "Harea2": 75, + "Qarea2": 125, + "Hfact2": 0.15, + "Qfact2": 0.05, + "splashTargs2": "ground,structure,debris,wall,enemy,neutral,ward", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "etrp", + "sortAbil": "c3", + "auto": "_", + "abilList": "Abds,Aeat,Aro2", + "Requires": "edob", + "Buttonpos": "3,0", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "750", + "MissileHoming": "0,1", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTreant.blp", + "buildingShadow": "ShadowAncientProtector", + "skinType": "unit", + "abilSkinList": "Abds,Aeat,Aro2", + "uberSplat": "ESMA", + "skinnableID": "etrp", + "file": "buildings\\nightelf\\AncientProtector\\AncientProtector", + "unitSound": "AncientProtector", + "blend": "0.4", + "scale:hd": "3.6", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "125", + "walk:hd": "40", + "run:sd": "125", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "125", + "shadowY": "125", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "310", + "addon": "Buildings" + }, + "Ucrl": { + "unitID": "Ucrl", + "sort": "d1", + "comment(s)": "HeroCryptLord", + "race": "undead", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 9, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Ucrl", + "sortUI": "d1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cryptlord", + "unitClass": "UHero06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ucrl", + "sortBalance": "d1", + "sort2": "uher", + "level": 5, + "type": "undead", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 25, + "realHP": 675, + "regenHP": 2, + "regenType": "blight", + "manaN": 0, + "realM": 210, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 26, + "INT": 14, + "AGI": 14, + "STRplus": 3.2, + "INTplus": 1.6, + "AGIplus": 1.2, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ucrl", + "sortWeap": "d1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.1, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.46, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.63157894736842, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.9, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ucrl", + "sortAbil": "d1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUim,AUts,AUcb,AUls", + "Buttonpos": "0,1", + "RequiresCount": "3", + "Requires1": "unp1", + "Requires2": "unp2", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-cryptlord.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroCryptLord.blp", + "skinType": "unit", + "heroAbilSkinList": "AUim,AUts,AUcb,AUls", + "abilSkinList": "AInv", + "skinnableID": "Ucrl", + "file": "units\\undead\\HeroCryptLord\\HeroCryptLord", + "unitSound": "HeroCryptLord", + "blend": "0.15", + "scale": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "30", + "maxRoll": "30", + "elevRad": "100", + "walk:sd": "180", + "walk:hd": "290", + "run:sd": "180", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "280", + "shadowH": "280", + "shadowX": "112", + "shadowY": "112", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "addon": "Heroes" + }, + "Udea": { + "unitID": "Udea", + "sort": "d1", + "comment(s)": "HeroDeathKnight", + "race": "undead", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 15, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Udea", + "sortUI": "d1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "deathknight", + "unitClass": "UHero01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Udea", + "sortBalance": "d1", + "sort2": "uher", + "level": 5, + "type": "undead", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 675, + "regenHP": 2, + "regenType": "blight", + "manaN": 0, + "realM": 255, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2.6, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 23, + "INT": 17, + "AGI": 12, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Udea", + "sortWeap": "d1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.452, + "castbsw": 1.008, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.33, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.56, + "backSw1": 0.41, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.00429184549356, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.33, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.56, + "backSw2": 0.41, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Udea", + "sortAbil": "d1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUdc,AUdp,AUau,AUa2", + "Buttonpos": "0,2", + "RequiresCount": "3", + "Requires1": "unp1", + "Requires2": "unp2", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-deathknight.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNArthasEvil.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDeathKnight.blp", + "skinType": "unit", + "heroAbilSkinList": "AUdc,AUdp,AUau,AUa2", + "abilSkinList": "AInv", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "skinnableID": "Udea", + "file:hd": "Units\\Undead\\EvilArthas\\UndeadArthas", + "file:sd": "Units\\Undead\\HeroDeathknight\\HeroDeathknight", + "unitSound": "HeroDeathKnight", + "blend": "0.15", + "scale": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "380", + "walk:hd": "320", + "run:sd": "380", + "run:hd": "320", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "Units\\Undead\\HeroDeathknight\\HeroDeathknight_portrait", + "portrait:hd": "Units\\Undead\\EvilArthas\\UndeadArthas_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "76", + "launchZ:hd": "130", + "addon": "Heroes" + }, + "Udre": { + "unitID": "Udre", + "sort": "d1", + "comment(s)": "HeroDreadLord", + "race": "undead", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 18, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Udre", + "sortUI": "d1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dreadlord", + "unitClass": "UHero03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Udre", + "sortBalance": "d1", + "sort2": "uher", + "level": 5, + "type": "undead", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 2, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 2.5, + "AGIplus": 1, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Udre", + "sortWeap": "d1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.53, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.8, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Udre", + "sortAbil": "d1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUav,AUsl,AUcs,AUin", + "Buttonpos": "1,2", + "RequiresCount": "3", + "Requires1": "unp1", + "Requires2": "unp2", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-dreadlord.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroDreadLord.blp", + "skinType": "unit", + "heroAbilSkinList": "AUav,AUsl,AUcs,AUin", + "abilSkinList": "AInv", + "skinnableID": "Udre", + "file": "units\\undead\\HeroDreadLord\\HeroDreadLord", + "unitSound": "HeroDreadLord", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "290", + "run:sd": "240", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.12", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Ulic": { + "unitID": "Ulic", + "sort": "d1", + "comment(s)": "HeroLich", + "race": "undead", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 30, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 3, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 15, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "Ulic", + "sortUI": "d1", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "lich", + "unitClass": "UHero02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ulic", + "sortBalance": "d1", + "sort2": "uher", + "level": 5, + "type": "undead", + "goldcost": 400, + "lumbercost": 100, + "goldRep": 400, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 475, + "regenHP": 2, + "regenType": "blight", + "manaN": 0, + "realM": 300, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 20, + "AGI": 14, + "STRplus": 2, + "INTplus": 3.4, + "AGIplus": 1, + "abilTest": 6.4, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ulic", + "sortWeap": "d1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 1.1, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.46, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.63157894736842, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.9, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ulic", + "sortAbil": "d1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUfn,AUfu,AUdr,AUdd", + "Buttonpos": "2,2", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "RequiresCount": "3", + "Requires1": "unp1", + "Requires2": "unp2", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-lich.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHeroLich.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLichVersion2.blp", + "skinType": "unit", + "heroAbilSkinList": "AUfn,AUfu,AUdr,AUdd", + "abilSkinList": "AInv", + "skinnableID": "Ulic", + "file": "units\\undead\\HeroLich\\HeroLich", + "unitSound": "HeroLich", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "75", + "addon": "Heroes" + }, + "uabo": { + "unitID": "uabo", + "sort": "d2", + "comment(s)": "Abomination", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.17, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uabo", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "abomination", + "unitClass": "UUnit04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uabo", + "sortBalance": "d2", + "sort2": "me2", + "level": 4, + "type": "undead", + "goldcost": 240, + "lumbercost": 70, + "goldRep": 240, + "lumberRep": 70, + "fmade": " - ", + "fused": 4, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1175, + "realHP": 1175, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 45, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ruar,Rume,Rupc,Rupm,Rguv,Ruac", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "uabo", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.9, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 34, + "dmgUp1": "-", + "mindmg1": 35, + "avgdmg1": 38, + "maxdmg1": 41, + "dmgpt1": 0.5, + "backSw1": 1.17, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 20, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uabo", + "sortAbil": "d2", + "auto": "_", + "abilList": "Aap1,Aiun,Acn2", + "Requires": "unp2", + "Buttonpos": "1,0", + "Specialart": "Units\\Undead\\Abomination\\AbominationExplosion.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAbomination.blp", + "skinType": "unit", + "abilSkinList": "Aap1,Aiun,Acn2", + "abilSkinList:melee,V0": "Aap1", + "abilSkinList:custom,V0": "Aap1", + "skinnableID": "uabo", + "file": "units\\undead\\Abomination\\Abomination", + "unitSound": "Abomination", + "blend": "0.3", + "scale": "2.1", + "legacyScale": "2.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "uaco": { + "unitID": "uaco", + "sort": "d2", + "comment(s)": "Acolyte", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uaco", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "acolyte", + "unitClass": "UUnit01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uaco", + "sortBalance": "d2", + "sort2": "peo", + "level": 1, + "type": "Peon,undead", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 230, + "realHP": 230, + "regenHP": 3, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 235, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "uaco", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 9.5, + "maxdmg1": 10, + "dmgpt1": 0.4, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 3.8, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uaco", + "sortAbil": "d2", + "auto": "_", + "abilList": "Aaha,Arst,Alam,Auns", + "Builds": "unpl,uzig,usep,ugrv,uaod,utod,uslh,ubon,usap,ugol,utom", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAcolyte.blp", + "skinType": "unit", + "abilSkinList": "Aaha,Arst,Alam,Auns", + "skinnableID": "uaco", + "file": "units\\undead\\Acolyte\\Acolyte", + "unitSound": "Acolyte", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "235", + "run:sd": "150", + "run:hd": "235", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "uban": { + "unitID": "uban", + "sort": "d2", + "comment(s)": "Banshee", + "race": "undead", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.17, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 50, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uban", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "banshee", + "unitClass": "UUnit10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uban", + "sortBalance": "d2", + "sort2": "cas", + "level": 2, + "type": "undead", + "goldcost": 155, + "lumbercost": 30, + "goldRep": 155, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 285, + "realHP": 285, + "regenHP": 2, + "regenType": "blight", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.666666666666667, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ruba,Rupm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "uban", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 11, + "maxdmg1": 13, + "dmgpt1": 0.56, + "backSw1": 0.51, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 7.33333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uban", + "sortAbil": "d2", + "auto": "Acrs", + "abilList": "Aam2,Acrs,Aps2,Aiun", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\BansheeMissile\\BansheeMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-banshee.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanshee.blp", + "skinType": "unit", + "abilSkinList": "Aam2,Acrs,Aps2,Aiun", + "abilSkinList:melee,V0": "Aams,Acrs,Apos", + "abilSkinList:custom,V0": "Aams,Acrs,Apos", + "abilSkinList:custom,V1": "Aams,Acrs,Apos,Aiun", + "skinnableID": "uban", + "file": "units\\undead\\Banshee\\Banshee", + "unitSound": "Banshee", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "30", + "impactZ:hd": "15", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "35", + "addon": "Units" + }, + "ubsp": { + "unitID": "ubsp", + "sort": "d2", + "comment(s)": "destroyer", + "race": "undead", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.67, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ubsp", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "obsidiandestroyer", + "unitClass": "UUnit15", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ubsp", + "sortBalance": "d2", + "sort2": "fly2", + "level": 5, + "type": "undead", + "goldcost": 300, + "lumbercost": 85, + "goldRep": 300, + "lumberRep": 85, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 850, + "realHP": 850, + "regenHP": 2, + "regenType": "blight", + "manaN": 400, + "realM": 400, + "mana0": 0, + "regenMana": -3, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "small", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 60, + "sight": 1400, + "nsight": 1000, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rura,Rucr,Rusp,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "ubsp", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.66, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "msplash", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 18, + "dmgUp1": "-", + "mindmg1": 19, + "avgdmg1": 20, + "maxdmg1": 21, + "dmgpt1": 0.633, + "backSw1": 0.337, + "Farea1": 1, + "Harea1": 1, + "Qarea1": 1, + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,air,structure,debris,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 15, + "DPS": 14.8148148148148, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ubsp", + "sortAbil": "d2", + "auto": "Afak", + "abilList": "Advm,Afak,Aave,Aabs,ACmi", + "Missileart": "Abilities\\Weapons\\AvengerMissile\\AvengerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "large", + "Attachmentlinkprops": "alternate", + "Animprops": "alternate", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDestroyer.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Advm,Afak,Aave,Aabs,ACmi", + "skinnableID": "ubsp", + "file": "units\\undead\\ObsidianStatue\\ObsidianStatue", + "unitSound": "ObsidianDestroyer", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "350", + "walk:hd": "320", + "run:sd": "350", + "run:hd": "320", + "selZ:hd": "215", + "selZ:sd": "230", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "0.85", + "legacyModelScale": "0.85", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "10", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "10", + "launchZ:hd": "50", + "projectileVisOffsetX:hd": "43", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "ucrm": { + "unitID": "ucrm", + "sort": "d2", + "comment(s)": "CryptFiendMorph", + "race": "undead", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.04, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ucrm", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cryptfiendmorph", + "unitClass": "UUnit07", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ucrm", + "sortBalance": "d2", + "sort2": "ran", + "level": 3, + "type": "undead", + "goldcost": 215, + "lumbercost": 40, + "goldRep": 215, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 550, + "realHP": 550, + "regenHP": 5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rura,Rucr,Ruwb,Rubu,Rupm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ucrm", + "sortWeap": "d2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ucrm", + "sortAbil": "d2", + "auto": "_", + "abilList": "Aweb,Aspa,Abur,Aiun", + "Requires": "ugrv", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\CryptFiendMissile\\CryptFiendMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiend.blp", + "skinType": "unit", + "abilSkinList": "Aweb,Aspa,Abur,Aiun", + "skinnableID": "ucrm", + "file": "units\\undead\\CryptFiend\\CryptFiend", + "unitSound": "CryptFiend", + "blend": "0.15", + "scale": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk": "180", + "run": "180", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "shadowW": "240", + "shadowH": "240", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ucry": { + "unitID": "ucry", + "sort": "d2", + "comment(s)": "CryptFiend", + "race": "undead", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.04, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ucry", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cryptfiend", + "unitClass": "UUnit06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ucry", + "sortBalance": "d2", + "sort2": "ran", + "level": 3, + "type": "undead", + "goldcost": 215, + "lumbercost": 40, + "goldRep": 215, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 550, + "realHP": 550, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rura,Rucr,Ruwb,Rubu,Rupm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ucry", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 28.5, + "maxdmg1": 31, + "dmgpt1": 0.64, + "backSw1": 0.36, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 14.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ucry", + "sortAbil": "d2", + "auto": "Aweb", + "abilList": "Aweb,Aspa,Abur,Aiun", + "DependencyOr": "ucrm", + "Requires": "ugrv", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\CryptFiendMissile\\CryptFiendMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiend.blp", + "skinType": "unit", + "abilSkinList": "Aweb,Aspa,Abur,Aiun", + "abilSkinList:melee,V0": "Aweb,Aspa", + "abilSkinList:custom,V0": "Aweb,Aspa", + "skinnableID": "ucry", + "file": "units\\undead\\CryptFiend\\CryptFiend", + "unitSound": "CryptFiend", + "blend": "0.15", + "scale": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ucs1": { + "unitID": "ucs1", + "sort": "d2", + "comment(s)": "carrion scarab level 1", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ucs1", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "carrionscarab1", + "unitClass": "UUnit17", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ucs1", + "sortBalance": "d2", + "sort2": "sum", + "level": 1, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 170, + "realHP": 170, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 280, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ucs1", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 8, + "avgdmg1": 8.5, + "maxdmg1": 9, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 5.66666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ucs1", + "sortAbil": "d2", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsLV1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp", + "skinType": "unit", + "skinnableID": "ucs1", + "file": "units\\undead\\scarab\\scarab", + "unitSound": "Scarab", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "63", + "walk:hd": "280", + "run:sd": "63", + "run:hd": "280", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.4", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ucs2": { + "unitID": "ucs2", + "sort": "d2", + "comment(s)": "carrion scarab level 2", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ucs2", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "carrionscarab2", + "unitClass": "UUnit18", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ucs2", + "sortBalance": "d2", + "sort2": "sum", + "level": 2, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 280, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ucs2", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 14, + "dmgUp1": "-", + "mindmg1": 15, + "avgdmg1": 16.5, + "maxdmg1": 18, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ucs2", + "sortAbil": "d2", + "auto": "_", + "abilList": "Abu2", + "DependencyOr": "ucsB", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp", + "skinType": "unit", + "abilSkinList": "Abu2", + "skinnableID": "ucs2", + "file:hd": "Units\\Undead\\ScarabLvl2\\ScarabLvl2", + "file:sd": "units\\undead\\scarab\\scarab", + "unitSound": "Scarab", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "63", + "walk:hd": "280", + "run:sd": "63", + "run:hd": "280", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.4", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\undead\\scarab\\scarab_portrait", + "portrait:hd": "Units\\Undead\\ScarabLvl2\\ScarabLvl2_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ucs3": { + "unitID": "ucs3", + "sort": "d2", + "comment(s)": "carrion scarab level 3", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ucs3", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "carrionscarab3", + "unitClass": "UUnit19", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ucs3", + "sortBalance": "d2", + "sort2": "sum", + "level": 3, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 440, + "realHP": 440, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 280, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ucs3", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 21, + "dmgUp1": "-", + "mindmg1": 22, + "avgdmg1": 24.5, + "maxdmg1": 27, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 26, + "DPS": 16.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ucs3", + "sortAbil": "d2", + "auto": "_", + "abilList": "Abu3", + "DependencyOr": "ucsC", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp", + "skinType": "unit", + "abilSkinList": "Abu3", + "skinnableID": "ucs3", + "file:hd": "Units\\Undead\\ScarabLvl3\\ScarabLvl3", + "file:sd": "units\\undead\\scarab\\scarab", + "unitSound": "Scarab", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "63", + "walk:hd": "280", + "run:sd": "63", + "run:hd": "280", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.5", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\undead\\scarab\\scarab_portrait", + "portrait:hd": "Units\\Undead\\ScarabLvl3\\ScarabLvl3_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ucsB": { + "unitID": "ucsB", + "sort": "d2", + "comment(s)": "carrion scarab level 2 -burrowed", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ucsB", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "carrionscarabburrowed2", + "unitClass": "UUnit18", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ucsB", + "sortBalance": "d2", + "sort2": "sum", + "level": 2, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ucsB", + "sortWeap": "d2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ucsB", + "sortAbil": "d2", + "auto": "_", + "abilList": "Abu2", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp", + "skinType": "unit", + "abilSkinList": "Abu2", + "skinnableID": "ucsB", + "file:hd": "Units\\Undead\\ScarabLvl2\\ScarabLvl2", + "file:sd": "units\\undead\\scarab\\scarab", + "unitSound": "Scarab", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk": "63", + "run": "63", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.4", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "255", + "portrait:sd": "units\\undead\\scarab\\scarab_portrait", + "portrait:hd": "Units\\Undead\\ScarabLvl2\\ScarabLvl2_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ucsC": { + "unitID": "ucsC", + "sort": "d2", + "comment(s)": "carrion scarab level 3 -burrowed", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ucsC", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "carrionscarabburrowed3", + "unitClass": "UUnit19", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ucsC", + "sortBalance": "d2", + "sort2": "sum", + "level": 3, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 440, + "realHP": 440, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ucsC", + "sortWeap": "d2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ucsC", + "sortAbil": "d2", + "auto": "_", + "abilList": "Abu3", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp", + "skinType": "unit", + "abilSkinList": "Abu3", + "skinnableID": "ucsC", + "file:hd": "Units\\Undead\\ScarabLvl3\\ScarabLvl3", + "file:sd": "units\\undead\\scarab\\scarab", + "unitSound": "Scarab", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk": "63", + "run": "63", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.5", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "170", + "portrait:sd": "units\\undead\\scarab\\scarab_portrait", + "portrait:hd": "Units\\Undead\\ScarabLvl3\\ScarabLvl3_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ufro": { + "unitID": "ufro", + "sort": "d2", + "comment(s)": "FrostWyrm", + "race": "undead", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ufro", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "frostwyrm", + "unitClass": "UUnit15", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ufro", + "sortBalance": "d2", + "sort2": "fly2", + "level": 6, + "type": "undead", + "goldcost": 385, + "lumbercost": 120, + "goldRep": 385, + "lumberRep": 120, + "fmade": " - ", + "fused": 7, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1350, + "realHP": 1350, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rura,Rucr,Rufb,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "ufro", + "sortWeap": "d2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.4, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 375, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "msplash", + "cool1": 3, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 91, + "dmgUp1": "-", + "mindmg1": 93, + "avgdmg1": 104, + "maxdmg1": 115, + "dmgpt1": 0.5, + "backSw1": 0.55, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 200, + "Hfact1": 0.2, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 41, + "DPS": 34.6666666666667, + "targs2": "air", + "rangeN2": 375, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "magic", + "weapTp2": "msplash", + "cool2": 3, + "mincool2": "-", + "dice2": 1, + "sides2": 11, + "dmgplus2": 83, + "dmgUp2": "-", + "mindmg2": 84, + "avgdmg2": 89, + "maxdmg2": 94, + "dmgpt2": 0.5, + "backSw2": 0.55, + "Farea2": 25, + "Harea2": 50, + "Qarea2": 200, + "Hfact2": 0.2, + "Qfact2": 0.1, + "splashTargs2": "air,enemy", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ufro", + "sortAbil": "d2", + "auto": "_", + "abilList": "Afrz,Afrc", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl", + "Missilearc": "0.1", + "Missilespeed": "800", + "MissileHoming": "1", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostWyrm.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Afrz,Afrc", + "abilSkinList:melee,V0": "Afrz,Afrb", + "abilSkinList:custom,V0": "Afrz,Afrb", + "abilSkinList:custom,V1": "Afrz,Afrb", + "skinnableID": "ufro", + "file": "units\\undead\\FrostWyrm\\FrostWyrm", + "unitSound": "FrostWyrm", + "blend": "0.4", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "280", + "shadowH": "280", + "shadowX": "140", + "shadowY": "140", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "-60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ugar": { + "unitID": "ugar", + "sort": "d2", + "comment(s)": "Gargoyle", + "race": "undead", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ugar", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gargoyle", + "unitClass": "UUnit08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ugar", + "sortBalance": "d2", + "sort2": "fly1", + "level": 2, + "type": "undead", + "goldcost": 175, + "lumbercost": 30, + "goldRep": 185, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 410, + "realHP": 410, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "none", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rura,Rucr,Rusf,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "ugar", + "sortWeap": "d2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.4, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 65.5, + "maxdmg1": 70, + "dmgpt1": 0.33, + "backSw1": 1, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 40, + "DPS": 46.7857142857143, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 300, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2.2, + "mincool2": "-", + "dice2": 1, + "sides2": 4, + "dmgplus2": 17, + "dmgUp2": "-", + "mindmg2": 18, + "avgdmg2": 19.5, + "maxdmg2": 21, + "dmgpt2": 0.633, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ugar", + "sortAbil": "d2", + "auto": "_", + "abilList": "Astn,Aatp", + "Requires": "ugrv,unp1", + "DependencyOr": "ugrm", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\GargoyleMissile\\GargoyleMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGargoyle.blp", + "skinType": "unit", + "abilSkinList": "Astn", + "skinnableID": "ugar", + "file": "units\\undead\\Gargoyle\\Gargoyle", + "unitSound": "Gargoyle", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "375", + "run:sd": "200", + "run:hd": "375", + "selZ": "230", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "25", + "impactZ:hd": "10", + "launchZ:hd": "30", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ugho": { + "unitID": "ugho", + "sort": "d2", + "comment(s)": "Ghoul", + "race": "undead", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ugho", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ghoul", + "unitClass": "UUnit03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ugho", + "sortBalance": "d2", + "sort2": "me1", + "level": 2, + "type": "undead", + "goldcost": 120, + "lumbercost": 0, + "goldRep": 120, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 340, + "realHP": 340, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ruar,Rume,Rugf,Rupm,Rguv,Ruac", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ugho", + "sortWeap": "d2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 2, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 13, + "maxdmg1": 14, + "dmgpt1": 0.39, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.62962962962963, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.35, + "mincool2": "-", + "dice2": 2, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 2, + "maxdmg2": 2, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ugho", + "sortAbil": "d2", + "auto": "_", + "abilList": "Acan,Ahrl,Aiun,Augf", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhoul.blp", + "skinType": "unit", + "abilSkinList": "Acan,Ahrl,Aiun,Augf", + "abilSkinList:melee,V0": "Acan,Ahrl", + "abilSkinList:custom,V0": "Acan,Ahrl", + "abilSkinList:custom,V1": "Acan,Ahrl,Aiun", + "skinnableID": "ugho", + "file": "units\\undead\\Ghoul\\Ghoul", + "unitSound": "Ghoul", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ugrm": { + "unitID": "ugrm", + "sort": "d2", + "comment(s)": "GargoyleMorphed", + "race": "undead", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ugrm", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gargoylemorphed", + "unitClass": "UUnit09", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ugrm", + "sortBalance": "d2", + "sort2": "fly1", + "level": 2, + "type": "undead", + "goldcost": 185, + "lumbercost": 30, + "goldRep": 185, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 410, + "realHP": 410, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 15, + "defUp": 2, + "realdef": 15, + "defType": "none", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rura,Rucr,Rusf,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ugrm", + "sortWeap": "d2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ugrm", + "sortAbil": "d2", + "auto": "_", + "abilList": "Astn,ACmi", + "Requires": "ugrv,unp2", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\GargoyleMissile\\GargoyleMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Attachmentlinkprops": "alternate", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStoneForm.blp", + "skinType": "unit", + "abilSkinList": "Astn,ACmi", + "abilSkinList:custom,V0": "Astn", + "skinnableID": "ugrm", + "file": "units\\undead\\Gargoyle\\Gargoyle", + "unitSound": "Gargoyle", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "uloc": { + "unitID": "uloc", + "sort": "d2", + "comment(s)": "locust", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 150, + "moveFloor": 45, + "turnRate": 0.2, + "propWin": 170, + "orientInterp": 0, + "formation": 0, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "uloc", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "locust", + "special": "1", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uloc", + "sortBalance": "d2", + "sort2": "sum", + "level": 0, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 65, + "realHP": 65, + "regenHP": 0.25, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": "-", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 400, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "uloc", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": 0, + "castbsw": 0, + "targs1": "enemy,air,ground", + "rangeN1": 10, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "spells", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 13.5, + "maxdmg1": 14, + "dmgpt1": 0, + "backSw1": 0, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 11, + "DPS": 13.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uloc", + "sortAbil": "d2", + "auto": "_", + "abilList": "Aloc", + "Missileart": "Abilities\\Weapons\\LocustMissile\\LocustMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "skinType": "unit", + "abilSkinList": "Aloc", + "skinnableID": "uloc", + "file": "units\\undead\\Locust\\Locust", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "20", + "walk:sd": "700", + "walk:hd": "400", + "run:sd": "700", + "run:hd": "400", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "35", + "shadowH": "35", + "shadowX": "17", + "shadowY": "17", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "0", + "addon": "Units" + }, + "umtw": { + "unitID": "umtw", + "sort": "d2", + "comment(s)": "MeatWagon", + "race": "undead", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.7, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "umtw", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "meatwagon", + "unitClass": "UUnit05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "umtw", + "sortBalance": "d2", + "sort2": "art", + "level": 2, + "type": "Mechanical", + "goldcost": 230, + "lumbercost": 50, + "goldRep": 230, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 380, + "realHP": 380, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 36, + "reptm": 36, + "sight": 1400, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rupc,Rume,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "umtw", + "sortWeap": "d2", + "weapsOn": 3, + "acquire": 1150, + "minRange": 250, + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,debris,tree,wall,item,ward", + "rangeN1": 1150, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 4, + "mincool1": "-", + "dice1": 1, + "sides1": 18, + "dmgplus1": 70, + "dmgUp1": "-", + "mindmg1": 71, + "avgdmg1": 79.5, + "maxdmg1": 88, + "dmgpt1": 0.7, + "backSw1": 1.3, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 150, + "Hfact1": 0.4, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,tree,wall,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 19.875, + "targs2": "structure", + "rangeN2": 1150, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 4, + "mincool2": "-", + "dice2": 1, + "sides2": 18, + "dmgplus2": 70, + "dmgUp2": "-", + "mindmg2": 71, + "avgdmg2": 79.5, + "maxdmg2": 88, + "dmgpt2": 0.7, + "backSw2": 1.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "umtw", + "sortAbil": "d2", + "auto": "_", + "abilList": "Sch2,Amel,Amed,Apts,Aexh", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\MeatwagonMissile\\MeatwagonMissile.mdl", + "Missilearc": "0.3", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMeatWagon.blp", + "skinType": "unit", + "abilSkinList": "Sch2,Amel,Amed,Apts,Aexh", + "abilSkinList:melee,V0": "Sch2,Amel,Amed,Apts", + "abilSkinList:custom,V0": "Sch2,Amel,Amed,Apts", + "skinnableID": "umtw", + "file": "units\\undead\\MeatWagon\\MeatWagon", + "unitSound": "MeatWagon", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "220", + "run:sd": "150", + "run:hd": "220", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "260", + "shadowH": "260", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "150", + "launchZ:hd": "175", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "55", + "addon": "Units" + }, + "unec": { + "unitID": "unec", + "sort": "d2", + "comment(s)": "Necromancer", + "race": "undead", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "unec", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "necromancer", + "unitClass": "UUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "unec", + "sortBalance": "d2", + "sort2": "cas", + "level": 2, + "type": "undead", + "goldcost": 145, + "lumbercost": 20, + "goldRep": 145, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 315, + "realHP": 315, + "regenHP": 2, + "regenType": "blight", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.666666666666667, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 24, + "reptm": 24, + "sight": 1400, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rune,Rusm,Rupm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "unec", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 5.83333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "unec", + "sortAbil": "d2", + "auto": "_", + "abilList": "Acri,Arai,Aiun,Auhf,Ausm", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-necromancer.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecromancer.blp", + "skinType": "unit", + "abilSkinList": "Acri,Arai,Aiun,Auhf,Ausm", + "abilSkinList:melee,V0": "Acri,Arai,Auhf", + "abilSkinList:custom,V0": "Acri,Arai,Auhf", + "abilSkinList:custom,V1": "Acri,Arai,Auhf,Aiun", + "skinnableID": "unec", + "file": "units\\undead\\Necromancer\\Necromancer", + "unitSound": "Necromancer", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "5", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "uobs": { + "unitID": "uobs", + "sort": "d2", + "comment(s)": "Obsidian Statue", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 0, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "uobs", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "obsidianstatue", + "unitClass": "UUnit14", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uobs", + "sortBalance": "d2", + "sort2": "cas", + "level": 3, + "type": "Mechanical", + "goldcost": 200, + "lumbercost": 35, + "goldRep": 200, + "lumberRep": 35, + "fmade": " - ", + "fused": 3, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": 600, + "realM": 600, + "mana0": 400, + "regenMana": 1.5, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rusp,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "uobs", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 575, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 7.5, + "maxdmg1": 8, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 3.57142857142857, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uobs", + "sortAbil": "d2", + "auto": "_", + "abilList": "Arpl,Arpm,Aave", + "DependencyOr": "ubsp", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Attachmentanimprops": "large", + "Requires": "utom", + "Art": "ReplaceableTextures\\CommandButtons\\BTNObsidianStatue.blp", + "skinType": "unit", + "abilSkinList": "Arpl,Arpm,Aave", + "skinnableID": "uobs", + "file": "units\\undead\\ObsidianStatue\\ObsidianStatue", + "unitSound": "ObsidianStatue", + "blend": "0.3", + "scale": "2.1", + "legacyScale": "2.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "0.85", + "legacyModelScale": "0.85", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "150", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "uplg": { + "unitID": "uplg", + "sort": "d2", + "comment(s)": "PlagueWard", + "race": "undead", + "prio": 0, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uplg", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "plagueward", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uplg", + "sortBalance": "d2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 100, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "uplg", + "sortWeap": "d2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uplg", + "sortAbil": "d2", + "auto": "_", + "abilList": "Aap2", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp", + "skinType": "unit", + "abilSkinList": "Aap2", + "skinnableID": "uplg", + "file": "units\\undead\\PlagueCloud\\PlagueCloud", + "unitSound": "PlagueCloud", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Vfx" + }, + "ushd": { + "unitID": "ushd", + "sort": "d2", + "comment(s)": "Shade", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 30, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 3, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ushd", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "shade", + "unitClass": "UUnit02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ushd", + "sortBalance": "d2", + "sort2": "zz", + "level": 1, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 125, + "realHP": 125, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ushd", + "sortWeap": "d2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ushd", + "sortAbil": "d2", + "auto": "_", + "abilList": "Atru,Agho,Augh", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShade.blp", + "skinType": "unit", + "abilSkinList": "Atru,Agho,Augh", + "abilSkinList:melee,V0": "Atru,Agho", + "abilSkinList:custom,V0": "Atru,Agho", + "abilSkinList:custom,V1": "Atru,Agho", + "skinnableID": "ushd", + "file": "units\\undead\\Shade\\Shade", + "unitSound": "Shade", + "blend": "1.5", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "uske": { + "unitID": "uske", + "sort": "d2", + "comment(s)": "SkeletonWarrior", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uske", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletonwarrior", + "unitClass": "UUnit12", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uske", + "sortBalance": "d2", + "sort2": "sum", + "level": 1, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 3, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 180, + "realHP": 180, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ruar,Rume,Rguv,Rusm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "uske", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 7.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uske", + "sortAbil": "d2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "skinType": "unit", + "skinnableID": "uske", + "file": "units\\undead\\Skeleton\\Skeleton", + "unitSound": "Skeleton", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "uskm": { + "unitID": "uskm", + "sort": "d2", + "comment(s)": "Skeletal Mage", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "uskm", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletalmage", + "unitClass": "UUnit13", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uskm", + "sortBalance": "d2", + "sort2": "sum", + "level": 1, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 3, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 240, + "realHP": 240, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ruar,Rume,Rguv,Rusm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "uskm", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 11.5, + "maxdmg1": 12, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.66666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uskm", + "sortAbil": "d2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\SkeletalMageMissile\\SkeletalMageMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonMage.blp", + "skinType": "unit", + "skinnableID": "uskm", + "file": "units\\undead\\SkeletonMage\\SkeletonMage", + "unitSound": "Skeleton", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "70", + "addon": "Units" + }, + "uubs": { + "unitID": "uubs", + "sort": "d2", + "comment(s)": "undead battleship", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.1, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "uubs", + "sortUI": "d2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "undeadbattleship", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "uubs", + "sortBalance": "d2", + "sort2": "zz", + "level": 6, + "type": "Mechanical", + "goldcost": 500, + "lumbercost": 200, + "goldRep": 500, + "lumberRep": 200, + "fmade": " - ", + "fused": 0, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1000, + "realHP": 1000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 2, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "uubs", + "sortWeap": "d2", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 900, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 2, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 75, + "dmgUp1": "-", + "mindmg1": 78, + "avgdmg1": 91.5, + "maxdmg1": 105, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 100, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 45.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uubs", + "sortAbil": "d2", + "auto": "_", + "abilList": "_", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\BoatMissile\\BoatMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadBattleShip.blp", + "skinType": "unit", + "skinnableID": "uubs", + "file": "units\\creeps\\UndeadShipBattleShip\\UndeadShipBattleShip", + "portrait:sd": "units\\creeps\\UndeadShipBattleShip\\UndeadShipBattleShip", + "portrait:hd": "units\\creeps\\UndeadShipBattleShip\\UndeadShipBattleShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "400", + "shadowH": "400", + "shadowX": "180", + "shadowY": "180", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "0", + "addon": "Units" + }, + "uaod": { + "unitID": "uaod", + "sort": "d3", + "comment(s)": "AltarofDarkness", + "race": "undead", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\10x10Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uaod", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "altarofdarkness", + "unitClass": "UBuilding07", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uaod", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 180, + "lumbercost": 50, + "goldRep": 180, + "lumberRep": 50, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "uaod", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uaod", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs", + "Trains": "Udea,Ulic,Udre,Ucrl", + "Buttonpos": "1,1", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Revive": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfDarkness.blp", + "buildingShadow": "ShadowAltarOfDarkness", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs", + "uberSplat": "UMED", + "skinnableID": "uaod", + "file": "buildings\\undead\\AltarOfDarkness\\AltarOfDarkness", + "portrait:sd": "buildings\\undead\\AltarOfDarkness\\AltarOfDarkness", + "portrait:hd": "buildings\\undead\\AltarOfDarkness\\AltarOfDarkness_portrait", + "unitSound": "AltarOfDarkness", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ubon": { + "unitID": "ubon", + "sort": "d3", + "comment(s)": "Boneyard", + "race": "undead", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ubon", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "boneyard", + "unitClass": "UBuilding13", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ubon", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 150, + "lumbercost": 200, + "goldRep": 150, + "lumberRep": 200, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "ubon", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ubon", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs", + "Requires": "unp2", + "Trains": "ufro", + "Researches": "Rufb", + "Buttonpos": "1,2", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBoneyard.blp", + "buildingShadow": "ShadowBoneYard", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs", + "uberSplat": "UMED", + "skinnableID": "ubon", + "file": "buildings\\undead\\BoneYard\\BoneYard", + "portrait:sd": "buildings\\undead\\BoneYard\\BoneYard", + "portrait:hd": "buildings\\undead\\BoneYard\\BoneYard_portrait", + "unitSound": "BoneYard", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ugol": { + "unitID": "ugol", + "sort": "d3", + "comment(s)": "UndeadGoldMine", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Goldmine.tga", + "fatLOS": 0, + "points": 100, + "buffType": "resource", + "buffRadius": 7, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 1, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ugol", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "undeadgoldmine2", + "unitClass": "UBuilding14", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ugol", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 225, + "lumbercost": 210, + "goldRep": 225, + "lumberRep": 210, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 950, + "realHP": 950, + "regenHP": 0, + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 105, + "reptm": 105, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ugol", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ugol", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs,Abgm", + "Buttonpos": "2,0", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHauntedMine.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGoldMine.blp", + "buildingShadow": "BuildingShadowLarge", + "skinType": "unit", + "abilSkinList": "Abgs,Abgm", + "abilSkinList:melee,V0": "Abgl,Abgm", + "abilSkinList:custom,V0": "Abgl,Abgm", + "abilSkinList:custom,V1": "Abgl,Abgm", + "uberSplat": "UMED", + "skinnableID": "ugol", + "file": "buildings\\undead\\HauntedMine\\HauntedMine", + "portrait:sd": "buildings\\undead\\HauntedMine\\HauntedMine", + "portrait:hd": "buildings\\undead\\HauntedMine\\HauntedMine_portrait", + "unitSound": "HauntedMine", + "blend": "0.15", + "scale": "5.5", + "legacyScale": "5.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "run:sd": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ugrv": { + "unitID": "ugrv", + "sort": "d3", + "comment(s)": "Graveyard", + "race": "undead", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ugrv", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "graveyard", + "unitClass": "UBuilding10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ugrv", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 215, + "lumbercost": 0, + "goldRep": 215, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "ugrv", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": " - ", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": " - ", + "backSw1": " - ", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ugrv", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs,Agyd,Arlm", + "Researches": "Rume,Ruar,Rura,Rucr", + "Buttonpos": "3,0", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGraveyard.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs,Agyd,Arlm", + "uberSplat": "UMED", + "skinnableID": "ugrv", + "file": "buildings\\undead\\Graveyard\\Graveyard", + "portrait:sd": "buildings\\undead\\Graveyard\\Graveyard", + "portrait:hd": "buildings\\undead\\Graveyard\\Graveyard_portrait", + "unitSound": "Graveyard", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "unp1": { + "unitID": "unp1", + "sort": "d3", + "comment(s)": "Halls of the Dead", + "race": "undead", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\UndeadNecropolis.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "unp1", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "necropolis1", + "unitClass": "UBuilding02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "unp1", + "sortBalance": "d3", + "sort2": "tow", + "level": 2, + "type": "TownHall,undead,Mechanical", + "goldcost": 545, + "lumbercost": 210, + "goldRep": 545, + "lumberRep": 210, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1750, + "realHP": 1750, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 120, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 196, + "stockInitial": "-", + "unitWeaponID": "unp1", + "sortWeap": "d3", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 800, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 11.5, + "maxdmg1": 12, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 11.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "unp1", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgl,Arlm,Afr2", + "Upgrade": "unp2", + "Trains": "uaco", + "Researches": "Rupm", + "Animprops": "upgrade,first", + "Buttonpos": "0,2", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\ZigguratFrostMissile\\ZigguratFrostMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHallOfTheDead.blp", + "buildingShadow": "ShadowHallsoftheDead", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgl,Arlm,Afr2", + "abilSkinList:melee,V0": "Abgl,Arlm", + "abilSkinList:custom,V0": "Abgl,Arlm", + "abilSkinList:custom,V1": "Abgl,Arlm", + "uberSplat": "ULAR", + "skinnableID": "unp1", + "file": "buildings\\undead\\Necropolis\\Necropolis", + "portrait:sd": "buildings\\undead\\Necropolis\\Necropolis", + "portrait:hd": "buildings\\undead\\Necropolis\\Necropolis_portrait", + "unitSound": "Necropolisu1", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "260", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "unp2": { + "unitID": "unp2", + "sort": "d3", + "comment(s)": "Black Citadel", + "race": "undead", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\UndeadNecropolis.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "unp2", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "necropolis2", + "unitClass": "UBuilding03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "unp2", + "sortBalance": "d3", + "sort2": "tow", + "level": 3, + "type": "TownHall,undead,Mechanical", + "goldcost": 870, + "lumbercost": 440, + "goldRep": 870, + "lumberRep": 440, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 140, + "reptm": 120, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 196, + "stockInitial": "-", + "unitWeaponID": "unp2", + "sortWeap": "d3", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 800, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 14, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "unp2", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgl,Arlm,Afr2", + "Requires": "uaod", + "Trains": "uaco", + "Researches": "Rupm", + "Animprops": "upgrade,second", + "Buttonpos": "0,2", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\ZigguratFrostMissile\\ZigguratFrostMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlackCitadel.blp", + "buildingShadow": "ShadowBlackCitidel", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgl,Arlm,Afr2", + "abilSkinList:melee,V0": "Abgl,Arlm", + "abilSkinList:custom,V0": "Abgl,Arlm", + "abilSkinList:custom,V1": "Abgl,Arlm", + "uberSplat": "ULAR", + "skinnableID": "unp2", + "file": "buildings\\undead\\Necropolis\\Necropolis", + "portrait:sd": "buildings\\undead\\Necropolis\\Necropolis", + "portrait:hd": "buildings\\undead\\Necropolis\\Necropolis_portrait", + "unitSound": "Necropolisu2", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "260", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "unpl": { + "unitID": "unpl", + "sort": "d3", + "comment(s)": "Necropolis", + "race": "undead", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\UndeadNecropolis.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "unpl", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "necropolis", + "unitClass": "UBuilding01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "unpl", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "TownHall,undead,Mechanical", + "goldcost": 225, + "lumbercost": 0, + "goldRep": 225, + "lumberRep": 0, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 196, + "stockInitial": "-", + "unitWeaponID": "unpl", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "unpl", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgl,Arlm", + "Upgrade": "unp1", + "Trains": "uaco", + "Researches": "Rupm", + "Buttonpos": "0,0", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\ZigguratMissile\\ZigguratMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecropolis.blp", + "buildingShadow": "ShadowNecropolis", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgl,Arlm", + "uberSplat": "ULAR", + "skinnableID": "unpl", + "file": "buildings\\undead\\Necropolis\\Necropolis", + "portrait:sd": "buildings\\undead\\Necropolis\\Necropolis", + "portrait:hd": "buildings\\undead\\Necropolis\\Necropolis_portrait", + "unitSound": "Necropolis", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "260", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "usap": { + "unitID": "usap", + "sort": "d3", + "comment(s)": "SacrificialPit", + "race": "undead", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "usap", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sacrificialpit", + "unitClass": "UBuilding09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "usap", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 75, + "lumbercost": 150, + "goldRep": 75, + "lumberRep": 150, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "usap", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "usap", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs,Asac", + "Requires": "unp1", + "Buttonpos": "0,2", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialPit.blp", + "buildingShadow": "ShadowSacrificialPit", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs,Asac", + "uberSplat": "UMED", + "skinnableID": "usap", + "file": "buildings\\undead\\SacrificialPit\\SacrificialPit", + "portrait:sd": "buildings\\undead\\SacrificialPit\\SacrificialPit", + "portrait:hd": "buildings\\undead\\SacrificialPit\\SacrificialPit_portrait", + "unitSound": "SacrificialPit", + "blend": "0.15", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "usep": { + "unitID": "usep", + "sort": "d3", + "comment(s)": "Crypt", + "race": "undead", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "usep", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "crypt", + "unitClass": "UBuilding08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "usep", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 200, + "lumbercost": 50, + "goldRep": 200, + "lumberRep": 50, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1300, + "realHP": 1300, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "usep", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "usep", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs", + "Trains": "ugho,ucry,ugar", + "Buttonpos": "1,0", + "Researches": "Ruwb,Rugf,Rusf,Rubu,Ruac", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrypt.blp", + "buildingShadow": "ShadowCrypt", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs", + "uberSplat": "UMED", + "skinnableID": "usep", + "file": "buildings\\undead\\Crypt\\Crypt", + "portrait:sd": "buildings\\undead\\Crypt\\Crypt", + "portrait:hd": "buildings\\undead\\Crypt\\Crypt_portrait", + "unitSound": "Crypt", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ushp": { + "unitID": "ushp", + "sort": "d3", + "comment(s)": "undead shipyard", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 384, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ushp", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "undeadshipyard", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ushp", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 750, + "realHP": 750, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ushp", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ushp", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs,Ane2", + "Sellunits": "ubot,udes", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadShipyard.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs,Ane2", + "uberSplat": "HMED", + "skinnableID": "ushp", + "file": "buildings\\undead\\UndeadShipyard\\UndeadShipyard", + "portrait:sd": "buildings\\undead\\UndeadShipyard\\UndeadShipyard", + "portrait:hd": "buildings\\undead\\UndeadShipyard\\UndeadShipyard_portrait", + "unitSound": "GoblinShipyard", + "blend": "0.15", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "100", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "uslh": { + "unitID": "uslh", + "sort": "d3", + "comment(s)": "Slaughterhouse", + "race": "undead", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uslh", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "slaughterhouse", + "unitClass": "UBuilding11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uslh", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 140, + "lumbercost": 135, + "goldRep": 140, + "lumberRep": 135, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "uslh", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uslh", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs", + "Requires": "unp1,ugrv", + "Researches": "Rupc,Rusp,Ruex", + "Trains": "umtw,uabo,uobs", + "Buttonpos": "3,1", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlaughterhouse.blp", + "buildingShadow": "ShadowSlaughterHouse", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs", + "uberSplat": "UMED", + "skinnableID": "uslh", + "file": "buildings\\undead\\Slaughterhouse\\Slaughterhouse", + "portrait:sd": "buildings\\undead\\Slaughterhouse\\Slaughterhouse", + "portrait:hd": "buildings\\undead\\Slaughterhouse\\Slaughterhouse_portrait", + "unitSound": "Slaughterhouse", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "200", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "utod": { + "unitID": "utod", + "sort": "d3", + "comment(s)": "TempleoftheDamned", + "race": "undead", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "utod", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "templeofthedamned", + "unitClass": "UBuilding12", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "utod", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 155, + "lumbercost": 140, + "goldRep": 155, + "lumberRep": 140, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1100, + "realHP": 1100, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "utod", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "utod", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs", + "Requires": "unp1,ugrv", + "Researches": "Rune,Ruba,Rusm", + "Trains": "unec,uban", + "Buttonpos": "2,1", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTempleOfTheDamned.blp", + "buildingShadow": "ShadowTempleoftheDamned", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs", + "uberSplat": "UMED", + "skinnableID": "utod", + "file": "buildings\\undead\\TempleOfTheDamned\\TempleOfTheDamned", + "portrait:sd": "buildings\\undead\\TempleOfTheDamned\\TempleOfTheDamned", + "portrait:hd": "buildings\\undead\\TempleOfTheDamned\\TempleOfTheDamned_portrait", + "unitSound": "TempleOfTheDamned", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "utom": { + "unitID": "utom", + "sort": "d3", + "comment(s)": "Tomb of Relics", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "utom", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tombofrelics", + "unitClass": "UBuilding15", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "utom", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 130, + "lumbercost": 30, + "goldRep": 130, + "lumberRep": 30, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 475, + "realHP": 475, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1000, + "nsight": 750, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "utom", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "utom", + "sortAbil": "d3", + "auto": "_", + "abilList": "Aall,Abgs,Apit", + "Buttonpos": "2,2", + "Makeitems": "rnec,dust,skul,phea,pman,stwp,ocor,wneg,ritd", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTombOfRelics.blp", + "buildingShadow": "ShadowTombOfRelics", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aall,Abgs,Apit", + "uberSplat": "UMED", + "skinnableID": "utom", + "file": "buildings\\undead\\TombOfRelics\\TombOfRelics", + "portrait:sd": "buildings\\undead\\TombOfRelics\\TombOfRelics", + "portrait:hd": "buildings\\undead\\TombOfRelics\\TombOfRelics_portrait", + "unitSound": "TombOfRelics", + "blend": "0.15", + "scale": "5.5", + "legacyScale": "5.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "uzg1": { + "unitID": "uzg1", + "sort": "d3", + "comment(s)": "Spirit Tower", + "race": "undead", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uzg1", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ziggurat1", + "unitClass": "UBuilding05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uzg1", + "sortBalance": "d3", + "sort2": "tow", + "level": 1, + "type": "undead,Mechanical", + "goldcost": 295, + "lumbercost": 90, + "goldRep": 295, + "lumberRep": 90, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 45, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 120, + "stockInitial": "-", + "unitWeaponID": "uzg1", + "sortWeap": "d3", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 700, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 29.5, + "maxdmg1": 32, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 29.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uzg1", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs", + "Requires": "ugrv", + "Animprops": "upgrade,first", + "Buttonpos": "0,2", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\ZigguratMissile\\ZigguratMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNZigguratUpgrade.blp", + "buildingShadow": "ShadowZiggurat", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs", + "uberSplat": "USMA", + "skinnableID": "uzg1", + "file": "buildings\\undead\\Ziggurat\\Ziggurat", + "portrait:sd": "buildings\\undead\\Ziggurat\\Ziggurat", + "portrait:hd": "buildings\\undead\\Ziggurat\\Ziggurat_portrait", + "unitSound": "ZigguratUpgrade", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "145", + "addon": "Buildings" + }, + "uzg2": { + "unitID": "uzg2", + "sort": "d3", + "comment(s)": "Frost Tower", + "race": "undead", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "uzg2", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "frosttower", + "unitClass": "UBuilding06", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uzg2", + "sortBalance": "d3", + "sort2": "tow", + "level": 1, + "type": "undead,Mechanical", + "goldcost": 250, + "lumbercost": 70, + "goldRep": 250, + "lumberRep": 70, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 45, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 120, + "stockInitial": "-", + "unitWeaponID": "uzg2", + "sortWeap": "d3", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 700, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.15, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 9.5, + "maxdmg1": 10, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 8.26086956521739, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uzg2", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs,Afra", + "Animprops": "upgrade,second", + "Buttonpos": "1,2", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\ZigguratFrostMissile\\ZigguratFrostMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostTower.blp", + "buildingShadow": "ShadowZiggurat", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs,Afra", + "uberSplat": "USMA", + "skinnableID": "uzg2", + "file": "buildings\\undead\\Ziggurat\\Ziggurat", + "portrait:sd": "buildings\\undead\\Ziggurat\\Ziggurat", + "portrait:hd": "buildings\\undead\\Ziggurat\\Ziggurat_portrait", + "unitSound": "FrostTower", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "145", + "addon": "Buildings" + }, + "uzig": { + "unitID": "uzig", + "sort": "d3", + "comment(s)": "Ziggurat", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "uzig", + "sortUI": "d3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ziggurat", + "unitClass": "UBuilding04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uzig", + "sortBalance": "d3", + "sort2": "xbui", + "level": "-", + "type": "undead,Mechanical", + "goldcost": 150, + "lumbercost": 50, + "goldRep": 150, + "lumberRep": 50, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": 0, + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1600, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "blighted", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 120, + "stockInitial": "-", + "unitWeaponID": "uzig", + "sortWeap": "d3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uzig", + "sortAbil": "d3", + "auto": "_", + "abilList": "Abgs", + "Upgrade": "uzg1,uzg2", + "Buttonpos": "0,1", + "BuildingSoundLabel": "UndeadBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Undead\\UCancelDeath\\UCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNZiggurat.blp", + "buildingShadow": "ShadowZiggurat", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abgs", + "uberSplat": "USMA", + "skinnableID": "uzig", + "file": "buildings\\undead\\Ziggurat\\Ziggurat", + "portrait:sd": "buildings\\undead\\Ziggurat\\Ziggurat", + "portrait:hd": "buildings\\undead\\Ziggurat\\Ziggurat_portrait", + "unitSound": "Ziggurat", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "Nal2": { + "unitID": "Nal2", + "sort": "n1", + "comment(s)": "HeroAlchemistMorph2", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 6, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nal2", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "alchemistmorph2", + "unitClass": "alchemist", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nal2", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 1, + "defType": "hero", + "spd": 405, + "minSpd": 0, + "maxSpd": 522, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 18, + "AGI": 10, + "STRplus": 3.3, + "INTplus": 2, + "AGIplus": 1, + "abilTest": 6.3, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nal2", + "sortWeap": "o2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.42, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 3, + "avgdmg1": 16.5, + "maxdmg1": 30, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 11.6197183098592, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.42, + "mincool2": "-", + "dice2": 3, + "sides2": 10, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 3, + "avgdmg2": 16.5, + "maxdmg2": 30, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nal2", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANhs,ANab,ANcr,ANtm", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "3,2", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-alchemist.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHeroAlchemistLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroAlchemist.blp", + "skinType": "unit", + "heroAbilSkinList": "ANhs,ANab,ANcr,ANtm", + "abilSkinList": "AInv", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "Nal2", + "file": "Units\\Creeps\\HeroGoblinAlchemist\\HeroGoblinAlchemist", + "unitSound": "HeroGoblinAlchemist", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "405", + "run:sd": "250", + "run:hd": "405", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nal3": { + "unitID": "Nal3", + "sort": "n1", + "comment(s)": "HeroAlchemistMorph3", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 6, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nal3", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "alchemistmorph3", + "unitClass": "alchemist", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nal3", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 1, + "defType": "hero", + "spd": 405, + "minSpd": 0, + "maxSpd": 522, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 18, + "AGI": 10, + "STRplus": 3.3, + "INTplus": 2, + "AGIplus": 1, + "abilTest": 6.3, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nal3", + "sortWeap": "o2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.11, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 3, + "avgdmg1": 16.5, + "maxdmg1": 30, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 14.8648648648649, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.11, + "mincool2": "-", + "dice2": 3, + "sides2": 10, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 3, + "avgdmg2": 16.5, + "maxdmg2": 30, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nal3", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANhs,ANab,ANcr,ANtm", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "3,2", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-alchemist.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHeroAlchemistLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroAlchemist.blp", + "skinType": "unit", + "heroAbilSkinList": "ANhs,ANab,ANcr,ANtm", + "abilSkinList": "AInv", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "Nal3", + "file": "Units\\Creeps\\HeroGoblinAlchemist\\HeroGoblinAlchemist", + "unitSound": "HeroGoblinAlchemist", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "405", + "run:sd": "250", + "run:hd": "405", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nalc": { + "unitID": "Nalc", + "sort": "n1", + "comment(s)": "HeroAlchemist", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 6, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nalc", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "alchemist", + "unitClass": "alchemist", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nalc", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 1, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 18, + "AGI": 10, + "STRplus": 3.3, + "INTplus": 2, + "AGIplus": 1, + "abilTest": 6.3, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nalc", + "sortWeap": "o2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 3, + "avgdmg1": 16.5, + "maxdmg1": 30, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 6.6, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.5, + "mincool2": "-", + "dice2": 3, + "sides2": 10, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 3, + "avgdmg2": 16.5, + "maxdmg2": 30, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nalc", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANhs,ANab,ANcr,ANtm", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "3,2", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "DependencyOr": "Nalm,Nal2,Nal3", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-alchemist.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroAlchemist.blp", + "skinType": "unit", + "heroAbilSkinList": "ANhs,ANab,ANcr,ANtm", + "abilSkinList": "AInv", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "Nalc", + "file": "Units\\Creeps\\HeroGoblinAlchemist\\HeroGoblinAlchemist", + "unitSound": "HeroGoblinAlchemist", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "180", + "projectileVisOffsetY:hd": "-10", + "addon": "Heroes" + }, + "Nalm": { + "unitID": "Nalm", + "sort": "n1", + "comment(s)": "HeroAlchemistMorph", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 6, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nalm", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "alchemistmorph", + "unitClass": "alchemist", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nalm", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 1, + "defType": "hero", + "spd": 405, + "minSpd": 0, + "maxSpd": 522, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 18, + "AGI": 10, + "STRplus": 3.3, + "INTplus": 2, + "AGIplus": 1, + "abilTest": 6.3, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nalm", + "sortWeap": "o2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 3, + "avgdmg1": 16.5, + "maxdmg1": 30, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 8.25, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 3, + "sides2": 10, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 3, + "avgdmg2": 16.5, + "maxdmg2": 30, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nalm", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANhs,ANab,ANcr,ANtm", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "3,2", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-alchemist.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHeroAlchemistLV1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroAlchemist.blp", + "skinType": "unit", + "heroAbilSkinList": "ANhs,ANab,ANcr,ANtm", + "abilSkinList": "AInv", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "Nalm", + "file": "Units\\Creeps\\HeroGoblinAlchemist\\HeroGoblinAlchemist", + "unitSound": "HeroGoblinAlchemist", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "405", + "run:sd": "250", + "run:hd": "405", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nbrn": { + "unitID": "Nbrn", + "sort": "n1", + "comment(s)": "HeroBansheeRanger", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.23, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 9, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nbrn", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darkranger", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nbrn", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 550, + "regenHP": 2, + "regenType": "blight", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.3, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 15, + "AGI": 21, + "STRplus": 1.9, + "INTplus": 2.6, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nbrn", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.42, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.89256198347107, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.42, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.3, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nbrn", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANsi,ANba,ANdr,ANch", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Buttonpos": "1,1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-bansheeranger.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBansheeRanger.blp", + "skinType": "unit", + "heroAbilSkinList": "ANsi,ANba,ANdr,ANch", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Nbrn", + "file": "Units\\Creeps\\BansheeRanger\\BansheeRanger", + "unitSound": "DarkRanger", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "110", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "65", + "addon": "Heroes" + }, + "Nbst": { + "unitID": "Nbst", + "sort": "n1", + "comment(s)": "Beastmaster", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 7, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nbst", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "beastmaster", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nbst", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 24, + "INT": 15, + "AGI": 14, + "STRplus": 2.9, + "INTplus": 1.8, + "AGIplus": 1.3, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nbst", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.2, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.8, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nbst", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANsg,ANsq,ANsw,ANst", + "Buttonpos": "1,2", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-beastmaster.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBeastMaster.blp", + "skinType": "unit", + "heroAbilSkinList": "ANsg,ANsq,ANsw,ANst", + "abilSkinList": "AInv", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "skinnableID": "Nbst", + "file": "Units\\Creeps\\Beastmaster\\Beastmaster", + "unitSound": "Beastmaster", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "90", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nfir": { + "unitID": "Nfir", + "sort": "n1", + "comment(s)": "FireLord", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 9, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nfir", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "firelord", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nfir", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 18, + "AGI": 20, + "STRplus": 2, + "INTplus": 2.5, + "AGIplus": 1.6, + "abilTest": 6.1, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nfir", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.67, + "castbsw": 0.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.5, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.77777777777778, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nfir", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANia,ANso,ANlm,ANvc", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Buttonpos": "3,1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\LordofFlameMissile\\LordofFlameMissile.mdl", + "Missilearc": "0.08", + "MissileHoming": "1", + "Missilespeed": "1200", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-avatarofflame.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroAvatarOfFlame.blp", + "skinType": "unit", + "heroAbilSkinList": "ANia,ANso,ANlm,ANvc", + "heroAbilSkinList:custom,V1": "ANic,ANso,ANlm,ANvc", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1.15", + "skinnableID": "Nfir", + "file": "Units\\Creeps\\HeroFlameLord\\HeroFlameLord", + "unitSound": "HeroFireLord", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "30", + "impactZ": "120", + "launchSwimZ": "30", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "addon": "Heroes" + }, + "Nngs": { + "unitID": "Nngs", + "sort": "n1", + "comment(s)": "HeroNagaSorceror", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 9, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nngs", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seawitch", + "unitClass": "naga", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nngs", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 330, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 22, + "AGI": 16, + "STRplus": 2, + "INTplus": 3, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nngs", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.67, + "castbsw": 0.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.73, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.68421052631579, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.9, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nngs", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANfl,ANfa,ANms,ANto", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Buttonpos": "0,1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\NagaArrowMissile\\NagaArrowMissile.mdl", + "Missilearc": "0.08", + "Missilespeed": "1200", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-seawitch.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaSeaWitch.blp", + "skinType": "unit", + "heroAbilSkinList": "ANfl,ANfa,ANms,ANto", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Nngs", + "file": "units\\naga\\HeroNagaSeawitch\\HeroNagaSeawitch", + "unitSound": "SeaWitch", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "30", + "impactZ": "120", + "launchSwimZ": "30", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Heroes" + }, + "Npbm": { + "unitID": "Npbm", + "sort": "n1", + "comment(s)": "HeroPandarenBrewmaster", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 8, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Npbm", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "pandarenbrewmaster", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Npbm", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 675, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 3.2, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 23, + "INT": 16, + "AGI": 14, + "STRplus": 3, + "INTplus": 1.5, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Npbm", + "sortWeap": "o2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.22, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.15315315315315, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.22, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Npbm", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANbf,ANdh,ANdb,ANef", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "2,1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-pandarenbrewmaster.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPandarenBrewmaster.blp", + "skinType": "unit", + "heroAbilSkinList": "ANbf,ANdh,ANdb,ANef", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Npbm", + "file": "Units\\Creeps\\PandarenBrewmaster\\PandarenBrewmaster", + "unitSound": "PandarenBrewmaster", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nplh": { + "unitID": "Nplh", + "sort": "n1", + "comment(s)": "neutral pit lord", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 5, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nplh", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "pitlord", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nplh", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 800, + "regenHP": 2, + "regenType": "blight", + "manaN": 0, + "realM": 210, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 28, + "INT": 14, + "AGI": 16, + "STRplus": 3.2, + "INTplus": 1.5, + "AGIplus": 1.3, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nplh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 300, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.8, + "backSw1": 0.7, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.41463414634146, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.05, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.8, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nplh", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANrf,ANht,ANca,ANdo", + "Buttonpos": "0,2", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-pitlord.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPitLord.blp", + "skinType": "unit", + "heroAbilSkinList": "ANrf,ANht,ANca,ANdo", + "abilSkinList": "AInv", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Nplh", + "file": "units\\demon\\HeroPitLord\\HeroPitLord", + "unitSound": "HeroPitLord", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk": "125", + "run": "350", + "selZ": "0", + "armor": "Stone", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nrob": { + "unitID": "Nrob", + "sort": "n1", + "comment(s)": "HeroTinkerMorph", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 6, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Nrob", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "robogoblintinker", + "unitClass": "tinker", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nrob", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "Mechanical", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 300, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 3.5, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 20, + "AGI": 15, + "STRplus": 2.4, + "INTplus": 2.6, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nrob", + "sortWeap": "o2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.53, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.5, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nrob", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv,ANde", + "heroAbilList": "ANsy,ANcs,ANeg,ANrg", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "2,2", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Attachmentlinkprops": "alternate", + "Boneprops": "alternate", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-tinker.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "skinType": "unit", + "heroAbilSkinList": "ANsy,ANcs,ANeg,ANrg", + "abilSkinList": "AInv,ANde", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Nrob", + "file": "Units\\Creeps\\HeroTinker\\HeroTinker", + "unitSound": "HeroTinker", + "blend": "0.15", + "scale": "3.2", + "legacyScale": "3.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "157", + "addon": "Heroes" + }, + "Ntin": { + "unitID": "Ntin", + "sort": "n1", + "comment(s)": "HeroTinker", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 6, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Ntin", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tinker", + "unitClass": "tinker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ntin", + "sortBalance": "n1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 135, + "goldRep": 425, + "lumberRep": 135, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 300, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 3.5, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 20, + "AGI": 15, + "STRplus": 2.4, + "INTplus": 2.6, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ntin", + "sortWeap": "o2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.53, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.5, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ntin", + "sortAbil": "n1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANsy,ANcs,ANeg,ANrg", + "Requirescount": "3", + "Requires": "TALT", + "Requires1": "TWN2,TALT", + "Requires2": "TWN3,TALT", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "2,2", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-tinker.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "skinType": "unit", + "heroAbilSkinList": "ANsy,ANcs,ANeg,ANrg", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Ntin", + "file": "Units\\Creeps\\HeroTinker\\HeroTinker", + "unitSound": "HeroTinker", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "220", + "shadowH": "220", + "shadowX": "72", + "shadowY": "72", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "143", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "27", + "addon": "Heroes" + }, + "ncg1": { + "unitID": "ncg1", + "sort": "n1a", + "comment(s)": "Clockwerk Goblin(lvl 2)", + "race": "other", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ncg1", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "clockwerkgoblin2", + "unitClass": "clockwerk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncg1", + "sortBalance": "n1a", + "sort2": "zz", + "level": 0, + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 80, + "realHP": 80, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "ncg1", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 60, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 13, + "maxdmg1": 14, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 13, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncg1", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Asd2", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClockWerkGoblin.blp", + "skinType": "unit", + "abilSkinList": "Asd2", + "skinnableID": "ncg1", + "file": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:sd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:hd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot_portrait", + "unitSound": "ClockwerkGoblin", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "110", + "shadowH": "110", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ncg2": { + "unitID": "ncg2", + "sort": "n1a", + "comment(s)": "Clockwerk Goblin(lvl 3)", + "race": "other", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ncg2", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "clockwerkgoblin3", + "unitClass": "clockwerk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncg2", + "sortBalance": "n1a", + "sort2": "zz", + "level": 0, + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 80, + "realHP": 80, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "ncg2", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 60, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 13, + "maxdmg1": 14, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 13, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncg2", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Asd3", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClockWerkGoblin.blp", + "skinType": "unit", + "abilSkinList": "Asd3", + "skinnableID": "ncg2", + "file": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:sd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:hd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot_portrait", + "unitSound": "ClockwerkGoblin", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ncg3": { + "unitID": "ncg3", + "sort": "n1a", + "comment(s)": "Clockwerk Goblin(lvl 4)", + "race": "other", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ncg3", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "clockwerkgoblin4", + "unitClass": "clockwerk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncg3", + "sortBalance": "n1a", + "sort2": "zz", + "level": 0, + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 80, + "realHP": 80, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "ncg3", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 60, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 13, + "maxdmg1": 14, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 13, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncg3", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Asd3", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClockWerkGoblin.blp", + "skinType": "unit", + "abilSkinList": "Asd3", + "skinnableID": "ncg3", + "file": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:sd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:hd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot_portrait", + "unitSound": "ClockwerkGoblin", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "130", + "shadowH": "130", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ncgb": { + "unitID": "ncgb", + "sort": "n1a", + "comment(s)": "Clockwerk Goblin(lvl 1)", + "race": "other", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ncgb", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "clockwerkgoblin1", + "unitClass": "clockwerk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncgb", + "sortBalance": "n1a", + "sort2": "zz", + "level": 0, + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 80, + "realHP": 80, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "ncgb", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 60, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 13, + "maxdmg1": 14, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 13, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncgb", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Asdg", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClockWerkGoblin.blp", + "skinType": "unit", + "abilSkinList": "Asdg", + "skinnableID": "ncgb", + "file": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:sd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot", + "portrait:hd": "Units\\Creeps\\HeroTinkerRobot\\HeroTinkerRobot_portrait", + "unitSound": "ClockwerkGoblin", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ndr1": { + "unitID": "ndr1", + "sort": "n1a", + "comment(s)": "DarkMinion1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ndr1", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darkminion1", + "unitClass": "skeleton", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndr1", + "sortBalance": "n1a", + "sort2": "sum", + "level": 2, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 215, + "realHP": 215, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ndr1", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 9.5, + "maxdmg1": 10, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 4.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndr1", + "sortAbil": "n1a", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLesserDarkMinion.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "skinType": "unit", + "skinnableID": "ndr1", + "file:hd": "Units\\Undead\\LesserDarkMinion\\LesserDarkMinion", + "file:sd": "units\\undead\\Skeleton\\Skeleton", + "unitSound": "Skeleton", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "230", + "green:hd": "255", + "green:sd": "230", + "blue:hd": "255", + "blue:sd": "230", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\undead\\Skeleton\\Skeleton_portrait", + "portrait:hd": "Units\\Undead\\LesserDarkMinion\\LesserDarkMinion_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ndr2": { + "unitID": "ndr2", + "sort": "n1a", + "comment(s)": "DarkMinion2", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ndr2", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darkminion2", + "unitClass": "skeleton", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndr2", + "sortBalance": "n1a", + "sort2": "sum", + "level": 3, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 290, + "realHP": 290, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ndr2", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 14, + "dmgUp1": "-", + "mindmg1": 15, + "avgdmg1": 16, + "maxdmg1": 17, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 15, + "DPS": 8, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndr2", + "sortAbil": "n1a", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDarkMinion.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "skinType": "unit", + "skinnableID": "ndr2", + "file:hd": "Units\\Undead\\DarkMinion\\DarkMinion", + "file:sd": "units\\undead\\Skeleton\\Skeleton", + "unitSound": "Skeleton", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "300", + "run:sd": "180", + "run:hd": "300", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\undead\\Skeleton\\Skeleton_portrait", + "portrait:hd": "Units\\Undead\\DarkMinion\\DarkMinion_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ndr3": { + "unitID": "ndr3", + "sort": "n1a", + "comment(s)": "DarkMinion3", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ndr3", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darkminion3", + "unitClass": "skeleton", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndr3", + "sortBalance": "n1a", + "sort2": "sum", + "level": 4, + "type": "undead", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 405, + "realHP": 405, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 330, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ndr3", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 17.5, + "maxdmg1": 19, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 8.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndr3", + "sortAbil": "n1a", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGreaterDarkMinion.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "skinType": "unit", + "skinnableID": "ndr3", + "file:hd": "Units\\Undead\\GreaterDarkMinion\\GreaterDarkMinion", + "file:sd": "units\\undead\\Skeleton\\Skeleton", + "unitSound": "Skeleton", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "330", + "run:sd": "180", + "run:hd": "330", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\undead\\Skeleton\\Skeleton_portrait", + "portrait:hd": "Units\\Undead\\GreaterDarkMinion\\GreaterDarkMinion_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nfa1": { + "unitID": "nfa1", + "sort": "n1a", + "comment(s)": "Pocket Factory", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nfa1", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "pocketfactory2", + "unitClass": "clockwerk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfa1", + "sortBalance": "n1a", + "sort2": "zz", + "level": 5, + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 450, + "realHP": 450, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 0, + "realdef": 0, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 50, + "sight": 800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "nfa1", + "sortWeap": "n1", + "weapsOn": 0, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfa1", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ARal", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPocketFactoryLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "buildingShadow": "ShadowHumanBarracks", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ARal", + "uberSplat": "OMED", + "skinnableID": "nfa1", + "file:hd": "Units\\Creeps\\HeroTinkerFactoryLvl2\\HeroTinkerFactoryLvl2", + "file:sd": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactory", + "portrait:sd": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactory", + "portrait:hd": "Units\\Creeps\\HeroTinkerFactoryLvl2\\HeroTinkerFactoryLvl2_portrait", + "unitSound": "PocketFactory", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "155", + "green:hd": "255", + "green:sd": "155", + "blue:hd": "255", + "blue:sd": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "225", + "addon": "Heroes" + }, + "nfa2": { + "unitID": "nfa2", + "sort": "n1a", + "comment(s)": "Pocket Factory", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nfa2", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "pocketfactory3", + "unitClass": "clockwerk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfa2", + "sortBalance": "n1a", + "sort2": "zz", + "level": 6, + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 0, + "realdef": 0, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 50, + "sight": 800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "nfa2", + "sortWeap": "n1", + "weapsOn": 0, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfa2", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ARal", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPocketFactoryLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "buildingShadow": "ShadowHumanBarracks", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ARal", + "uberSplat": "OMED", + "skinnableID": "nfa2", + "file:hd": "Units\\Creeps\\HeroTinkerFactoryLvl3\\HeroTinkerFactoryLvl3", + "file:sd": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactory", + "portrait:sd": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactory", + "portrait:hd": "Units\\Creeps\\HeroTinkerFactoryLvl3\\HeroTinkerFactoryLvl3_portrait", + "unitSound": "PocketFactory", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "155", + "green:hd": "255", + "green:sd": "155", + "blue:hd": "255", + "blue:sd": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "225", + "addon": "Heroes" + }, + "nfac": { + "unitID": "nfac", + "sort": "n1a", + "comment(s)": "Pocket Factory", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nfac", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "pocketfactory", + "unitClass": "clockwerk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfac", + "sortBalance": "n1a", + "sort2": "zz", + "level": 4, + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 300, + "realHP": 300, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 0, + "realdef": 0, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 50, + "sight": 800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "nfac", + "sortWeap": "n1", + "weapsOn": 0, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfac", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ARal", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "buildingShadow": "ShadowHumanBarracks", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ARal", + "uberSplat": "OMED", + "skinnableID": "nfac", + "file": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactory", + "portrait:sd": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactory", + "portrait:hd": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactory_portrait", + "unitSound": "PocketFactory", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "155", + "green:hd": "255", + "green:sd": "155", + "blue:hd": "255", + "blue:sd": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "225", + "addon": "Heroes" + }, + "ngz1": { + "unitID": "ngz1", + "sort": "n1a", + "comment(s)": "grizzly bear 1", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ngz1", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "grizzlybear1", + "unitClass": "bear", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngz1", + "sortBalance": "n1a", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngz1", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 18, + "dmgUp1": "-", + "mindmg1": 19, + "avgdmg1": 20, + "maxdmg1": 21, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 15, + "DPS": 13.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngz1", + "sortAbil": "n1a", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "skinnableID": "ngz1", + "file": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ngz2": { + "unitID": "ngz2", + "sort": "n1a", + "comment(s)": "grizzly bear 2", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ngz2", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "grizzlybear2", + "unitClass": "bear", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngz2", + "sortBalance": "n1a", + "sort2": "sum", + "level": 5, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 900, + "realHP": 900, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngz2", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 29, + "maxdmg1": 30, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 15, + "DPS": 19.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngz2", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ANbh", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRagingBear.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "abilSkinList": "ANbh", + "skinnableID": "ngz2", + "file:hd": "Units\\Creeps\\RagingBear\\RagingBear", + "file:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "3.3", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear_portrait", + "portrait:hd": "Units\\Creeps\\RagingBear\\RagingBear_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ngz3": { + "unitID": "ngz3", + "sort": "n1a", + "comment(s)": "grizzly bear 3", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ngz3", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "grizzlybear3", + "unitClass": "bear", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngz3", + "sortBalance": "n1a", + "sort2": "sum", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1200, + "realHP": 1200, + "regenHP": 1.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngz3", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 37, + "dmgUp1": "-", + "mindmg1": 38, + "avgdmg1": 39, + "maxdmg1": 40, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 15, + "DPS": 26, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngz3", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ANbh,ANbl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSpiritBear.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "abilSkinList": "ANbh,ANbl", + "skinnableID": "ngz3", + "file:hd": "Units\\Creeps\\SpiritBear\\SpiritBear", + "file:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "3.55", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear_portrait", + "portrait:hd": "Units\\Creeps\\SpiritBear\\SpiritBear_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ngz4": { + "unitID": "ngz4", + "sort": "n1a", + "comment(s)": "misha 4", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ngz4", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "misha4", + "unitClass": "bear", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngz4", + "sortBalance": "n1a", + "sort2": "sum", + "level": 7, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 2250, + "realHP": 2250, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 370, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngz4", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 57, + "dmgUp1": "-", + "mindmg1": 59, + "avgdmg1": 64, + "maxdmg1": 69, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 42.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngz4", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ANb2,ACrk", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMishaLV4.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "abilSkinList": "ANb2,ACrk", + "skinnableID": "ngz4", + "file:hd": "Units\\Creeps\\MishaLvl4\\MishaLvl4", + "file:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "4", + "scale:sd": "2.4", + "legacyScale": "2.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "370", + "run:sd": "240", + "run:hd": "370", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear_portrait", + "portrait:hd": "Units\\Creeps\\MishaLvl4\\MishaLvl4_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ngzc": { + "unitID": "ngzc", + "sort": "n1a", + "comment(s)": "misha 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ngzc", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "misha1", + "unitClass": "bear", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngzc", + "sortBalance": "n1a", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngzc", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 29.5, + "maxdmg1": 31, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 19.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngzc", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ACrk", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMishaLV1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "abilSkinList": "ACrk", + "skinnableID": "ngzc", + "file:hd": "Units\\Creeps\\MishaLvl1\\MishaLvl1", + "file:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "2.75", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear_portrait", + "portrait:hd": "Units\\Creeps\\MishaLvl1\\MishaLvl1_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ngzd": { + "unitID": "ngzd", + "sort": "n1a", + "comment(s)": "misha 2", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ngzd", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "misha2", + "unitClass": "bear", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngzd", + "sortBalance": "n1a", + "sort2": "sum", + "level": 5, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1200, + "realHP": 1200, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngzd", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 37, + "dmgUp1": "-", + "mindmg1": 38, + "avgdmg1": 39.5, + "maxdmg1": 41, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 26.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngzd", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ANbh,ACrk", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMishaLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "abilSkinList": "ANbh,ACrk", + "skinnableID": "ngzd", + "file:hd": "Units\\Creeps\\MishaLvl2\\MishaLvl2", + "file:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "3.15", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear_portrait", + "portrait:hd": "Units\\Creeps\\MishaLvl2\\MishaLvl2_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "npn1": { + "unitID": "npn1", + "sort": "n1a", + "comment(s)": "Fire pandaren split", + "race": "creeps", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "npn1", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "panda1", + "unitClass": "panda", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npn1", + "sortBalance": "n1a", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 1100, + "realHP": 1100, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "npn1", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 2, + "sides1": 8, + "dmgplus1": 66, + "dmgUp1": "-", + "mindmg1": 68, + "avgdmg1": 75, + "maxdmg1": 82, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 55.5555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npn1", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Apig,ACrk", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBrewmaster.blp", + "skinType": "unit", + "abilSkinList": "Apig,ACrk", + "skinnableID": "npn1", + "file": "Units\\Creeps\\FirePandarenBrewmaster\\FirePandarenBrewmaster", + "unitSound": "FirePandarenBrewmaster", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "90", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "npn2": { + "unitID": "npn2", + "sort": "n1a", + "comment(s)": "Wind pandaren split", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "npn2", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "panda2", + "unitClass": "panda", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npn2", + "sortBalance": "n1a", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.5, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "npn2", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 47, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 53, + "maxdmg1": 57, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 35.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npn2", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Adsm,ACcy,ACrk,ANwk", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormBrewmaster.blp", + "skinType": "unit", + "abilSkinList": "Adsm,ACcy,ACrk,ANwk", + "skinnableID": "npn2", + "file": "Units\\Creeps\\StormPandarenBrewmaster\\StormPandarenBrewmaster", + "unitSound": "StormPandarenBrewmaster", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "npn3": { + "unitID": "npn3", + "sort": "n1a", + "comment(s)": "Earth pandaren split", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "npn3", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "panda3", + "unitClass": "panda", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npn3", + "sortBalance": "n1a", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 1700, + "realHP": 1700, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "npn3", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 47, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 53, + "maxdmg1": 57, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 39.2592592592593, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npn3", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ACmi,ACpv,ANta,ACrk", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEarthBrewmaster.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACpv,ANta,ACrk", + "skinnableID": "npn3", + "file": "Units\\Creeps\\EarthPandarenBrewmaster\\EarthPandarenBrewmaster", + "unitSound": "EarthPandarenBrewmaster", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "npn4": { + "unitID": "npn4", + "sort": "n1a", + "comment(s)": "Fire pandaren split2", + "race": "creeps", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "npn4", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "panda4", + "unitClass": "panda", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npn4", + "sortBalance": "n1a", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 1350, + "realHP": 1350, + "regenHP": 4, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "npn4", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 3, + "sides1": 6, + "dmgplus1": 75, + "dmgUp1": "-", + "mindmg1": 78, + "avgdmg1": 85.5, + "maxdmg1": 93, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 63.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npn4", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Apig,ACrk", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBrewmaster.blp", + "skinType": "unit", + "abilSkinList": "Apig,ACrk", + "skinnableID": "npn4", + "file:hd": "Units\\Creeps\\ChenStormstoutFire\\ChenStormstoutFire", + "file:sd": "Units\\Creeps\\FirePandarenBrewmaster\\FirePandarenBrewmaster", + "unitSound": "FirePandarenBrewmaster", + "blend": "0.15", + "scale": "1.7", + "legacyScale": "1.7", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\FirePandarenBrewmaster\\FirePandarenBrewmaster_portrait", + "portrait:hd": "Units\\Creeps\\ChenStormstoutFire\\ChenStormstoutFire_portrait", + "impactSwimZ": "0", + "impactZ": "90", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "npn5": { + "unitID": "npn5", + "sort": "n1a", + "comment(s)": "Wind pandaren split2", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "npn5", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "panda5", + "unitClass": "panda", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npn5", + "sortBalance": "n1a", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": 2, + "regenType": "always", + "manaN": 750, + "realM": 750, + "mana0": 750, + "regenMana": 1.5, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "npn5", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,air,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 4, + "dmgplus1": 52, + "dmgUp1": "-", + "mindmg1": 55, + "avgdmg1": 59.5, + "maxdmg1": 64, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 13, + "DPS": 39.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npn5", + "sortAbil": "n1a", + "auto": "_", + "abilList": "Adsm,ACcy,ACrk,ANwk", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormBrewmaster.blp", + "skinType": "unit", + "abilSkinList": "Adsm,ACcy,ACrk,ANwk", + "skinnableID": "npn5", + "file:hd": "Units\\Creeps\\ChenStormstoutStorm\\ChenStormstoutStorm", + "file:sd": "Units\\Creeps\\StormPandarenBrewmaster\\StormPandarenBrewmaster", + "unitSound": "StormPandarenBrewmaster", + "blend": "0.15", + "scale": "1.7", + "legacyScale": "1.7", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\StormPandarenBrewmaster\\StormPandarenBrewmaster_portrait", + "portrait:hd": "Units\\Creeps\\ChenStormstoutStorm\\ChenStormstoutStorm_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "npn6": { + "unitID": "npn6", + "sort": "n1a", + "comment(s)": "Earth pandaren split2", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "npn6", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "panda6", + "unitClass": "panda", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npn6", + "sortBalance": "n1a", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 0, + "stockRegen": "-", + "stockStart": "-", + "HP": 2250, + "realHP": 2250, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": "-", + "unitWeaponID": "npn6", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 3, + "sides1": 4, + "dmgplus1": 52, + "dmgUp1": "-", + "mindmg1": 55, + "avgdmg1": 59.5, + "maxdmg1": 64, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 13, + "DPS": 44.0740740740741, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npn6", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ACmi,ACpv,ANta,ACrk", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEarthBrewmaster.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACpv,ANta,ACrk", + "skinnableID": "npn6", + "file:hd": "Units\\Creeps\\ChenStormstoutEarth\\ChenStormstoutEarth", + "file:sd": "Units\\Creeps\\EarthPandarenBrewmaster\\EarthPandarenBrewmaster", + "unitSound": "EarthPandarenBrewmaster", + "blend": "0.15", + "scale": "1.7", + "legacyScale": "1.7", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\EarthPandarenBrewmaster\\EarthPandarenBrewmaster_portrait", + "portrait:hd": "Units\\Creeps\\ChenStormstoutEarth\\ChenStormstoutEarth_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nqb1": { + "unitID": "nqb1", + "sort": "n1a", + "comment(s)": "quillbeast 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.37, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nqb1", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "quillbeast1", + "unitClass": "quillbeast", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nqb1", + "sortBalance": "n1a", + "sort2": "sum", + "level": 3, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 425, + "realHP": 425, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nqb1", + "sortWeap": "o2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 9.33333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nqb1", + "sortAbil": "n1a", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\BristleBackMissile\\BristleBackMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "skinType": "unit", + "skinnableID": "nqb1", + "file": "Units\\Creeps\\QuillBeast\\QuillBeast", + "unitSound": "QuillBeast", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "100", + "run:sd": "300", + "run:hd": "289", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nqb2": { + "unitID": "nqb2", + "sort": "n1a", + "comment(s)": "quillbeast 2", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.37, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nqb2", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "quillbeast2", + "unitClass": "quillbeast", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nqb2", + "sortBalance": "n1a", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 515, + "realHP": 515, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nqb2", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 2, + "sides1": 3, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 28, + "maxdmg1": 30, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 13, + "DPS": 18.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nqb2", + "sortAbil": "n1a", + "auto": "Afzy", + "abilList": "Afzy", + "Missileart": "Abilities\\Weapons\\BristleBackMissile\\BristleBackMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNQuillBeastLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "skinType": "unit", + "abilSkinList": "Afzy", + "skinnableID": "nqb2", + "file:hd": "Units\\Creeps\\QuillBeastDire\\QuillBeastDire", + "file:sd": "Units\\Creeps\\QuillBeast\\QuillBeast", + "unitSound": "QuillBeast", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "100", + "run:sd": "300", + "run:hd": "289", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "Units\\Creeps\\QuillBeast\\QuillBeast_portrait", + "portrait:hd": "Units\\Creeps\\QuillBeastDire\\QuillBeastDire_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nqb3": { + "unitID": "nqb3", + "sort": "n1a", + "comment(s)": "quillbeast 3", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.37, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nqb3", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "quillbeast3", + "unitClass": "quillbeast", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nqb3", + "sortBalance": "n1a", + "sort2": "sum", + "level": 5, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 600, + "realHP": 600, + "regenHP": 1.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nqb3", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 3, + "dmgplus1": 36, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 42, + "maxdmg1": 45, + "dmgpt1": 0.633, + "backSw1": 0.337, + "Farea1": 25, + "Harea1": 75, + "Qarea1": 125, + "Hfact1": 0.3, + "Qfact1": 0.15, + "splashTargs1": "ground,air,structure,debris,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 28, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nqb3", + "sortAbil": "n1a", + "auto": "Afzy", + "abilList": "Afzy", + "Missileart": "Abilities\\Weapons\\BristleBackMissile\\BristleBackMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNQuillBeastLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "skinType": "unit", + "abilSkinList": "Afzy", + "skinnableID": "nqb3", + "file:hd": "Units\\Creeps\\QuillBeastRaging\\QuillBeastRaging", + "file:sd": "Units\\Creeps\\QuillBeast\\QuillBeast", + "unitSound": "QuillBeast", + "blend": "0.15", + "scale": "1.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "103", + "run:sd": "300", + "run:hd": "364", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "Units\\Creeps\\QuillBeast\\QuillBeast_portrait", + "portrait:hd": "Units\\Creeps\\QuillBeastRaging\\QuillBeastRaging_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nqb4": { + "unitID": "nqb4", + "sort": "n1a", + "comment(s)": "quillbeast 4", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.37, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nqb4", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "quillbeast4", + "unitClass": "quillbeast", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nqb4", + "sortBalance": "n1a", + "sort2": "sum", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nqb4", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 4, + "sides1": 3, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 52, + "avgdmg1": 56, + "maxdmg1": 60, + "dmgpt1": 0.633, + "backSw1": 0.337, + "Farea1": 100, + "Harea1": 125, + "Qarea1": 175, + "Hfact1": 0.4, + "Qfact1": 0.25, + "splashTargs1": "ground,air,structure,debris,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 9, + "DPS": 37.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nqb4", + "sortAbil": "n1a", + "auto": "Afzy", + "abilList": "Afzy", + "Missileart": "Abilities\\Weapons\\BristleBackMissile\\BristleBackMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNQuillBeastLV4.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "skinType": "unit", + "abilSkinList": "Afzy", + "skinnableID": "nqb4", + "file:hd": "Units\\Creeps\\QuillBeastBerserk\\QuillBeastBerserk", + "file:sd": "Units\\Creeps\\QuillBeast\\QuillBeast", + "unitSound": "QuillBeast", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "100", + "run:sd": "300", + "run:hd": "289", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "Units\\Creeps\\QuillBeast\\QuillBeast_portrait", + "portrait:hd": "Units\\Creeps\\QuillBeastBerserk\\QuillBeastBerserk_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nwe1": { + "unitID": "nwe1", + "sort": "n1a", + "comment(s)": "war eagle 1", + "race": "other", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nwe1", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wareagle1", + "unitClass": "eagle", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwe1", + "sortBalance": "n1a", + "sort2": "sum", + "level": 2, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": "-", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "nwe1", + "sortWeap": "n1a", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwe1", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ANtr", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "ANtr", + "skinnableID": "nwe1", + "file": "units\\creeps\\WarEagle\\WarEagle", + "unitSound": "WarEagle", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nwe2": { + "unitID": "nwe2", + "sort": "n1a", + "comment(s)": "war eagle 2", + "race": "other", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nwe2", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wareagle2", + "unitClass": "eagle", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwe2", + "sortBalance": "n1a", + "sort2": "sum", + "level": 5, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 450, + "realHP": 450, + "regenHP": 1, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": "-", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "nwe2", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0, + "Qfact1": 0, + "splashTargs1": "ground,air,structure,debris,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 15.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwe2", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ANtr,Alit", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNThunderHawk.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "ANtr,Alit", + "skinnableID": "nwe2", + "file:hd": "Units\\Creeps\\ThunderHawk\\ThunderHawk", + "file:sd": "units\\creeps\\WarEagle\\WarEagle", + "unitSound": "WarEagle", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\WarEagle\\WarEagle_portrait", + "portrait:hd": "Units\\Creeps\\ThunderHawk\\ThunderHawk_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nwe3": { + "unitID": "nwe3", + "sort": "n1a", + "comment(s)": "war eagle 3", + "race": "other", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nwe3", + "sortUI": "n1a", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wareagle3", + "unitClass": "eagle", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwe3", + "sortBalance": "n1a", + "sort2": "sum", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 650, + "realHP": 650, + "regenHP": 1.5, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": "-", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "nwe3", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 4, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 52.5, + "maxdmg1": 57, + "dmgpt1": 0.5, + "backSw1": 0.67, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0, + "Qfact1": 0, + "splashTargs1": "ground,air,structure,debris,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 13, + "DPS": 35, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwe3", + "sortAbil": "n1a", + "auto": "_", + "abilList": "ANtr,Alit,Apiv", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSpiritHawk.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "ANtr,Alit,Apiv", + "skinnableID": "nwe3", + "file:hd": "Units\\Creeps\\SpiritHawk\\SpiritHawk", + "file:sd": "units\\creeps\\WarEagle\\WarEagle", + "unitSound": "WarEagle", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\WarEagle\\WarEagle_portrait", + "portrait:hd": "Units\\Creeps\\SpiritHawk\\SpiritHawk_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nadk": { + "unitID": "nadk", + "sort": "n2", + "comment(s)": "blue drake", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nadk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "azuredrake", + "unitClass": "dragone", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nadk", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,W,I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nadk", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 36.5, + "maxdmg1": 42, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 48, + "DPS": 20.2777777777778, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 40, + "dmgUp2": "-", + "mindmg2": 41, + "avgdmg2": 44.5, + "maxdmg2": 48, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nadk", + "sortAbil": "n2", + "auto": "_", + "abilList": "Afrc", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl", + "Missilearc": "0.1", + "Missilespeed": "800", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAzureDrake.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNAzureDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Afrb", + "skinnableID": "nadk", + "file:hd": "Units\\creeps\\AzureDrake\\AzureDrake", + "file:sd": "units\\creeps\\AzureDragon\\AzureDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "180", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\creeps\\AzureDragon\\AzureDragon_portrait", + "portrait:hd": "Units\\creeps\\AzureDrake\\AzureDrake_portrait", + "impactSwimZ": "0", + "impactZ": "40", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "launchZ:hd": "25", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nadr": { + "unitID": "nadr", + "sort": "n2", + "comment(s)": "blue dragon", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nadr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "azuredragon", + "unitClass": "dragone", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nadr", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 920, + "HP": 2200, + "realHP": 2200, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,W,I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nadr", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 42, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 61.5, + "maxdmg1": 78, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 41, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "msplash", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 9, + "dmgplus2": 58, + "dmgUp2": "-", + "mindmg2": 61, + "avgdmg2": 73, + "maxdmg2": 85, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nadr", + "sortAbil": "n2", + "auto": "_", + "abilList": "Advc,ACdv,Afrc,ACmi", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl", + "Missilearc": "0.1", + "Missilespeed": "800", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAzureDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Advc,ACdv,Afrb,ACmi", + "abilSkinList:melee,V0": "Advc,ACdv,Afrb", + "abilSkinList:custom,V0": "Advc,ACdv,Afrb", + "skinnableID": "nadr", + "file:hd": "Units\\creeps\\AzureDragon\\AzureDragon", + "file:sd": "units\\creeps\\AzureDragon\\AzureDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "180", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "300", + "shadowH": "300", + "shadowX": "150", + "shadowY": "150", + "portrait:sd": "units\\creeps\\AzureDragon\\AzureDragon_portrait", + "portrait:hd": "Units\\creeps\\AzureDragon\\AzureDragon_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "nadw": { + "unitID": "nadw", + "sort": "n2", + "comment(s)": "blue dragon whelp", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nadw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "azuredragonwhelp", + "unitClass": "dragone", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nadw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,W,I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nadw", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 26.5, + "maxdmg1": 30, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 14.7222222222222, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 4, + "dmgplus2": 20, + "dmgUp2": "-", + "mindmg2": 21, + "avgdmg2": 22.5, + "maxdmg2": 24, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nadw", + "sortAbil": "n2", + "auto": "_", + "abilList": "Afrc", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl", + "Missilearc": "0.1", + "Missilespeed": "800", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAzureDragonWhelp.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNAzureDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Afrb", + "skinnableID": "nadw", + "file": "units\\creeps\\AzureDragonWelp\\AzureDragonWelp", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-10", + "launchZ:hd": "10", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "10", + "addon": "Units" + }, + "nahy": { + "unitID": "nahy", + "sort": "n2", + "comment(s)": "ancient hydra", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nahy", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancienthydra", + "unitClass": "hydra", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nahy", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 440, + "HP": 1600, + "realHP": 1600, + "regenHP": 25, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nahy", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward,air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 2, + "sides1": 11, + "dmgplus1": 75, + "dmgUp1": "-", + "mindmg1": 77, + "avgdmg1": 87, + "maxdmg1": 97, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 38, + "DPS": 58, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nahy", + "sortAbil": "n2", + "auto": "_", + "abilList": "Aspo,Awrh,ACdv,Advc,Aspy", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAncientHydra.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGreenHydra.blp", + "skinType": "unit", + "abilSkinList": "Aspo,Awrh,ACdv,Advc,Aspy", + "skinnableID": "nahy", + "file:hd": "Units\\Creeps\\AncientHydra\\AncientHydra", + "file:sd": "Units\\Creeps\\Hydra\\Hydra", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale:hd": "3.8", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1.55", + "legacyModelScale": "1.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Hydra\\Hydra_portrait", + "portrait:hd": "Units\\Creeps\\AncientHydra\\AncientHydra_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "200", + "launchZ:hd": "70", + "projectileVisOffsetX:hd": "70", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nanb": { + "unitID": "nanb", + "sort": "n2", + "comment(s)": "barbed arachnathid", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nanb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "barbedarachnathid", + "unitClass": "arachnathid", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nanb", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 95, + "lumbercost": 5, + "goldRep": 95, + "lumberRep": 5, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 60, + "HP": 200, + "realHP": 200, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nanb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 8.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nanb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "DependencyOr": "nbnb", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\HarpyMissile\\HarpyMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArachnathid.blp", + "skinType": "unit", + "skinnableID": "nanb", + "file": "Units\\Creeps\\Archnathid\\Archnathid", + "unitSound": "Arachnathid", + "blend": "0.15", + "scale:hd": "1.8", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "140", + "walk:hd": "300", + "run:sd": "140", + "run:hd": "300", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.8", + "modelScale:sd": "0.65", + "legacyModelScale": "0.65", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nanc": { + "unitID": "nanc", + "sort": "n2", + "comment(s)": "crystal arachnathid", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nanc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "crystalarachnathid", + "unitClass": "arachnathid", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nanc", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 200, + "realHP": 200, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nanc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nanc", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "DependencyOr": "nbnc", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArachnathidGreen.blp", + "skinType": "unit", + "skinnableID": "nanc", + "file": "Units\\Creeps\\ArchnathidGreen\\ArchnathidGreen", + "unitSound": "Arachnathid", + "blend": "0.15", + "scale:sd": "1.2", + "scale:hd": "1.8", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "140", + "walk:hd": "300", + "run:sd": "140", + "run:hd": "300", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.8", + "modelScale:sd": "0.65", + "legacyModelScale": "0.65", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nane": { + "unitID": "nane", + "sort": "n2", + "comment(s)": "arachnathid earth-borer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nane", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "earthborerarachnathid", + "unitClass": "arachnathid", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nane", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nane", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 26.5, + "maxdmg1": 29, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 26, + "DPS": 16.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nane", + "sortAbil": "n2", + "auto": "_", + "abilList": "Acvs", + "DependencyOr": "nbne", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\HarpyMissile\\HarpyMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNArachnathidEarthBorer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNArachnathid.blp", + "skinType": "unit", + "abilSkinList": "ACvs,ACss", + "skinnableID": "nane", + "file:hd": "Units\\Creeps\\ArachnathidEarthBorer\\ArachnathidEarthBorer", + "file:sd": "Units\\Creeps\\Archnathid\\Archnathid", + "unitSound": "Arachnathid", + "blend": "0.15", + "scale:sd": "1.7", + "scale:hd": "2.8", + "legacyScale": "1.7", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "140", + "walk:hd": "270", + "run:sd": "140", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Archnathid\\Archnathid_portrait", + "portrait:hd": "Units\\Creeps\\ArachnathidEarthBorer\\ArachnathidEarthBorer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nanm": { + "unitID": "nanm", + "sort": "n2", + "comment(s)": "barbed arachnathid(merc)", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nanm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "barbedarachnathidmerc", + "unitClass": "arachnathid", + "special": "0", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nanm", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 95, + "lumbercost": 5, + "goldRep": 95, + "lumberRep": 5, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 200, + "realHP": 200, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nanm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 8.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nanm", + "sortAbil": "n2", + "auto": "_", + "abilList": "Abu5", + "DependencyOr": "nbnb", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\HarpyMissile\\HarpyMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArachnathid.blp", + "skinType": "unit", + "abilSkinList": "Abu5", + "skinnableID": "nanm", + "file": "Units\\Creeps\\Archnathid\\Archnathid", + "unitSound": "Arachnathid", + "blend": "0.15", + "scale:hd": "1.8", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "140", + "walk:hd": "300", + "run:sd": "140", + "run:hd": "300", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "0.65", + "legacyModelScale": "0.65", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nano": { + "unitID": "nano", + "sort": "n2", + "comment(s)": "arachnathid overlord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nano", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "overlordarachnathid", + "unitClass": "arachnathid", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nano", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nano", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nano", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACac", + "DependencyOr": "nbno", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArachnathidpurple.blp", + "skinType": "unit", + "abilSkinList": "ACac", + "skinnableID": "nano", + "file": "Units\\Creeps\\Archnathidpurple\\Archnathidpurple", + "unitSound": "Arachnathid", + "blend": "0.15", + "scale:sd": "1.8", + "scale:hd": "2.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "140", + "walk:hd": "300", + "run:sd": "140", + "run:hd": "300", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nanw": { + "unitID": "nanw", + "sort": "n2", + "comment(s)": "arachnathid warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nanw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "warriorarachnathid", + "unitClass": "arachnathid", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nanw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 375, + "realHP": 375, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nanw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nanw", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "DependencyOr": "nbnw", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWarriorArachnathid.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNArachnathidGreen.blp", + "skinType": "unit", + "skinnableID": "nanw", + "file:hd": "Units\\Creeps\\ArachnathidWarrior\\ArachnathidWarrior", + "file:sd": "Units\\Creeps\\ArchnathidGreen\\ArchnathidGreen", + "unitSound": "Arachnathid", + "blend": "0.15", + "scale:sd": "1.6", + "scale:hd": "2.4", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "140", + "walk:hd": "300", + "run:sd": "140", + "run:hd": "300", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\ArchnathidGreen\\ArchnathidGreen_portrait", + "portrait:hd": "Units\\Creeps\\ArachnathidWarrior\\ArachnathidWarrior_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "narg": { + "unitID": "narg", + "sort": "n2", + "comment(s)": "battle golem", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "narg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "battlegolem", + "unitClass": "golemb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "narg", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 10, + "goldRep": 195, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 500, + "realHP": 500, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "narg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 11.5, + "maxdmg1": 12, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 8.51851851851852, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "narg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArmorGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "narg", + "file": "units\\creeps\\GolemStatue\\GolemStatue", + "portrait:sd": "units\\creeps\\GolemStatue\\GolemStatue", + "portrait:hd": "units\\creeps\\GolemStatue\\GolemStatue_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale:hd": "1.9", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.85", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nass": { + "unitID": "nass", + "sort": "n2", + "comment(s)": "assassin", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nass", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "assassin", + "unitClass": "bandit", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nass", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 260, + "lumbercost": 30, + "goldRep": 260, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 220, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nass", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 27.5, + "maxdmg1": 30, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 17.1875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nass", + "sortAbil": "n2", + "auto": "_", + "abilList": "Ashm,ACvs", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\Banditmissile\\Banditmissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanditSpearThrower.blp", + "skinType": "unit", + "abilSkinList": "Ashm,ACvs", + "skinnableID": "nass", + "file:hd": "Units\\Creeps\\BanditSpearThrower\\BanditSpearThrower", + "file:sd": "units\\creeps\\BanditSpearThrower\\BanditSpearThrower", + "unitSound": "Bandit", + "blend": "0.15", + "scale:hd": "1.2", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\BanditSpearThrower\\BanditSpearThrower_portrait", + "portrait:hd": "Units\\Creeps\\BanditSpearThrower\\BanditSpearThrower_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "80", + "projectileVisOffsetX:hd": "25", + "projectileVisOffsetY:hd": "0", + "addon": "Units" + }, + "nba2": { + "unitID": "nba2", + "sort": "n2", + "comment(s)": "Doom Guard(summoned)", + "race": "demon", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nba2", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "doomguardsummoned", + "unitClass": "zzdemon", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nba2", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": "-", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1600, + "realHP": 1600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nba2", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 44.5, + "maxdmg1": 48, + "dmgpt1": 0.5, + "backSw1": 0.7, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 24.7222222222222, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "normal", + "cool2": 1.35, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 34, + "dmgUp2": "-", + "mindmg2": 35, + "avgdmg2": 35, + "maxdmg2": 38.5, + "dmgpt2": 0.5, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nba2", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACcr,Adsm,Awrs,ACrf,ACsk", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDoomGuard.blp", + "skinType": "unit", + "abilSkinList": "ACcr,Adsm,Awrs,ACrf,ACsk", + "abilSkinList:melee,V0": "ACcr,Adsm,Awrs,ACrf", + "abilSkinList:custom,V0": "ACcr,Adsm,Awrs,ACrf", + "skinnableID": "nba2", + "file:hd": "Units\\Demon\\DoomGuardSummoned\\DoomGuardSummoned", + "file:sd": "units\\demon\\DoomGuard\\DoomGuard", + "unitSound": "DoomGuard", + "blend": "0.15", + "scale:hd": "2.5", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.75", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "portrait:sd": "units\\demon\\DoomGuard\\DoomGuard", + "portrait:hd": "Units\\Demon\\DoomGuardSummoned\\DoomGuardSummoned_portrait", + "impactSwimZ": "0", + "impactZ": "90", + "weapType2": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbal": { + "unitID": "nbal", + "sort": "n2", + "comment(s)": "Doom Guard", + "race": "demon", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbal", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "doomguard", + "unitClass": "zzdemon", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbal", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": "-", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1350, + "realHP": 1350, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbal", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 44.5, + "maxdmg1": 48, + "dmgpt1": 0.5, + "backSw1": 0.7, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 24.7222222222222, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "normal", + "cool2": 1.35, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 34, + "dmgUp2": "-", + "mindmg2": 35, + "avgdmg2": 35, + "maxdmg2": 38.5, + "dmgpt2": 0.5, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbal", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACcr,Adsm,Awrs,ACrf,ACsk", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDoomGuard.blp", + "skinType": "unit", + "abilSkinList": "ACcr,Adsm,Awrs,ACrf,ACsk", + "abilSkinList:melee,V0": "ACcr,Adsm,Awrs,ACrf", + "abilSkinList:custom,V0": "ACcr,Adsm,Awrs,ACrf", + "skinnableID": "nbal", + "file": "units\\demon\\DoomGuard\\DoomGuard", + "portrait:sd": "units\\demon\\DoomGuard\\DoomGuard", + "portrait:hd": "units\\demon\\DoomGuard\\DoomGuard_portrait", + "unitSound": "DoomGuard", + "blend": "0.15", + "scale:hd": "2.4", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.75", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "90", + "weapType2": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nban": { + "unitID": "nban", + "sort": "n2", + "comment(s)": "bandit", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nban", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bandit", + "unitClass": "bandit", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nban", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nban", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nban", + "sortAbil": "n2", + "auto": "_", + "abilList": "Ashm", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBandit.blp", + "skinType": "unit", + "abilSkinList": "Ashm", + "skinnableID": "nban", + "file": "units\\creeps\\Bandit\\Bandit", + "unitSound": "Bandit", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbda": { + "unitID": "nbda", + "sort": "n2", + "comment(s)": "blue dragonspawn apprentice", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbda", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bluedragonspawnapprentice", + "unitClass": "bluedragonspawn", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbda", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 195, + "lumbercost": 10, + "goldRep": 195, + "lumberRep": 10, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 350, + "realHP": 350, + "regenHP": 0.5, + "regenType": "always", + "manaN": 250, + "realM": 250, + "mana0": 250, + "regenMana": 0.625, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nbda", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 31, + "maxdmg1": 34, + "dmgpt1": 0.83, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 17.2222222222222, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbda", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACrj,ACev", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreenDragonSpawn.blp", + "skinType": "unit", + "abilSkinList": "ACrj,ACev", + "skinnableID": "nbda", + "file": "Units\\Creeps\\DragonSpawnGreen\\DragonSpawnGreen", + "unitSound": "DragonSpawn", + "blend": "0.15", + "scale:hd": "2.1", + "scale:sd": "1.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "120", + "walk:hd": "124", + "run:sd": "375", + "run:hd": "279", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "210", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "210", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "95", + "addon": "Units" + }, + "nbdk": { + "unitID": "nbdk", + "sort": "n2", + "comment(s)": "black drake", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbdk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "blackdrake", + "unitClass": "dragonb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbdk", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "F", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbdk", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 39.5, + "maxdmg1": 45, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 48, + "DPS": 21.9444444444444, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 48, + "dmgUp2": "-", + "mindmg2": 49, + "avgdmg2": 52.5, + "maxdmg2": 56, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbdk", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FireballMissile\\FireballMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBlackDrake.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBlackDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nbdk", + "file:hd": "Units\\Creeps\\BlackDrake\\BlackDrake", + "file:sd": "units\\creeps\\BlackDragon\\BlackDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\creeps\\BlackDragon\\BlackDragon_portrait", + "portrait:hd": "Units\\Creeps\\BlackDrake\\BlackDrake_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "launchZ:hd": "-15", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "nbdm": { + "unitID": "nbdm", + "sort": "n2", + "comment(s)": "blue dragonspawn meddler", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbdm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bluedragonspawnmeddler", + "unitClass": "bluedragonspawn", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbdm", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 145, + "lumbercost": 0, + "goldRep": 145, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 220, + "HP": 370, + "realHP": 370, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nbdm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.83, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbdm", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACev", + "Buttonpos": "1,0", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlueDragonSpawn.blp", + "skinType": "unit", + "abilSkinList": "ACev", + "skinnableID": "nbdm", + "file": "Units\\Creeps\\DragonSpawnBlue\\DragonSpawnBlue", + "unitSound": "DragonSpawn", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "120", + "walk:hd": "124", + "run:sd": "375", + "run:hd": "356", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "210", + "green:hd": "255", + "green:sd": "210", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbdo": { + "unitID": "nbdo", + "sort": "n2", + "comment(s)": "blue dragonspawn overseer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbdo", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bluedragonspawnoverseer", + "unitClass": "bluedragonspawn", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbdo", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1000, + "realHP": 1000, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbdo", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.83, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbdo", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACev,ACav,ACbf", + "Buttonpos": "0,0", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDragonSpawnOverseer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNpurpleDragonSpawn.blp", + "skinType": "unit", + "abilSkinList": "ACev,ACav,ACbf", + "skinnableID": "nbdo", + "file:hd": "Units\\Creeps\\DragonSpawnOverseer\\DragonSpawnOverseer", + "file:sd": "Units\\Creeps\\DragonSpawnBlue\\DragonSpawnBlue", + "unitSound": "DragonSpawn", + "blend": "0.15", + "scale:hd": "2.85", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "120", + "walk:hd": "124", + "run:sd": "375", + "run:hd": "310", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\DragonSpawnBlue\\DragonSpawnBlue_portrait", + "portrait:hd": "Units\\Creeps\\DragonSpawnOverseer\\DragonSpawnOverseer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbdr": { + "unitID": "nbdr", + "sort": "n2", + "comment(s)": "black whelp", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbdr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "blackdragonwhelp", + "unitClass": "dragonb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbdr", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "F", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbdr", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 4, + "dmgplus2": 24, + "dmgUp2": "-", + "mindmg2": 25, + "avgdmg2": 26.5, + "maxdmg2": 28, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbdr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBlackDragonWhelp.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBlackDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nbdr", + "file": "units\\creeps\\BlackDragonWelp\\BlackDragonWelp", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "launchZ:hd": "10", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "-20", + "addon": "Units" + }, + "nbds": { + "unitID": "nbds", + "sort": "n2", + "comment(s)": "blue dragonspawn sorceror", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbds", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bluedragonspawnsorceror", + "unitClass": "bluedragonspawn", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbds", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 675, + "realHP": 675, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nbds", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31.5, + "maxdmg1": 34, + "dmgpt1": 0.83, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 23.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbds", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACfn,ACev", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGreenDragonSpawnSorcerer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGreenDragonSpawn.blp", + "skinType": "unit", + "abilSkinList": "ACfn,ACev", + "skinnableID": "nbds", + "file:hd": "Units\\Creeps\\DragonSpawnSorcerer\\DragonSpawnSorcerer", + "file:sd": "Units\\Creeps\\DragonSpawnGreen\\DragonSpawnGreen", + "unitSound": "DragonSpawn", + "blend": "0.15", + "scale:hd": "2.7", + "scale:sd": "2.4", + "legacyScale": "2.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "120", + "walk:hd": "124", + "run:sd": "375", + "run:hd": "279", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\DragonSpawnGreen\\DragonSpawnGreen_portrait", + "portrait:hd": "Units\\Creeps\\DragonSpawnSorcerer\\DragonSpawnSorcerer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "95", + "addon": "Units" + }, + "nbdw": { + "unitID": "nbdw", + "sort": "n2", + "comment(s)": "blue dragonspawn warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbdw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bluedragonspawnwarrior", + "unitClass": "bluedragonspawn", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbdw", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 300, + "lumbercost": 0, + "goldRep": 300, + "lumberRep": 0, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 775, + "realHP": 775, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nbdw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.83, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbdw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACev", + "Buttonpos": "0,0", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNpurpleDragonSpawn.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBlueDragonSpawn.blp", + "skinType": "unit", + "abilSkinList": "ACev", + "skinnableID": "nbdw", + "file": "Units\\Creeps\\DragonSpawnPurple\\DragonSpawnPurple", + "unitSound": "DragonSpawn", + "blend": "0.15", + "scale:hd": "2.45", + "scale:sd": "2.2", + "legacyScale": "2.2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "120", + "walk:hd": "124", + "run:sd": "375", + "run:hd": "310", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "235", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbld": { + "unitID": "nbld", + "sort": "n2", + "comment(s)": "bandit lord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbld", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "banditlord", + "unitClass": "bandit", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbld", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nbld", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbld", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACav,ACds", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanditLord.blp", + "skinType": "unit", + "abilSkinList": "ACav,ACds", + "skinnableID": "nbld", + "file": "units\\creeps\\BanditLord\\BanditLord", + "unitSound": "Bandit", + "blend": "0.15", + "scale:hd": "1.8", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "325", + "walk:hd": "320", + "run:sd": "325", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbnb": { + "unitID": "nbnb", + "sort": "n2", + "comment(s)": "barbed arachnathid burrowed", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbnb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "barbedarachnathidburrowed", + "unitClass": "arachnathid", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbnb", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 95, + "lumbercost": 5, + "goldRep": 95, + "lumberRep": 5, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 60, + "HP": 200, + "realHP": 200, + "regenHP": 10, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbnb", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbnb", + "sortAbil": "n2", + "auto": "_", + "abilList": "Abu5", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\HarpyMissile\\HarpyMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArachnathid.blp", + "skinType": "unit", + "abilSkinList": "Abu5", + "skinnableID": "nbnb", + "file": "Units\\Creeps\\Archnathid\\Archnathid", + "unitSound": "Arachnathid", + "blend": "0.15", + "scale:hd": "1.8", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk": "180", + "run": "180", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.65", + "legacyModelScale": "0.65", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "shadowW": "240", + "shadowH": "240", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbot": { + "unitID": "nbot", + "sort": "n2", + "comment(s)": "transport ship", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nbot", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "transportship", + "unitClass": "boat", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nbot", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 170, + "lumbercost": 50, + "goldRep": 170, + "lumberRep": 50, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 2, + "stockRegen": 30, + "stockStart": 120, + "HP": 900, + "realHP": 900, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbot", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbot", + "sortAbil": "n2", + "auto": "_", + "abilList": "Sch5,Slo3,Sdro", + "Buttonpos": "0,0", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTransport.blp", + "skinType": "unit", + "abilSkinList": "Sch5,Slo3,Sdro", + "skinnableID": "nbot", + "file:hd": "Units\\Creeps\\HumanTransportShip\\HumanTransportShip", + "file:sd": "units\\creeps\\HumanTransportShip\\HumanTransportShip", + "portrait:sd": "units\\creeps\\HumanTransportShip\\HumanTransportShip", + "portrait:hd": "Units\\Creeps\\HumanTransportShip\\HumanTransportShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbrg": { + "unitID": "nbrg", + "sort": "n2", + "comment(s)": "brigand", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbrg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "brigand", + "unitClass": "bandit", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbrg", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nbrg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbrg", + "sortAbil": "n2", + "auto": "_", + "abilList": "Ashm", + "Missileart": "Abilities\\Weapons\\Banditmissile\\Banditmissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBrigand.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditSpearThrower.blp", + "skinType": "unit", + "abilSkinList": "Ashm", + "skinnableID": "nbrg", + "file:hd": "units\\creeps\\Brigand\\Brigand", + "file:sd": "units\\creeps\\BanditSpearThrower\\BanditSpearThrower", + "unitSound": "Bandit", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "portrait:sd": "units\\creeps\\BanditSpearThrower\\BanditSpearThrower_portrait", + "portrait:hd": "units\\creeps\\Brigand\\Brigand_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "5", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "nbwm": { + "unitID": "nbwm", + "sort": "n2", + "comment(s)": "black dragon", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbwm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "blackdragon", + "unitClass": "dragonb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbwm", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 920, + "HP": 2200, + "realHP": 2200, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "F", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbwm", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 64.5, + "maxdmg1": 81, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 43, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 9, + "dmgplus2": 67, + "dmgUp2": "-", + "mindmg2": 70, + "avgdmg2": 82, + "maxdmg2": 94, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbwm", + "sortAbil": "n2", + "auto": "_", + "abilList": "Advc,ACdv,ACmi", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missilearc": "0.00", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlackDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Advc,ACdv,ACmi", + "abilSkinList:melee,V0": "Advc,ACdv", + "abilSkinList:custom,V0": "Advc,ACdv", + "skinnableID": "nbwm", + "file": "units\\creeps\\BlackDragon\\BlackDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "ShadowFlyer", + "shadowW": "300", + "shadowH": "300", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-30", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "10", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "nbzd": { + "unitID": "nbzd", + "sort": "n2", + "comment(s)": "bronze dragon", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbzd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bronzedragon", + "unitClass": "dragonc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbzd", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 920, + "HP": 2200, + "realHP": 2200, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbzd", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 64.5, + "maxdmg1": 81, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 43, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "msplash", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 9, + "dmgplus2": 67, + "dmgUp2": "-", + "mindmg2": 70, + "avgdmg2": 82, + "maxdmg2": 94, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbzd", + "sortAbil": "n2", + "auto": "_", + "abilList": "Advc,ACdv,Alit,ACmi", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBronzeDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Advc,ACdv,Alit,ACmi", + "abilSkinList:melee,V0": "Advc,ACdv,Alit", + "abilSkinList:custom,V0": "Advc,ACdv,Alit", + "skinnableID": "nbzd", + "file": "units\\creeps\\BronzeDragon\\BronzeDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "180", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "ShadowFlyer", + "shadowW": "300", + "shadowH": "300", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-50", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "10", + "addon": "Units" + }, + "nbzk": { + "unitID": "nbzk", + "sort": "n2", + "comment(s)": "bronze drake", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbzk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bronzedrake", + "unitClass": "dragonc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbzk", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbzk", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 39.5, + "maxdmg1": 45, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 48, + "DPS": 21.9444444444444, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 48, + "dmgUp2": "-", + "mindmg2": 49, + "avgdmg2": 52.5, + "maxdmg2": 56, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbzk", + "sortAbil": "n2", + "auto": "_", + "abilList": "Alit", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBronzeDrake.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBronzeDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Alit", + "skinnableID": "nbzk", + "file:hd": "Units\\Creeps\\BronzeDrake\\BronzeDrake", + "file:sd": "units\\creeps\\BronzeDragon\\BronzeDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\creeps\\BronzeDragon\\BronzeDragon_portrait", + "portrait:hd": "Units\\Creeps\\BronzeDrake\\BronzeDrake_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-30", + "launchZ:hd": "-25", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "nbzw": { + "unitID": "nbzw", + "sort": "n2", + "comment(s)": "bronze dragon whelp", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nbzw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bronzedragonwhelp", + "unitClass": "dragonc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbzw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nbzw", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 4, + "dmgplus2": 24, + "dmgUp2": "-", + "mindmg2": 25, + "avgdmg2": 26.5, + "maxdmg2": 28, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbzw", + "sortAbil": "n2", + "auto": "_", + "abilList": "Alit", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBronzeDragonWhelp.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBronzeDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Alit", + "skinnableID": "nbzw", + "file": "units\\creeps\\BronzeDragonWelp\\BronzeDragonWelp", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "180", + "blue:hd": "255", + "blue:sd": "80", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "launchZ:hd": "-40", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "20", + "addon": "Units" + }, + "ncea": { + "unitID": "ncea", + "sort": "n2", + "comment(s)": "CentaurArcher", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncea", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaurarcher", + "unitClass": "centaur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncea", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 120, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ncea", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncea", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCentaurArcher.blp", + "skinType": "unit", + "skinnableID": "ncea", + "file": "units\\creeps\\CentaurArcher\\CentaurArcher", + "unitSound:hd": "FemaleCentaur", + "unitSound:sd": "CentaurArcher", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "325", + "walk:hd": "350", + "run:sd": "325", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "70", + "addon": "Units" + }, + "ncen": { + "unitID": "ncen", + "sort": "n2", + "comment(s)": "Centaur outrunner", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncen", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centauroutrunner", + "unitClass": "centaur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncen", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 195, + "lumbercost": 0, + "goldRep": 195, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 220, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ncen", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncen", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCentaurOutrunner.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNcentaur.blp", + "skinType": "unit", + "skinnableID": "ncen", + "file:hd": "Units\\Creeps\\CentaurOutrunner\\CentaurOutrunner", + "file:sd": "units\\creeps\\Centaur\\Centaur", + "unitSound": "Centaur", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "325", + "walk:hd": "350", + "run:sd": "325", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.45", + "legacyModelScale": "1.45", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Centaur\\Centaur_portrait", + "portrait:hd": "Units\\Creeps\\CentaurOutrunner\\CentaurOutrunner_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ncer": { + "unitID": "ncer", + "sort": "n2", + "comment(s)": "centaur drudge", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncer", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaurdrudge", + "unitClass": "centaur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncer", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ncer", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncer", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCentaur.blp", + "skinType": "unit", + "skinnableID": "ncer", + "file": "units\\creeps\\Centaur\\Centaur", + "unitSound": "Centaur", + "blend": "0.15", + "scale:hd": "1.45", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "325", + "walk:hd": "350", + "run:sd": "325", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ncfs": { + "unitID": "ncfs", + "sort": "n2", + "comment(s)": "watery minion cliffrunner", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ncfs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wateryminioncliffrunner", + "unitClass": "wateryminion", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ncfs", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ncfs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncfs", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWateryMinion.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "skinType": "unit", + "skinnableID": "ncfs", + "file:hd": "Units\\Creeps\\WateryMinion\\WateryMinion", + "file:sd": "Units\\Creeps\\MurgulTideWarrior\\MurgulTideWarrior", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "0.8", + "legacyScale": "0.8", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "128", + "unitShadow": "Shadow", + "shadowW": "90", + "shadowH": "90", + "shadowX": "35", + "shadowY": "35", + "portrait:sd": "Units\\Creeps\\MurgulTideWarrior\\MurgulTideWarrior_portrait", + "portrait:hd": "Units\\Creeps\\WateryMinion\\WateryMinion_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nchp": { + "unitID": "nchp", + "sort": "n2", + "comment(s)": "chaplain", + "race": "human", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nchp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaplain", + "unitClass": "mage", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nchp", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 135, + "lumbercost": 10, + "goldRep": 135, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 370, + "realHP": 370, + "regenHP": 0.25, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 200, + "regenMana": 1.33333333333333, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nchp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 8, + "avgdmg1": 8.5, + "maxdmg1": 9, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 4.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nchp", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh2,ACif,Adsm", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\PriestMissile\\PriestMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNChaplain.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "abilSkinList": "Anh2,ACif,Adsm", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "skinnableID": "nchp", + "file:hd": "Units\\Creeps\\Chaplain\\Chaplain", + "file:sd": "units\\creeps\\HumanMage\\HumanMage", + "unitSound": "Priest", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "185", + "walk:hd": "270", + "run:sd": "185", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "units\\creeps\\HumanMage\\HumanMage_portrait", + "portrait:hd": "Units\\Creeps\\Chaplain\\Chaplain_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "80", + "projectileVisOffsetX:hd": "-10", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "ncim": { + "unitID": "ncim", + "sort": "n2", + "comment(s)": "Centaur impaler", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncim", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaurimpaler", + "unitClass": "centaur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncim", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ncim", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 27.5, + "maxdmg1": 30, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 17.1875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncim", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACsa", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCentaurImpaler.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCentaurArcher.blp", + "skinType": "unit", + "abilSkinList": "ACsa", + "skinnableID": "ncim", + "file:hd": "Units\\Creeps\\CentaurImpaler\\CentaurImpaler", + "file:sd": "units\\creeps\\CentaurArcher\\CentaurArcher", + "unitSound:hd": "FemaleCentaur", + "unitSound:sd": "CentaurArcher", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "325", + "walk:hd": "350", + "run:sd": "325", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.35", + "legacyModelScale": "1.35", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\CentaurArcher\\CentaurArcher_portrait", + "portrait:hd": "Units\\Creeps\\CentaurImpaler\\CentaurImpaler_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "150", + "projectileVisOffsetX:hd": "-25", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "ncks": { + "unitID": "ncks", + "sort": "n2", + "comment(s)": "centaur sorceror", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncks", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaursorceror", + "unitClass": "centaur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncks", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 1, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ncks", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 18.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncks", + "sortAbil": "n2", + "auto": "Ablo", + "abilList": "ACbl,ACdm", + "Missileart": "Abilities\\Weapons\\FireballMissile\\FireballMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCentaurSorcerer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCentaurKhan.blp", + "skinType": "unit", + "abilSkinList": "ACbl,ACdm", + "skinnableID": "ncks", + "file:hd": "Units\\Creeps\\CentaurSorcerer\\CentaurSorcerer", + "file:sd": "units\\creeps\\CentaurKhan\\CentaurKhan", + "unitSound:hd": "FemaleCentaur", + "unitSound:sd": "Centaur", + "blend": "0.15", + "scale": "1.55", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "325", + "walk:hd": "350", + "run:sd": "325", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\CentaurKhan\\CentaurKhan_portrait", + "portrait:hd": "Units\\Creeps\\CentaurSorcerer\\CentaurSorcerer_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "175", + "addon": "Units" + }, + "ncnk": { + "unitID": "ncnk", + "sort": "n2", + "comment(s)": "centaur khan", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncnk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaurkhan", + "unitClass": "centaur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncnk", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 900, + "realHP": 900, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ncnk", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncnk", + "sortAbil": "n2", + "auto": "_", + "abilList": "SCae,ACrn,Awrs", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCentaurKhan.blp", + "skinType": "unit", + "abilSkinList": "SCae,ACrn,Awrs", + "skinnableID": "ncnk", + "file": "units\\creeps\\CentaurKhan\\CentaurKhan", + "unitSound": "Centaur", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.9", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "325", + "walk:hd": "320", + "run:sd": "325", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndqn": { + "unitID": "ndqn", + "sort": "n2", + "comment(s)": "succubus", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.23, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndqn", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "succubus", + "unitClass": "succubus", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndqn", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 225, + "lumbercost": 40, + "goldRep": 225, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 160, + "stockStart": 0, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ndqn", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 14, + "dmgUp1": "-", + "mindmg1": 15, + "avgdmg1": 16, + "maxdmg1": 17, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 15, + "DPS": 11.8518518518519, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndqn", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDemoness.blp", + "skinType": "unit", + "skinnableID": "ndqn", + "file": "units\\demon\\Demoness\\Demoness", + "unitSound": "Demoness", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalLightSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "70", + "addon": "Units" + }, + "ndqp": { + "unitID": "ndqp", + "sort": "n2", + "comment(s)": "maiden of pain", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.23, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndqp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "maidenofpain", + "unitClass": "succubus", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndqp", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 3, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 410, + "stockStart": 0, + "HP": 1050, + "realHP": 1050, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndqp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 53, + "dmgUp1": "-", + "mindmg1": 54, + "avgdmg1": 57, + "maxdmg1": 60, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 42.2222222222222, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndqp", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACdr,ACss", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMaidenOfPain.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBlueDemoness.blp", + "skinType": "unit", + "abilSkinList": "ACdr,ACss", + "skinnableID": "ndqp", + "file": "units\\demon\\DemonessBlue\\DemonessBlue", + "unitSound": "Demoness", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "110", + "launchZ:hd": "110", + "projectileVisOffsetX:hd": "-20", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "ndqs": { + "unitID": "ndqs", + "sort": "n2", + "comment(s)": "queen of suffering", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.23, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndqs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "queenofsuffering", + "unitClass": "succubus", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndqs", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 225, + "lumbercost": 40, + "goldRep": 225, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 510, + "stockStart": 0, + "HP": 1600, + "realHP": 1600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndqs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 68, + "dmgUp1": "-", + "mindmg1": 69, + "avgdmg1": 73, + "maxdmg1": 77, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 37, + "DPS": 54.0740740740741, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndqs", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACdc,ACua,ACch", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNQueenOfSuffering.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBlueDemoness.blp", + "skinType": "unit", + "abilSkinList": "ACdc,ACua,ACch", + "skinnableID": "ndqs", + "file:hd": "Units\\Demon\\QueenOfSuffering\\QueenOfSuffering", + "file:sd": "units\\demon\\DemonessBlue\\DemonessBlue", + "unitSound": "Demoness", + "blend": "0.15", + "scale:hd": "1.35", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\demon\\DemonessBlue\\DemonessBlue_portrait", + "portrait:hd": "Units\\Demon\\QueenOfSuffering\\QueenOfSuffering_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalLightSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "110", + "launchZ:hd": "110", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "130", + "addon": "Units" + }, + "ndqt": { + "unitID": "ndqt", + "sort": "n2", + "comment(s)": "vile temptress", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.23, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndqt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "viletemptress", + "unitClass": "succubus", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndqt", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 225, + "lumbercost": 40, + "goldRep": 225, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 310, + "stockStart": 0, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndqt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndqt", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNVileTemptress.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDemoness.blp", + "skinType": "unit", + "skinnableID": "ndqt", + "file:hd": "Units\\Demon\\VileTemptress\\VileTemptress", + "file:sd": "units\\demon\\Demoness\\Demoness", + "unitSound": "Demoness", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.35", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\demon\\Demoness\\Demoness_portrait", + "portrait:hd": "Units\\Demon\\VileTemptress\\VileTemptress_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalLightSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "90", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "-25", + "projectileVisOffsetY:hd": "110", + "addon": "Units" + }, + "ndqv": { + "unitID": "ndqv", + "sort": "n2", + "comment(s)": "vile tormentor", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.23, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndqv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "viletormentor", + "unitClass": "succubus", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndqv", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 225, + "lumbercost": 40, + "goldRep": 225, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 260, + "stockStart": 0, + "HP": 510, + "realHP": 510, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ndqv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 34, + "maxdmg1": 37, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 21.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndqv", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACsi", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlueDemoness.blp", + "skinType": "unit", + "abilSkinList": "ACsi", + "skinnableID": "ndqv", + "file:hd": "Units\\Demon\\VileTormentor\\VileTormentor", + "file:sd": "units\\demon\\DemonessBlue\\DemonessBlue", + "unitSound": "Demoness", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "190", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\demon\\DemonessBlue\\DemonessBlue_portrait", + "portrait:hd": "Units\\Demon\\VileTormentor\\VileTormentor_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "110", + "launchZ:hd": "110", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "130", + "addon": "Units" + }, + "ndrv": { + "unitID": "ndrv", + "sort": "n2", + "comment(s)": "revenant of the depths", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ndrv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "revenantofthedepths", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrv", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1000, + "realHP": 1000, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndrv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrv", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACwe", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDepthsRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "abilSkinList": "ACwe", + "skinnableID": "ndrv", + "file:hd": "Units\\Creeps\\RevenantOfTheDepths\\RevenantOfTheDepths", + "file:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "2.5", + "scale:sd": "2.6", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.65", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves_portrait", + "portrait:hd": "Units\\Creeps\\RevenantOfTheDepths\\RevenantOfTheDepths_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndtb": { + "unitID": "ndtb", + "sort": "n2", + "comment(s)": "dark troll berserker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndtb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darktrollberserker", + "unitClass": "darktroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndtb", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 245, + "lumbercost": 30, + "goldRep": 245, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 220, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndtb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 20.3125, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndtb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDarkTrollBerserker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDarkTroll.blp", + "skinType": "unit", + "skinnableID": "ndtb", + "file:hd": "Units\\Creeps\\DarkTrollBerserker\\DarkTrollBerserker", + "file:sd": "units\\creeps\\DarkTroll\\DarkTroll", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "180", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\DarkTroll\\DarkTroll_portrait", + "portrait:hd": "Units\\Creeps\\DarkTrollBerserker\\DarkTrollBerserker_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "65", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "120", + "addon": "Units" + }, + "ndth": { + "unitID": "ndth", + "sort": "n2", + "comment(s)": "dark troll high priest", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndth", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darktrollhighpriest", + "unitClass": "darktroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndth", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ndth", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndth", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "ACdm,Anh2,ACsl", + "Missileart": "Abilities\\Weapons\\FireballMissile\\FireballMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDarkTrollHighPriest.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDarkTrollShadowPriest.blp", + "skinType": "unit", + "abilSkinList": "Anh2,ACsl", + "skinnableID": "ndth", + "file:hd": "Units\\Creeps\\DarkTrollHighPriest\\DarkTrollHighPriest", + "file:sd": "units\\creeps\\DarkTrollShadowPriest\\DarkTrollShadowPriest", + "unitSound": "ForestTrollShadowPriest", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1.45", + "legacyScale": "1.45", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.3", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\DarkTrollShadowPriest\\DarkTrollShadowPriest_portrait", + "portrait:hd": "Units\\Creeps\\DarkTrollHighPriest\\DarkTrollHighPriest_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "impactZ:hd": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "160", + "projectileVisOffsetX:hd": "-40", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "ndtp": { + "unitID": "ndtp", + "sort": "n2", + "comment(s)": "dark troll shadow priest", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndtp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darktrollshadowpriest", + "unitClass": "darktroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndtp", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 175, + "lumbercost": 10, + "goldRep": 175, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 120, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ndtp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 20.5, + "maxdmg1": 24, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 11.3888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndtp", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh1", + "Missileart": "Abilities\\Weapons\\FireballMissile\\FireballMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkTrollShadowPriest.blp", + "skinType": "unit", + "abilSkinList": "Anh1", + "skinnableID": "ndtp", + "file": "units\\creeps\\DarkTrollShadowPriest\\DarkTrollShadowPriest", + "unitSound": "ForestTrollShadowPriest", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "80", + "impactZ:hd": "45", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "110", + "projectileVisOffsetX:hd": "-40", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "ndtr": { + "unitID": "ndtr", + "sort": "n2", + "comment(s)": "darkTroll", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndtr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darktroll", + "unitClass": "darktroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndtr", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndtr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndtr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkTroll.blp", + "skinType": "unit", + "skinnableID": "ndtr", + "file": "units\\creeps\\DarkTroll\\DarkTroll", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "0.85", + "legacyModelScale": "0.85", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "impactZ:hd": "35", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "120", + "addon": "Units" + }, + "ndtt": { + "unitID": "ndtt", + "sort": "n2", + "comment(s)": "darkTrollTrapper", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndtt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darktrolltrapper", + "unitClass": "darktroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndtt", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndtt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.3, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 15.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndtt", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkTrollTrapper.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "ndtt", + "file": "units\\creeps\\DarkTrollTrapper\\DarkTrollTrapper", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "270", + "walk:hd": "300", + "run:sd": "270", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ndtw": { + "unitID": "ndtw", + "sort": "n2", + "comment(s)": "darkTrollwarlord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndtw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darktrollwarlord", + "unitClass": "darktroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndtw", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndtw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 39.5, + "maxdmg1": 43, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 24.6875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndtw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACat", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDarkTrollWarlord.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDarkTrollTrapper.blp", + "skinType": "unit", + "abilSkinList": "ACat", + "skinnableID": "ndtw", + "file:hd": "Units\\Creeps\\DarkTrollWarlord\\DarkTrollWarlord", + "file:sd": "units\\creeps\\DarkTrollTrapper\\DarkTrollTrapper", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "270", + "walk:hd": "320", + "run:sd": "270", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "110", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\DarkTrollTrapper\\DarkTrollTrapper_portrait", + "portrait:hd": "Units\\Creeps\\DarkTrollWarlord\\DarkTrollWarlord_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "25", + "projectileVisOffsetY:hd": "180", + "addon": "Units" + }, + "nehy": { + "unitID": "nehy", + "sort": "n2", + "comment(s)": "elder hydra", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nehy", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elderhydra", + "unitClass": "hydra", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nehy", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 850, + "realHP": 850, + "regenHP": 15, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nehy", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 34, + "dmgUp1": "-", + "mindmg1": 35, + "avgdmg1": 39.5, + "maxdmg1": 44, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 24.6875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nehy", + "sortAbil": "n2", + "auto": "Afae", + "abilList": "ACff", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElderHydra.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGreenHydra.blp", + "skinType": "unit", + "abilSkinList": "ACff", + "skinnableID": "nehy", + "file:hd": "Units\\Creeps\\ElderHydra\\ElderHydra", + "file:sd": "Units\\Creeps\\Hydra\\Hydra", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale:hd": "4", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "110", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Hydra\\Hydra_portrait", + "portrait:hd": "Units\\Creeps\\ElderHydra\\ElderHydra_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "150", + "launchZ:hd": "120", + "projectileVisOffsetX:hd": "60", + "addon": "Units" + }, + "nelb": { + "unitID": "nelb", + "sort": "n2", + "comment(s)": "berserk elemental", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.5, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nelb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bereserkelemental", + "unitClass": "elemental", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nelb", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1100, + "realHP": 1100, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "X,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nelb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 43, + "maxdmg1": 47, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 37, + "DPS": 23.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nelb", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACfn", + "Missileart": "Abilities\\Weapons\\WaterElementalMissile\\WaterElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBerserkElemental.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACfn", + "skinnableID": "nelb", + "file:hd": "Units\\Human\\BerserkElemental\\BerserkElemental", + "file:sd": "units\\human\\WaterElemental\\WaterElemental", + "unitSound": "WaterElemental", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "50", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\human\\WaterElemental\\WaterElemental_portrait", + "portrait:hd": "Units\\Human\\BerserkElemental\\BerserkElemental_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "140", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "130", + "addon": "Units" + }, + "nele": { + "unitID": "nele", + "sort": "n2", + "comment(s)": "enraged elemental", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.5, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nele", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "enragedelemental", + "unitClass": "elemental", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nele", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "X,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nele", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 21, + "maxdmg1": 25, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 75, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "enemy,ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 11.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nele", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi", + "Missileart": "Abilities\\Weapons\\WaterElementalMissile\\WaterElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEnragedElemental.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "nele", + "file:hd": "Units\\Human\\EnragedElemental\\EnragedElemental", + "file:sd": "units\\human\\WaterElemental\\WaterElemental", + "unitSound": "WaterElemental", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "165", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\human\\WaterElemental\\WaterElemental_portrait", + "portrait:hd": "Units\\Human\\EnragedElemental\\EnragedElemental_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "130", + "addon": "Units" + }, + "nenc": { + "unitID": "nenc", + "sort": "n2", + "comment(s)": "corrupted ent", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nenc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "corruptedent", + "unitClass": "ent", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nenc", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nenc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.467, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nenc", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorruptedEnt.blp", + "skinType": "unit", + "skinnableID": "nenc", + "file:hd": "Units\\creeps\\CorruptedEnt\\CorruptedEnt", + "file:sd": "units\\creeps\\CorruptedEnt\\CorruptedEnt", + "unitSound": "CorruptedEnt", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "110", + "walk:hd": "270", + "run:sd": "110", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "140", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\CorruptedEnt\\CorruptedEnt_portrait", + "portrait:hd": "Units\\creeps\\CorruptedEnt\\CorruptedEnt_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nenf": { + "unitID": "nenf", + "sort": "n2", + "comment(s)": "enforcer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nenf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "enforcer", + "unitClass": "bandit", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nenf", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nenf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31.5, + "maxdmg1": 34, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 23.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nenf", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACev", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEnforcer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBandit.blp", + "skinType": "unit", + "abilSkinList": "ACev", + "skinnableID": "nenf", + "file:hd": "Units\\Creeps\\BanditEnforcer\\BanditEnforcer", + "file:sd": "units\\creeps\\Bandit\\Bandit", + "unitSound": "Bandit", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.37", + "modelScale:sd": "1.45", + "legacyModelScale": "1.45", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Bandit\\Bandit_portrait", + "portrait:hd": "Units\\Creeps\\BanditEnforcer\\BanditEnforcer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nenp": { + "unitID": "nenp", + "sort": "n2", + "comment(s)": "poison ent", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nenp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "poisonent", + "unitClass": "ent", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nenp", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 350, + "realHP": 350, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nenp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.467, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nenp", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACvs", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPoisonEnt.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCorruptedEnt.blp", + "skinType": "unit", + "abilSkinList": "Aenr,ACvs", + "skinnableID": "nenp", + "file:hd": "Units\\creeps\\PoisonedEnt\\PoisonedEnt", + "file:sd": "units\\creeps\\CorruptedEnt\\CorruptedEnt", + "unitSound": "CorruptedEnt", + "blend": "0.15", + "scale:hd": "2.45", + "scale:sd": "1.35", + "legacyScale": "1.35", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "60", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\CorruptedEnt\\CorruptedEnt_portrait", + "portrait:hd": "Units\\creeps\\PoisonedEnt\\PoisonedEnt_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nepl": { + "unitID": "nepl", + "sort": "n2", + "comment(s)": "plague ent", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nepl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "plagueent", + "unitClass": "ent", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nepl", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nepl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 31, + "dmgUp1": "-", + "mindmg1": 32, + "avgdmg1": 34, + "maxdmg1": 36, + "dmgpt1": 0.467, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 25.1851851851852, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nepl", + "sortAbil": "n2", + "auto": "_", + "abilList": "Aenr,Aap3", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPlagueEnt.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCorruptedEnt.blp", + "skinType": "unit", + "abilSkinList": "Aenr,Aap3", + "skinnableID": "nepl", + "file:hd": "Units\\creeps\\PlaguedEnt\\PlaguedEnt", + "file:sd": "units\\creeps\\CorruptedEnt\\CorruptedEnt", + "unitSound": "CorruptedEnt", + "blend": "0.15", + "scale:hd": "3.25", + "scale:sd": "1.45", + "legacyScale": "1.45", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "160", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\CorruptedEnt\\CorruptedEnt_portrait", + "portrait:hd": "Units\\creeps\\PlaguedEnt\\PlaguedEnt_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nerd": { + "unitID": "nerd", + "sort": "n2", + "comment(s)": "eredar diabolist", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nerd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "eredardiabolist", + "unitClass": "eredar", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nerd", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 630, + "realHP": 630, + "regenHP": 1, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nerd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 31, + "maxdmg1": 34, + "dmgpt1": 0.5, + "backSw1": 0.6, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 17.2222222222222, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nerd", + "sortAbil": "n2", + "auto": "ANpa", + "abilList": "ACpa,ANfb", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEredarWarlockPurple.blp", + "skinType": "unit", + "abilSkinList": "ACpa,ANfb", + "skinnableID": "nerd", + "file": "units\\demon\\EredarWarlockPurple\\EredarWarlockPurple", + "unitSound": "PitLord", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.65", + "legacyModelScale": "1.65", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "130", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "160", + "launchZ:hd": "120", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ners": { + "unitID": "ners", + "sort": "n2", + "comment(s)": "eredar sorceror", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ners", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "eredarsorceror", + "unitClass": "eredar", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ners", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 425, + "realHP": 425, + "regenHP": 1, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ners", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 22.5, + "maxdmg1": 24, + "dmgpt1": 0.5, + "backSw1": 0.6, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 12.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ners", + "sortAbil": "n2", + "auto": "Aadm", + "abilList": "ACdm,ACsl", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEredarSorcerer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNEredarWarlockPurple.blp", + "skinType": "unit", + "abilSkinList": "ACdm,ACsl", + "skinnableID": "ners", + "file:hd": "Units\\Demon\\EredarSorcerer\\EredarSorcerer", + "file:sd": "units\\demon\\EredarWarlock\\EredarWarlock", + "unitSound": "PitLord", + "blend": "0.15", + "scale:hd": "1.65", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\demon\\EredarWarlock\\EredarWarlock_portrait", + "portrait:hd": "Units\\Demon\\EredarSorcerer\\EredarSorcerer_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "140", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "nerw": { + "unitID": "nerw", + "sort": "n2", + "comment(s)": "eredar warlock", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nerw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "eredarwarlock", + "unitClass": "eredar", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nerw", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 1, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1350, + "realHP": 1350, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nerw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.6, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 28.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nerw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbh,ACfd,ACmf", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEredarWarlock.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNEredarWarlockPurple.blp", + "skinType": "unit", + "abilSkinList": "ACbh,ACfd,ACmf", + "skinnableID": "nerw", + "file": "units\\demon\\EredarWarlock\\EredarWarlock", + "unitSound": "PitLord", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "150", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "190", + "launchZ:hd": "140", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "25", + "addon": "Units" + }, + "nfel": { + "unitID": "nfel", + "sort": "n2", + "comment(s)": "fel stalker", + "race": "demon", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfel", + "sortUI": "n2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "felstalker", + "unitClass": "felstalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfel", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nfel", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfel", + "sortAbil": "n2", + "auto": "_", + "abilList": "Ambb", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "skinType": "unit", + "abilSkinList": "Ambb", + "skinnableID": "nfel", + "file": "units\\demon\\felhound\\felhound", + "unitSound": "Felhound", + "blend": "0.15", + "scale:hd": "2.7", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "55", + "addon": "Units" + }, + "nfgb": { + "unitID": "nfgb", + "sort": "n2", + "comment(s)": "bloodfiend", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfgb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bloodfiend", + "unitClass": "felguard", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfgb", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 240, + "lumbercost": 0, + "goldRep": 240, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 220, + "HP": 450, + "realHP": 450, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nfgb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 24.5, + "maxdmg1": 26, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.1481481481481, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfgb", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACce", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBloodFiend.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFelGuard.blp", + "skinType": "unit", + "abilSkinList": "ACce", + "skinnableID": "nfgb", + "file:hd": "Units\\Demon\\Bloodfiend\\Bloodfiend", + "file:sd": "units\\demon\\Felgaurd\\Felgaurd", + "unitSound": "DoomGuard", + "blend:hd": "0.2", + "blend:sd": "0.15", + "scale:hd": "2.35", + "scale:sd": "1.35", + "legacyScale": "1.35", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "280", + "walk:hd": "270", + "run:sd": "280", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1.15", + "modelScale:sd": "1.35", + "legacyModelScale": "1.35", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\demon\\Felgaurd\\Felgaurd_portrait", + "portrait:hd": "Units\\Demon\\Bloodfiend\\Bloodfiend_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfgo": { + "unitID": "nfgo", + "sort": "n2", + "comment(s)": "Forgotten One", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 0.97, + "canSleep": 1, + "cargoSize": 1, + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "PathTextures\\8x8Default.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfgo", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "forgottenone", + "unitClass": "forgottenone", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfgo", + "sortBalance": "n2", + "sort2": "zz", + "level": 15, + "type": "_", + "goldcost": 745, + "lumbercost": 250, + "goldRep": 745, + "lumberRep": 250, + "fmade": " - ", + "fused": 10, + "bountydice": 15, + "bountysides": 5, + "bountyplus": 1000, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 760, + "stockStart": 440, + "HP": 4000, + "realHP": 4000, + "regenHP": 10, + "regenType": "always", + "manaN": 1000, + "realM": 1000, + "mana0": 1000, + "regenMana": 5, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": 1, + "unitWeaponID": "nfgo", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 2, + "mincool1": "-", + "dice1": 2, + "sides1": 15, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 170, + "avgdmg1": 56, + "maxdmg1": 70, + "dmgpt1": 0.26, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 100, + "Qarea1": 200, + "Hfact1": 0.4, + "Qfact1": 0.2, + "splashTargs1": "ground,structure,debris,air,notself,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 51, + "DPS": 28, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfgo", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACfb,ACch,ACtn", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNForgottenOne.blp", + "skinType": "unit", + "abilSkinList": "ACfb,ACch,ACtn", + "uberSplat": "NGOL", + "skinnableID": "nfgo", + "file": "Units\\Creeps\\ForgottenOne\\ForgottenOne", + "blend": "0.15", + "scale": "4.3", + "legacyScale": "4.3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfgt": { + "unitID": "nfgt", + "sort": "n2", + "comment(s)": "forgotten one tentacle", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.07, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfgt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tentacle", + "unitClass": "forgottenone", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfgt", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 0, + "HP": 200, + "realHP": 200, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nfgt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 180, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 28, + "maxdmg1": 30, + "dmgpt1": 0.6, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 18.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfgt", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTentacle.blp", + "skinType": "unit", + "skinnableID": "nfgt", + "file": "Units\\Creeps\\ForgottenOne\\ForgottenOneTent", + "portrait:sd": "Units\\Creeps\\ForgottenOne\\ForgottenOneTent", + "portrait:hd": "Units\\Creeps\\ForgottenOne\\ForgottenOneTent_portrait", + "blend": "0.15", + "scale:hd": "1", + "scale:sd": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "90", + "shadowH": "90", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfgu": { + "unitID": "nfgu", + "sort": "n2", + "comment(s)": "felguard", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfgu", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "felguard", + "unitClass": "felguard", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfgu", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 170, + "lumbercost": 0, + "goldRep": 170, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nfgu", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 11.5, + "maxdmg1": 12, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 8.51851851851852, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfgu", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelGuard.blp", + "skinType": "unit", + "skinnableID": "nfgu", + "file": "units\\demon\\Felgaurd\\Felgaurd", + "unitSound": "DoomGuard", + "blend:hd": "0.2", + "blend:sd": "0.15", + "scale:hd": "2.1", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "280", + "walk:hd": "270", + "run:sd": "280", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfod": { + "unitID": "nfod", + "sort": "n2", + "comment(s)": "faceless one deathbringer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.57, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfod", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "facelessonedeathbringer", + "unitClass": "facelessone", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfod", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 440, + "HP": 1900, + "realHP": 1900, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfod", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 64.5, + "maxdmg1": 81, + "dmgpt1": 0.5, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 43, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 100, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "normal", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 12, + "dmgplus2": 45, + "dmgUp2": "-", + "mindmg2": 48, + "avgdmg2": 64.5, + "maxdmg2": 81, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": " - ", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfod", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACad,ACsi", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFacelessOneDeathbringer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFacelessOne.blp", + "skinType": "unit", + "abilSkinList": "ACad,ACsi", + "skinnableID": "nfod", + "file:hd": "Units\\Creeps\\FacelessOneDeathBringer\\FacelessOneDeathBringer", + "file:sd": "Units\\Creeps\\FacelessOne\\FacelessOne", + "unitSound": "FacelessOne", + "blend": "0.15", + "scale:hd": "2.5", + "scale:sd": "2.4", + "legacyScale": "2.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "2.3", + "legacyModelScale": "2.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\FacelessOne\\FacelessOne_portrait", + "portrait:hd": "Units\\Creeps\\FacelessOneDeathBringer\\FacelessOneDeathBringer_portrait", + "impactSwimZ": "0", + "impactZ": "180", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "80", + "addon": "Units" + }, + "nfor": { + "unitID": "nfor", + "sort": "n2", + "comment(s)": "faceless one trickster", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.57, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfor", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "facelessonetrickster", + "unitClass": "facelessone", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfor", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 675, + "realHP": 675, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nfor", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfor", + "sortAbil": "n2", + "auto": "Acrs", + "abilList": "ACcs,ACpu", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFacelessOne.blp", + "skinType": "unit", + "abilSkinList": "ACcs,ACpu", + "skinnableID": "nfor", + "file": "Units\\Creeps\\FacelessOne\\FacelessOne", + "unitSound": "FacelessOne", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "180", + "green:hd": "255", + "green:sd": "180", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "40", + "addon": "Units" + }, + "nfot": { + "unitID": "nfot", + "sort": "n2", + "comment(s)": "faceless one terror", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.57, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfot", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "facelessoneterror", + "unitClass": "facelessone", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfot", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1150, + "realHP": 1150, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfot", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 44.5, + "maxdmg1": 48, + "dmgpt1": 0.5, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 24.7222222222222, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 100, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "normal", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 40, + "dmgUp2": "-", + "mindmg2": 41, + "avgdmg2": 44.5, + "maxdmg2": 48, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": " - ", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfot", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACsl,ACmf", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFacelessOneTerror.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFacelessOne.blp", + "skinType": "unit", + "abilSkinList": "ACsl,ACmf", + "skinnableID": "nfot", + "file:hd": "Units\\Creeps\\FacelessOneTerror\\FacelessOneTerror", + "file:sd": "Units\\Creeps\\FacelessOne\\FacelessOne", + "unitSound": "FacelessOne", + "blend": "0.15", + "scale:hd": "1.9", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.85", + "legacyModelScale": "1.85", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\FacelessOne\\FacelessOne_portrait", + "portrait:hd": "Units\\Creeps\\FacelessOneTerror\\FacelessOneTerror_portrait", + "impactSwimZ": "0", + "impactZ": "160", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfov": { + "unitID": "nfov", + "sort": "n2", + "comment(s)": "overlord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfov", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "overlord", + "unitClass": "felguard", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfov", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 170, + "lumbercost": 0, + "goldRep": 170, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 310, + "stockStart": 0, + "HP": 775, + "realHP": 775, + "regenHP": 0.25, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nfov", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 27.5, + "maxdmg1": 29, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 20.3703703703704, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfov", + "sortAbil": "n2", + "auto": "_", + "abilList": "Acht,ACce,ACvp", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelGuardBlue.blp", + "skinType": "unit", + "abilSkinList": "Acht,ACce,ACvp", + "skinnableID": "nfov", + "file": "units\\demon\\FelgaurdBlue\\FelgaurdBlue", + "unitSound": "DoomGuard", + "blend": "0.15", + "scale:hd": "3.3", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "280", + "walk:hd": "270", + "run:sd": "280", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1.25", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfpc": { + "unitID": "nfpc", + "sort": "n2", + "comment(s)": "Polar Furbolg Champion", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfpc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "polarfurbolgchampion", + "unitClass": "polarfurbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfpc", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfpc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfpc", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolgChampion.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolg.blp", + "skinType": "unit", + "skinnableID": "nfpc", + "file:hd": "Units\\Creeps\\PolarFurbolgChampion\\PolarFurbolgChampion", + "file:sd": "units\\creeps\\PolarFurbolg\\PolarFurbolg", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\PolarFurbolg\\PolarFurbolg_portrait", + "portrait:hd": "Units\\Creeps\\PolarFurbolgChampion\\PolarFurbolgChampion_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfpe": { + "unitID": "nfpe", + "sort": "n2", + "comment(s)": "Polar Furbolg Elder Shaman", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfpe", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "polarfurbolgeldershaman", + "unitClass": "polarfurbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfpe", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfpe", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 35, + "maxdmg1": 39, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 19.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfpe", + "sortAbil": "n2", + "auto": "_", + "abilList": "AChv,ACfn", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolgElderShaman.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolgShaman.blp", + "skinType": "unit", + "abilSkinList": "AChv,ACfn", + "skinnableID": "nfpe", + "file:hd": "Units\\Creeps\\PolarFurbolgElderShaman\\PolarFurbolgElderShaman", + "file:sd": "units\\creeps\\PolarFurbolgTracker\\PolarFurbolgTracker", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.9", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\PolarFurbolgTracker\\PolarFurbolgTracker_portrait", + "portrait:hd": "Units\\Creeps\\PolarFurbolgElderShaman\\PolarFurbolgElderShaman_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "160", + "projectileVisOffsetX:hd": "-50", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "nfpl": { + "unitID": "nfpl", + "sort": "n2", + "comment(s)": "Polar Furbolg", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfpl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "polarfurbolg", + "unitClass": "polarfurbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfpl", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nfpl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfpl", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolg.blp", + "skinType": "unit", + "skinnableID": "nfpl", + "file": "units\\creeps\\PolarFurbolg\\PolarFurbolg", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfps": { + "unitID": "nfps", + "sort": "n2", + "comment(s)": "Polar Furbolg Shaman", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfps", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "polarfurbolgshaman", + "unitClass": "polarfurbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfps", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 275, + "lumbercost": 30, + "goldRep": 275, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 330, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nfps", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfps", + "sortAbil": "n2", + "auto": "AUfu", + "abilList": "ACf2,ACdm", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolgShaman.blp", + "skinType": "unit", + "abilSkinList": "ACf2,ACdm", + "skinnableID": "nfps", + "file:hd": "Units\\Creeps\\PolarFurbolgShaman\\PolarFurbolgShaman", + "file:sd": "units\\creeps\\PolarFurbolgTracker\\PolarFurbolgTracker", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\PolarFurbolgTracker\\PolarFurbolgTracker_portrait", + "portrait:hd": "Units\\Creeps\\PolarFurbolgShaman\\PolarFurbolgShaman_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "25", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "nfpt": { + "unitID": "nfpt", + "sort": "n2", + "comment(s)": "Polar Furbolg Tracker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfpt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "polarfurbolgtracker", + "unitClass": "polarfurbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfpt", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfpt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfpt", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolgTracker.blp", + "skinType": "unit", + "abilSkinList": "ACsw", + "skinnableID": "nfpt", + "file": "units\\creeps\\PolarFurbolgTracker\\PolarFurbolgTracker", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfpu": { + "unitID": "nfpu", + "sort": "n2", + "comment(s)": "Polar Furbolg Ursa Warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfpu", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "polarfurbolgursawarrior", + "unitClass": "polarfurbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfpu", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 8, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1100, + "realHP": 1100, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfpu", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfpu", + "sortAbil": "n2", + "auto": "_", + "abilList": "Awrs,ACac", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolarFurbolgElder.blp", + "skinType": "unit", + "abilSkinList": "Awrs,ACac", + "skinnableID": "nfpu", + "file:hd": "Units\\Creeps\\PolarFurbolgUrsaWarrior\\PolarFurbolgUrsaWarrior", + "file:sd": "units\\creeps\\PolarFurbolg\\PolarFurbolg", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\PolarFurbolg\\PolarFurbolg_portrait", + "portrait:hd": "Units\\Creeps\\PolarFurbolgUrsaWarrior\\PolarFurbolgUrsaWarrior_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfra": { + "unitID": "nfra", + "sort": "n2", + "comment(s)": "Furbolg Ursa Warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfra", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolgancient", + "unitClass": "furbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfra", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1100, + "realHP": 1100, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfra", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfra", + "sortAbil": "n2", + "auto": "_", + "abilList": "Awrs,ACac", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolgElder.blp", + "skinType": "unit", + "abilSkinList": "Awrs,ACac", + "skinnableID": "nfra", + "file:hd": "units\\creeps\\FurbolgUrsaWarrior\\FurbolgUrsaWarrior", + "file:sd": "units\\creeps\\FurbolgElder\\FurbolgElder", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "2.3", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\FurbolgElder\\FurbolgElder_portrait", + "portrait:hd": "units\\creeps\\FurbolgUrsaWarrior\\FurbolgUrsaWarrior_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfrb": { + "unitID": "nfrb", + "sort": "n2", + "comment(s)": "Furbolg Tracker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfrb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolgtracker", + "unitClass": "furbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfrb", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfrb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfrb", + "sortAbil": "n2", + "auto": "Afae", + "abilList": "ACff", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolgTracker.blp", + "skinType": "unit", + "abilSkinList": "ACff", + "abilSkinList:melee,V0": "Afae", + "abilSkinList:custom,V0": "Afae", + "skinnableID": "nfrb", + "file": "units\\creeps\\FurbolgTracker\\FurbolgTracker", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfre": { + "unitID": "nfre", + "sort": "n2", + "comment(s)": "Furbolg Elder Shaman", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfre", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolgeldershaman", + "unitClass": "furbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfre", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfre", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 35, + "maxdmg1": 39, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 19.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfre", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACr2,ACls", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFurbolgElderShaman.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFurbolgShaman.blp", + "skinType": "unit", + "abilSkinList": "ACr2,ACls", + "skinnableID": "nfre", + "file:hd": "Units\\Creeps\\FurbolgElderShaman\\FurbolgElderShaman", + "file:sd": "units\\creeps\\FurbolgShaman\\FurbolgShaman", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.85", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\FurbolgShaman\\FurbolgShaman_portrait", + "portrait:hd": "Units\\Creeps\\FurbolgElderShaman\\FurbolgElderShaman_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nfrg": { + "unitID": "nfrg", + "sort": "n2", + "comment(s)": "Furbolg Champion", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfrg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolgchampion", + "unitClass": "furbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfrg", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfrg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfrg", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFurbolgChampion.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFurbolg.blp", + "skinType": "unit", + "skinnableID": "nfrg", + "file:hd": "Units\\Creeps\\FurbolgChampion\\FurbolgChampion", + "file:sd": "units\\creeps\\Furbolg\\Furbolg", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.9", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Furbolg\\Furbolg_portrait", + "portrait:hd": "Units\\Creeps\\FurbolgChampion\\FurbolgChampion_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfrl": { + "unitID": "nfrl", + "sort": "n2", + "comment(s)": "Furbolg", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfrl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolg", + "unitClass": "furbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfrl", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfrl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfrl", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolg.blp", + "skinType": "unit", + "skinnableID": "nfrl", + "file": "units\\creeps\\Furbolg\\Furbolg", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfrp": { + "unitID": "nfrp", + "sort": "n2", + "comment(s)": "Furbolg Panda", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfrp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolgpanda", + "unitClass": "furbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfrp", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfrp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfrp", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolgPanda.blp", + "skinType": "unit", + "skinnableID": "nfrp", + "file": "units\\creeps\\FurbolgPanda\\FurbolgPanda", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfrs": { + "unitID": "nfrs", + "sort": "n2", + "comment(s)": "Furbolg Shaman", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfrs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolgshaman", + "unitClass": "furbolg", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfrs", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 360, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfrs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfrs", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACr2", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolgShaman.blp", + "skinType": "unit", + "abilSkinList": "ACr2", + "skinnableID": "nfrs", + "file": "units\\creeps\\FurbolgShaman\\FurbolgShaman", + "unitSound": "Furbolg", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "nfsh": { + "unitID": "nfsh", + "sort": "n2", + "comment(s)": "forest troll high priest", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfsh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttrollhighpriest", + "unitClass": "foresttroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfsh", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 305, + "lumbercost": 40, + "goldRep": 305, + "lumberRep": 40, + "fmade": " - ", + "fused": 4, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nfsh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfsh", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh2,ACif,ACd2", + "Missileart": "Abilities\\Weapons\\FireballMissile\\FireballMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNForestTrollHighPriest.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNForestTrollShadowPriest.blp", + "skinType": "unit", + "abilSkinList": "Anh2,ACif,ACd2", + "abilSkinList:melee,V0": "Anh2,ACif,ACdm", + "abilSkinList:custom,V0": "Anh2,ACif,ACdm", + "skinnableID": "nfsh", + "file:hd": "Units\\Creeps\\ForestTrollHighPriest\\ForestTrollHighPriest", + "file:sd": "units\\creeps\\ForestTrollShadowPriest\\ForestTrollShadowPriest", + "unitSound": "ForestTrollShadowPriest", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:sd": "130", + "red:hd": "255", + "green:sd": "255", + "green:hd": "255", + "blue:sd": "130", + "blue:hd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\ForestTrollShadowPriest\\ForestTrollShadowPriest_portrait", + "portrait:hd": "units\\creeps\\ForestTrollHighPriest\\ForestTrollHighPriest_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "65", + "projectileVisOffsetX:hd": "-70", + "projectileVisOffsetY:hd": "240", + "addon": "Units" + }, + "nfsp": { + "unitID": "nfsp", + "sort": "n2", + "comment(s)": "forest troll shadow priest", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfsp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttrollshadowpriest", + "unitClass": "foresttroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfsp", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 195, + "lumbercost": 10, + "goldRep": 195, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 180, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nfsp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 20.5, + "maxdmg1": 24, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 11.3888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfsp", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh1,ACdm", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FireballMissile\\FireballMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNForestTrollShadowPriest.blp", + "skinType": "unit", + "abilSkinList": "Anh1,ACdm", + "skinnableID": "nfsp", + "file": "units\\creeps\\ForestTrollShadowPriest\\ForestTrollShadowPriest", + "unitSound": "ForestTrollShadowPriest", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "220", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "25", + "projectileVisOffsetY:hd": "160", + "addon": "Units" + }, + "nftb": { + "unitID": "nftb", + "sort": "n2", + "comment(s)": "forest troll berserker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nftb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttrollberserker", + "unitClass": "foresttroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nftb", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 245, + "lumbercost": 30, + "goldRep": 245, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 220, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nftb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 20.3125, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nftb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNForestTrollBerserker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNForestTroll.blp", + "skinType": "unit", + "skinnableID": "nftb", + "file:hd": "Units\\Creeps\\ForestTrollBerserker\\ForestTrollBerserker", + "file:sd": "units\\creeps\\ForestTroll\\ForestTroll", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "130", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "130", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\ForestTroll\\ForestTroll_portrait", + "portrait:hd": "Units\\Creeps\\ForestTrollBerserker\\ForestTrollBerserker_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "65", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nftk": { + "unitID": "nftk", + "sort": "n2", + "comment(s)": "ForestTrollKing", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nftk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttrollking", + "unitClass": "foresttroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nftk", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nftk", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 39.5, + "maxdmg1": 43, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 24.6875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nftk", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACat", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNForestTrollWarlord.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNForestTroll.blp", + "skinType": "unit", + "abilSkinList": "ACat", + "skinnableID": "nftk", + "file:hd": "Units\\Creeps\\ForestTrollWarlord\\ForestTrollWarlord", + "file:sd": "units\\creeps\\ForestTrollTrapper\\ForestTrollTrapper", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "270", + "walk:hd": "320", + "run:sd": "270", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.55", + "legacyModelScale": "1.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\ForestTrollTrapper\\ForestTrollTrapper_portrait", + "portrait:hd": "Units\\Creeps\\ForestTrollWarlord\\ForestTrollWarlord_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "25", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nftr": { + "unitID": "nftr", + "sort": "n2", + "comment(s)": "ForestTroll", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nftr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttroll", + "unitClass": "foresttroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nftr", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nftr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nftr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNForestTroll.blp", + "skinType": "unit", + "skinnableID": "nftr", + "file": "units\\creeps\\ForestTroll\\ForestTroll", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "220", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "nftt": { + "unitID": "nftt", + "sort": "n2", + "comment(s)": "ForestTrollTrapper", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nftt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttrolltrapper", + "unitClass": "foresttroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nftt", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nftt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.3, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nftt", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNForestTrollTrapper.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "nftt", + "file": "units\\creeps\\ForestTrollTrapper\\ForestTrollTrapper", + "unitSound": "ForestTroll", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ngdk": { + "unitID": "ngdk", + "sort": "n2", + "comment(s)": "green drake", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngdk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "greendrake", + "unitClass": "dragond", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngdk", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngdk", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 39.5, + "maxdmg1": 45, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 48, + "DPS": 21.9444444444444, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 48, + "dmgUp2": "-", + "mindmg2": 49, + "avgdmg2": 52.5, + "maxdmg2": 56, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngdk", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\GreenDragonMissile\\GreenDragonMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGreenDrake.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGreenDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "ngdk", + "file:hd": "Units\\Creeps\\GreenDrake\\GreenDrake", + "file:sd": "units\\creeps\\GreenDragon\\GreenDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "180", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\creeps\\GreenDragon\\GreenDragon_portrait", + "portrait:hd": "Units\\Creeps\\GreenDrake\\GreenDrake_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "launchZ:hd": "-30", + "impactZ:hd": "10", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "nggr": { + "unitID": "nggr", + "sort": "n2", + "comment(s)": "granite golem", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nggr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "granitegolem", + "unitClass": "golema", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nggr", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 1.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,D,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nggr", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 64.5, + "maxdmg1": 68, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 47.7777777777778, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.35, + "mincool2": "-", + "dice2": 1, + "sides2": 6, + "dmgplus2": 45, + "dmgUp2": "-", + "mindmg2": 46, + "avgdmg2": 48.5, + "maxdmg2": 51, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nggr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACtb,ACtc", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1000", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGraniteGolem.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACtb,ACtc", + "skinnableID": "nggr", + "file:hd": "Units\\Creeps\\GraniteGolem\\GraniteGolem", + "file:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:hd": "Units\\Creeps\\GraniteGolem\\GraniteGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale:hd": "2.8", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "impactZ:hd": "150", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "220", + "launchZ:hd": "180", + "projectileVisOffsetX:hd": "-150", + "projectileVisOffsetY:hd": "-150", + "addon": "Units" + }, + "ngh1": { + "unitID": "ngh1", + "sort": "n2", + "comment(s)": "ghost", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.17, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 50, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngh1", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ghost", + "unitClass": "ghost", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngh1", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ngh1", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.56, + "backSw1": 0.51, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngh1", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACps", + "Missileart": "Abilities\\Weapons\\BansheeMissile\\BansheeMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhost.blp", + "skinType": "unit", + "abilSkinList": "ACps", + "skinnableID": "ngh1", + "file": "units\\creeps\\BansheeGhost\\BansheeGhost", + "unitSound": "Ghost", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.8", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red:hd": "255", + "red:sd": "110", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "ngh2": { + "unitID": "ngh2", + "sort": "n2", + "comment(s)": "wraith", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.17, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 50, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngh2", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wraith", + "unitClass": "ghost", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngh2", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "undead", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ngh2", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 36, + "maxdmg1": 41, + "dmgpt1": 0.56, + "backSw1": 0.51, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 44, + "DPS": 20, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngh2", + "sortAbil": "n2", + "auto": "Acrs", + "abilList": "ACps,ACcs", + "Missileart": "Abilities\\Weapons\\BansheeMissile\\BansheeMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWraith.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGhost.blp", + "skinType": "unit", + "abilSkinList": "ACps,ACcs", + "skinnableID": "ngh2", + "file:hd": "Units\\Creeps\\BansheeWraith\\BansheeWraith", + "file:sd": "units\\creeps\\BansheeGhost\\BansheeGhost", + "unitSound": "Ghost", + "blend": "0.15", + "scale:hd": "1.85", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.9", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\BansheeGhost\\BansheeGhost_portrait", + "portrait:hd": "Units\\Creeps\\BansheeWraith\\BansheeWraith_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "120", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "ngir": { + "unitID": "ngir", + "sort": "n2", + "comment(s)": "goblin shredder", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngir", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinshredder", + "unitClass": "goblin", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngir", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "Mechanical", + "goldcost": 375, + "lumbercost": 100, + "goldRep": 375, + "lumberRep": 100, + "fmade": " - ", + "fused": 4, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 85, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 300, + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngir", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.4, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 31, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 47.5, + "maxdmg1": 61, + "dmgpt1": 0.3, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 33.9285714285714, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.35, + "mincool2": "-", + "dice2": 10, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 10, + "avgdmg2": 10, + "maxdmg2": 10, + "dmgpt2": 0.3, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngir", + "sortAbil": "n2", + "auto": "_", + "abilList": "Ahr3", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGoblinShredder.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNJunkGolem.blp", + "skinType": "unit", + "abilSkinList": "Ahr3", + "skinnableID": "ngir", + "file:hd": "Units\\Creeps\\IronGolem\\IronGolem", + "file:sd": "units\\creeps\\IronGolem\\IronGolem", + "unitSound": "IronGolem", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "portrait:sd": "units\\creeps\\IronGolem\\IronGolem_portrait", + "portrait:hd": "Units\\Creeps\\IronGolem\\IronGolem_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavySlice", + "weapType2": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nglm": { + "unitID": "nglm", + "sort": "n2", + "comment(s)": "goblin land mine", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nglm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinlandmine", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nglm", + "sortBalance": "n2", + "sort2": "zz", + "level": "-", + "type": "standon,ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": "#VALUE!", + "stockStart": 0, + "HP": 100, + "realHP": 100, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nglm", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nglm", + "sortAbil": "n2", + "auto": "_", + "abilList": "Amnx,Amin", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinLandMine.blp", + "skinType": "unit", + "abilSkinList": "Amnx,Amin", + "skinnableID": "nglm", + "file": "units\\creeps\\GoblinLandMine\\GoblinLandMine", + "portrait:SD": "units\\creeps\\GoblinLandMine\\GoblinLandMine", + "portrait:sd": "units\\creeps\\GoblinLandMine\\GoblinLandMine", + "portrait:hd": "units\\creeps\\GoblinLandMine\\GoblinLandMine_portrait", + "unitSound": "GoblinLandMine", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.7", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngna": { + "unitID": "ngna", + "sort": "n2", + "comment(s)": "Gnoll Poacher", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngna", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollpoacher", + "unitClass": "gnolla", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngna", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngna", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 8.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngna", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGnollArcher.blp", + "skinType": "unit", + "skinnableID": "ngna", + "file": "units\\creeps\\GnollArcher\\GnollArcher", + "portrait:sd": "units\\creeps\\GnollArcher\\GnollArcher", + "portrait:hd": "units\\creeps\\GnollArcher\\GnollArcher_portrait", + "unitSound": "GnollArcher", + "blend": "0.15", + "scale:hd": "1.1", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "40", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "ngnb": { + "unitID": "ngnb", + "sort": "n2", + "comment(s)": "gnoll brute", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngnb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollbrute", + "unitClass": "gnollb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngnb", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 140, + "lumbercost": 0, + "goldRep": 140, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 120, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ngnb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngnb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGnollBrute.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGnoll.blp", + "skinType": "unit", + "skinnableID": "ngnb", + "file:hd": "Units\\Creeps\\GnollBrute\\GnollBrute", + "file:sd": "units\\creeps\\Gnoll\\Gnoll", + "portrait:sd": "units\\creeps\\Gnoll\\Gnoll", + "portrait:hd": "Units\\Creeps\\GnollBrute\\GnollBrute_portrait", + "unitSound": "Gnoll", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "140", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngno": { + "unitID": "ngno", + "sort": "n2", + "comment(s)": "Gnoll Robber", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngno", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnoll1", + "unitClass": "gnollb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngno", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ngno", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngno", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGnoll.blp", + "skinType": "unit", + "skinnableID": "ngno", + "file": "units\\creeps\\Gnoll\\Gnoll", + "portrait:sd": "units\\creeps\\Gnoll\\Gnoll", + "portrait:hd": "units\\creeps\\Gnoll\\Gnoll_portrait", + "unitSound": "Gnoll", + "blend": "0.15", + "scale:hd": "1.1", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngns": { + "unitID": "ngns", + "sort": "n2", + "comment(s)": "Gnoll Assassin", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngns", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollassassin", + "unitClass": "gnolla", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngns", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 320, + "realHP": 320, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngns", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 15.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngns", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACvs", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\PoisonArrow\\PoisonArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGnollAssassin.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGnollArcher.blp", + "skinType": "unit", + "abilSkinList": "ACvs", + "skinnableID": "ngns", + "file:hd": "Units\\Creeps\\GnollAssassin\\GnollAssassin", + "file:sd": "units\\creeps\\GnollArcher\\GnollArcher", + "portrait:sd": "units\\creeps\\GnollArcher\\GnollArcher", + "portrait:hd": "Units\\Creeps\\GnollAssassin\\GnollAssassin_portrait", + "unitSound": "GnollArcher", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "40", + "launchZ:hd": "55", + "projectileVisOffsetX:hd": "-20", + "projectileVisOffsetY:hd": "90", + "addon": "Units" + }, + "ngnv": { + "unitID": "ngnv", + "sort": "n2", + "comment(s)": "gnoll king", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngnv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollking", + "unitClass": "gnollb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngnv", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 305, + "lumbercost": 35, + "goldRep": 305, + "lumberRep": 35, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngnv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngnv", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACac", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGnollKing.blp", + "skinType": "unit", + "abilSkinList": "ACac", + "skinnableID": "ngnv", + "file": "units\\creeps\\GnollOverseer\\GnollOverseer", + "portrait:sd": "units\\creeps\\GnollOverseer\\GnollOverseer", + "portrait:hd": "units\\creeps\\GnollOverseer\\GnollOverseer_portrait", + "unitSound": "GnollKing", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngnw": { + "unitID": "ngnw", + "sort": "n2", + "comment(s)": "gnoll warden", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngnw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnoll3", + "unitClass": "gnollb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngnw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 180, + "lumbercost": 20, + "goldRep": 180, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 220, + "HP": 330, + "realHP": 330, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngnw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 1.23, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 15.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngnw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpu", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGnollWarden.blp", + "skinType": "unit", + "abilSkinList": "ACpu", + "skinnableID": "ngnw", + "file": "units\\creeps\\GnollWarden\\GnollWarden", + "portrait:sd": "units\\creeps\\GnollWarden\\GnollWarden", + "portrait:hd": "units\\creeps\\GnollWarden\\GnollWarden_portrait", + "unitSound": "Gnoll", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "ngrd": { + "unitID": "ngrd", + "sort": "n2", + "comment(s)": "green dragon", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngrd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "greendragon", + "unitClass": "dragond", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngrd", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 920, + "HP": 2200, + "realHP": 2200, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngrd", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 64.5, + "maxdmg1": 81, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 43, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 9, + "dmgplus2": 45, + "dmgUp2": "-", + "mindmg2": 48, + "avgdmg2": 60, + "maxdmg2": 72, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngrd", + "sortAbil": "n2", + "auto": "_", + "abilList": "Advc,ACdv,ACmi", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\GreenDragonMissile\\GreenDragonMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreenDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Advc,ACdv,ACmi", + "abilSkinList:melee,V0": "Advc,ACdv", + "abilSkinList:custom,V0": "Advc,ACdv", + "skinnableID": "ngrd", + "file": "units\\creeps\\GreenDragon\\GreenDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red:hd": "255", + "red:sd": "180", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "ShadowFlyer", + "shadowW": "300", + "shadowH": "300", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "60", + "impactZ:hd": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-30", + "launchZ:hd": "-10", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "ngrk": { + "unitID": "ngrk", + "sort": "n2", + "comment(s)": "mud golem", + "race": "creeps", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngrk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mudgolem", + "unitClass": "golema", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngrk", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 145, + "lumbercost": 10, + "goldRep": 145, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,D,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ngrk", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngrk", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACmi,ACsw", + "Buttonpos": "2,0", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMudGolem.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACsw", + "skinnableID": "ngrk", + "file:hd": "Units\\Creeps\\MudGolem\\MudGolem", + "file:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:hd": "Units\\Creeps\\MudGolem\\MudGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "0.6", + "legacyModelScale": "0.6", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "110", + "blue:hd": "255", + "blue:sd": "70", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngrw": { + "unitID": "ngrw", + "sort": "n2", + "comment(s)": "green dragon whelp", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngrw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "greendragonwhelp", + "unitClass": "dragond", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngrw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngrw", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 4, + "dmgplus2": 24, + "dmgUp2": "-", + "mindmg2": 25, + "avgdmg2": 26.5, + "maxdmg2": 28, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngrw", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\GreenDragonMissile\\GreenDragonMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGreenDragonWhelp.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGreenDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "ngrw", + "file": "units\\creeps\\GreenDragonWelp\\GreenDragonWelp", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "230", + "blue:hd": "255", + "blue:sd": "0", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-10", + "addon": "Units" + }, + "ngsp": { + "unitID": "ngsp", + "sort": "n2", + "comment(s)": "GoblinSapper", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngsp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinsapper", + "unitClass": "goblin", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngsp", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "Sapper", + "goldcost": 215, + "lumbercost": 100, + "goldRep": 215, + "lumberRep": 100, + "fmade": " - ", + "fused": 2, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 210, + "stockStart": 440, + "HP": 100, + "realHP": 100, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngsp", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngsp", + "sortAbil": "n2", + "auto": "_", + "abilList": "Asds", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinSapper.blp", + "skinType": "unit", + "abilSkinList": "Asds", + "skinnableID": "ngsp", + "file": "units\\creeps\\GoblinSapper\\GoblinSapper", + "unitSound": "GoblinSapper", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngst": { + "unitID": "ngst", + "sort": "n2", + "comment(s)": "rock golem", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngst", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rockgolem", + "unitClass": "golema", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngst", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 675, + "realHP": 675, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,D,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngst", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 1.35, + "mincool2": "-", + "dice2": 1, + "sides2": 5, + "dmgplus2": 28, + "dmgUp2": "-", + "mindmg2": 29, + "avgdmg2": 31, + "maxdmg2": 33, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngst", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACtb", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1000", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACtb", + "skinnableID": "ngst", + "file": "units\\creeps\\RockGolem\\RockGolem", + "portrait:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:hd": "units\\creeps\\RockGolem\\RockGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale:hd": "2.6", + "scale:sd": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "220", + "addon": "Units" + }, + "ngza": { + "unitID": "ngza", + "sort": "n2", + "comment(s)": "misha 3", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ngza", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "misha3", + "unitClass": "bear", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngza", + "sortBalance": "n2", + "sort2": "sum", + "level": 6, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 310, + "stockStart": 0, + "HP": 1800, + "realHP": 1800, + "regenHP": 1.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngza", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 46, + "avgdmg1": 47.5, + "maxdmg1": 49, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 31.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngza", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANb2,ACrk", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMishaLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "abilSkinList": "ANb2,ACrk", + "skinnableID": "ngza", + "file:hd": "Units\\Creeps\\MishaLvl3\\MishaLvl3", + "file:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "3.75", + "scale:sd": "2.2", + "legacyScale": "2.2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear_portrait", + "portrait:hd": "Units\\Creeps\\MishaLvl3\\MishaLvl3_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nhar": { + "unitID": "nhar", + "sort": "n2", + "comment(s)": "Harpy Scout", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhar", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "harpyscout", + "unitClass": "harpy", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhar", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 150, + "lumbercost": 0, + "goldRep": 150, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 540, + "HP": 210, + "realHP": 210, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nhar", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 8.5, + "maxdmg1": 10, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 4.72222222222222, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhar", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\HarpyMissile\\HarpyMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHarpy.blp", + "skinType": "unit", + "skinnableID": "nhar", + "file": "units\\creeps\\Harpy\\Harpy", + "unitSound": "Harpy", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.7", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "140", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "ShadowFlyer", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "30", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nhdc": { + "unitID": "nhdc", + "sort": "n2", + "comment(s)": "deceiver", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhdc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "deceiver", + "unitClass": "heretic", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhdc", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nhdc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhdc", + "sortAbil": "n2", + "auto": "Acrs", + "abilList": "ACcs", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDeceiver.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNAcolyte.blp", + "skinType": "unit", + "abilSkinList": "ACcs", + "skinnableID": "nhdc", + "file:hd": "Units\\Undead\\Deceiver\\Deceiver", + "file:sd": "units\\undead\\Acolyte\\Acolyte", + "unitSound": "Acolyte", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\undead\\Acolyte\\Acolyte_portrait", + "portrait:hd": "Units\\Undead\\Deceiver\\Deceiver_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "80", + "addon": "Units" + }, + "nhfp": { + "unitID": "nhfp", + "sort": "n2", + "comment(s)": "fallen priest", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhfp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "fallenpriest", + "unitClass": "heretic", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhfp", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nhfp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 10.5, + "maxdmg1": 12, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 5.83333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhfp", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFallenPriest.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNAcolyte.blp", + "skinType": "unit", + "skinnableID": "nhfp", + "file:hd": "Units\\Undead\\FallenPriest\\FallenPriest", + "file:sd": "units\\undead\\Acolyte\\Acolyte", + "unitSound": "Acolyte", + "blend": "0.15", + "scale:hd": "1.2", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\undead\\Acolyte\\Acolyte_portrait", + "portrait:hd": "Units\\Undead\\FallenPriest\\FallenPriest_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nhhr": { + "unitID": "nhhr", + "sort": "n2", + "comment(s)": "heretic", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhhr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "heretic", + "unitClass": "heretic", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhhr", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nhhr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 18.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhhr", + "sortAbil": "n2", + "auto": "Arai", + "abilList": "ACrd,ACca", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHeretic.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNAcolyte.blp", + "skinType": "unit", + "abilSkinList": "ACrd,ACca", + "skinnableID": "nhhr", + "file:hd": "Units\\Undead\\Heretic\\Heretic", + "file:sd": "units\\undead\\Acolyte\\Acolyte", + "unitSound": "Acolyte", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\Acolyte\\Acolyte_portrait", + "portrait:hd": "Units\\Undead\\Heretic\\Heretic_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "addon": "Units" + }, + "nhrh": { + "unitID": "nhrh", + "sort": "n2", + "comment(s)": "harpy hag", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhrh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "harpyhag", + "unitClass": "harpy", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhrh", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nhrh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 18.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhrh", + "sortAbil": "n2", + "auto": "Acrs", + "abilList": "ACcs,ACsl", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHarpyStormHag.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHarpyWitch.blp", + "skinType": "unit", + "abilSkinList": "ACcs,ACsl", + "skinnableID": "nhrh", + "file:hd": "Units\\Creeps\\HarpyStormHag\\HarpyStormHag", + "file:sd": "units\\creeps\\HarpyWitch\\HarpyWitch", + "unitSound": "Harpy", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "0", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.7", + "legacyModelScale": "1.7", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\HarpyWitch\\HarpyWitch_portrait", + "portrait:hd": "Units\\Creeps\\HarpyStormHag\\HarpyStormHag_portrait", + "impactSwimZ": "0", + "impactZ": "30", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nhrq": { + "unitID": "nhrq", + "sort": "n2", + "comment(s)": "harpy queen", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhrq", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "harpyqueen", + "unitClass": "harpy", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhrq", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nhrq", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 28, + "maxdmg1": 32, + "dmgpt1": 0.35, + "backSw1": 0.3, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 15.5555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhrq", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACr2,ACcy", + "Missileart": "Abilities\\Weapons\\GargoyleMissile\\GargoyleMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHarpyQueen.blp", + "skinType": "unit", + "abilSkinList": "ACr2,ACcy", + "skinnableID": "nhrq", + "file": "units\\creeps\\HarpyQueen\\HarpyQueen", + "unitSound": "Harpy", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "0", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "2.1", + "legacyModelScale": "2.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "30", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "nhrr": { + "unitID": "nhrr", + "sort": "n2", + "comment(s)": "harpy rogue", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhrr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "harpyrogue", + "unitClass": "harpy", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhrr", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 360, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nhrr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhrr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\HarpyMissile\\HarpyMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHarpyRogue.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHarpy.blp", + "skinType": "unit", + "skinnableID": "nhrr", + "file:hd": "Units\\Creeps\\HarpyRogue\\HarpyRogue", + "file:sd": "units\\creeps\\Harpy\\Harpy", + "unitSound": "Harpy", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.7", + "legacyModelScale": "1.7", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "ShadowFlyer", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Harpy\\Harpy_portrait", + "portrait:hd": "Units\\Creeps\\HarpyRogue\\HarpyRogue_portrait", + "impactSwimZ": "0", + "impactZ": "30", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nhrw": { + "unitID": "nhrw", + "sort": "n2", + "comment(s)": "harpy witch", + "race": "creeps", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhrw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "harpywitch", + "unitClass": "harpy", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhrw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 240, + "lumbercost": 30, + "goldRep": 240, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 280, + "realHP": 280, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nhrw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhrw", + "sortAbil": "n2", + "auto": "Afae", + "abilList": "ACff", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHarpyWitch.blp", + "skinType": "unit", + "abilSkinList": "ACff", + "skinnableID": "nhrw", + "file": "units\\creeps\\HarpyWitch\\HarpyWitch", + "unitSound": "Harpy", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "30", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nhyc": { + "unitID": "nhyc", + "sort": "n2", + "comment(s)": "campaign turtle", + "race": "naga", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nhyc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "campaignturtle", + "unitClass": "turtle", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nhyc", + "sortBalance": "n2", + "sort2": "zzn", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 65, + "goldRep": 320, + "lumberRep": 65, + "fmade": " - ", + "fused": 5, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1400, + "nsight": 950, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nhyc", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 900, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,debris,item,ward", + "rangeN1": 480, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 24.5, + "maxdmg1": 26, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 14, + "targs2": "structure,tree", + "rangeN2": 450, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 18, + "dmgplus2": 62, + "dmgUp2": "-", + "mindmg2": 63, + "avgdmg2": 71.5, + "maxdmg2": 80, + "dmgpt2": 0.7, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhyc", + "sortAbil": "n2", + "auto": "_", + "abilList": "Advc,ACdv,ANth,Ansk", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDragonTurtleRed.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleRed.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Advc,ACdv,ANth,Ansk", + "skinnableID": "nhyc", + "file": "Units\\Creeps\\DragonSeaTurtleRange\\DragonSeaTurtleRange", + "unitSound": "GiantSeaTurtle", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "110", + "impactZ:hd": "70", + "launchSwimZ": "-50", + "showUI1": "1", + "showUI2": "1", + "launchZ": "75", + "launchZ:hd": "60", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nhyd": { + "unitID": "nhyd", + "sort": "n2", + "comment(s)": "hydra", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nhyd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "hydra", + "unitClass": "hydra", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nhyd", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 575, + "realHP": 575, + "regenHP": 10, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nhyd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 28.5, + "maxdmg1": 31, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 17.8125, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhyd", + "sortAbil": "n2", + "auto": "_", + "abilList": "Aspo, Aspt", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHydra.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGreenHydra.blp", + "skinType": "unit", + "abilSkinList": "Aspo, Aspt", + "skinnableID": "nhyd", + "file": "Units\\Creeps\\Hydra\\Hydra", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale:hd": "3.15", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "70", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "100", + "projectileVisOffsetX:hd": "50", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nhyh": { + "unitID": "nhyh", + "sort": "n2", + "comment(s)": "hydra hatchling", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nhyh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "hydrahatchling", + "unitClass": "hydra", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nhyh", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 350, + "realHP": 350, + "regenHP": 4, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nhyh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhyh", + "sortAbil": "n2", + "auto": "_", + "abilList": "Aspo", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreenHydra.blp", + "skinType": "unit", + "abilSkinList": "Aspo", + "skinnableID": "nhyh", + "file:hd": "Units\\Creeps\\HydraHatchling\\HydraHatchling", + "file:sd": "Units\\Creeps\\Hydra\\Hydra", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale:hd": "2.1", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.7", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "125", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Hydra\\Hydra_portrait", + "portrait:hd": "Units\\Creeps\\HydraHatchling\\HydraHatchling_portrait", + "impactSwimZ": "0", + "impactZ": "50", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "100", + "launchZ:hd": "70", + "projectileVisOffsetX:hd": "30", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nhym": { + "unitID": "nhym", + "sort": "n2", + "comment(s)": "hydromancer", + "race": "human", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nhym", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "hydromancer", + "unitClass": "mage", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhym", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 155, + "lumbercost": 20, + "goldRep": 155, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 405, + "realHP": 405, + "regenHP": 0.25, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 200, + "regenMana": 1.33333333333333, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nhym", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 8, + "avgdmg1": 9, + "maxdmg1": 10, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 5.14285714285714, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhym", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw,ACpy,ACc3", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHydromancer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "abilSkinList": "ACsw,ACpy,ACc3", + "skinnableID": "nhym", + "file:hd": "Units\\Creeps\\Hydromancer\\Hydromancer", + "file:sd": "units\\creeps\\BanditMage\\BanditMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "270", + "run:sd": "260", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\creeps\\BanditMage\\BanditMage_portrait", + "portrait:hd": "Units\\Creeps\\Hydromancer\\Hydromancer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "addon": "Units" + }, + "nina": { + "unitID": "nina", + "sort": "n2", + "comment(s)": "infernal automaton", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.67, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nina", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "infernaljuggernaut", + "unitClass": "infernalmachine", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nina", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "Mechanical", + "goldcost": 275, + "lumbercost": 50, + "goldRep": 275, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 510, + "stockStart": 0, + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 200, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 36, + "reptm": 36, + "sight": 1400, + "nsight": 1000, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 64, + "stockInitial": 1, + "unitWeaponID": "nina", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.8, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 65, + "maxdmg1": 69, + "dmgpt1": 0.5, + "backSw1": 0.8, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 37, + "DPS": 40.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nina", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANin", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missileart:hd": "Abilities\\Weapons\\InfernalMachineMissile\\InfernalMachineMissile.mdl", + "Missilearc": "0.08", + "Missilespeed": "700", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernalFlameCannon.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ANin", + "skinnableID": "nina", + "file": "units\\creeps\\InfernalCannonFlame\\InfernalCannonFlame", + "unitSound": "InfernalMachine", + "blend": "0.15", + "scale:hd": "3.65", + "scale:sd": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "180", + "run:sd": "150", + "run:hd": "180", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "280", + "shadowH": "280", + "shadowX": "110", + "shadowY": "110", + "impactSwimZ": "0", + "impactZ": "110", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "160", + "projectileVisOffsetY:hd": "-30", + "addon": "Units" + }, + "ninc": { + "unitID": "ninc", + "sort": "n2", + "comment(s)": "infernal contraption", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.67, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ninc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "infernalcontraption", + "unitClass": "infernalmachine", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ninc", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "Mechanical", + "goldcost": 275, + "lumbercost": 50, + "goldRep": 275, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 260, + "stockStart": 0, + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 200, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 36, + "reptm": 36, + "sight": 1400, + "nsight": 1000, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ninc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 625, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.8, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 30.5, + "maxdmg1": 33, + "dmgpt1": 0.5, + "backSw1": 0.8, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 19.0625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ninc", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missileart:hd": "Abilities\\Weapons\\InfernalMachineMissile\\InfernalMachineMissile.mdl", + "Missilearc": "0.08", + "Missilespeed": "700", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernalCannon.blp", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ninc", + "file": "units\\creeps\\InfernalCannonCannon\\InfernalCannonCannon", + "unitSound": "InfernalMachine", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "180", + "run:sd": "150", + "run:hd": "180", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.6", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "280", + "shadowH": "280", + "shadowX": "110", + "shadowY": "110", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "80", + "launchZ:hd": "100", + "projectileVisOffsetY:hd": "-20", + "addon": "Units" + }, + "ninf": { + "unitID": "ninf", + "sort": "n2", + "comment(s)": "Infernal", + "race": "demon", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ninf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "infernal", + "unitClass": "zzdemon", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ninf", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": "-", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 1, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ninf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward,tree", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 54.5, + "maxdmg1": 60, + "dmgpt1": 0.26, + "backSw1": 0.74, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 40.3703703703704, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ninf", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ANpi,ACrk", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ANpi,ACrk", + "abilSkinList:melee,V0": "ACmi,ANpi", + "abilSkinList:custom,V0": "ACmi,ANpi", + "skinnableID": "ninf", + "file": "units\\demon\\Infernal\\Infernal", + "unitSound": "Infernal", + "blend": "0.15", + "scale:hd": "3.2", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ninm": { + "unitID": "ninm", + "sort": "n2", + "comment(s)": "infernal machine", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.67, + "canSleep": 0, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ninm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "infernalmachine", + "unitClass": "infernalmachine", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ninm", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "Mechanical", + "goldcost": 275, + "lumbercost": 50, + "goldRep": 275, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 0, + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": 350, + "realM": 350, + "mana0": 350, + "regenMana": 0.875, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 200, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 36, + "reptm": 36, + "sight": 1400, + "nsight": 1000, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ninm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.8, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 39.5, + "maxdmg1": 43, + "dmgpt1": 0.5, + "backSw1": 0.8, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 24.6875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ninm", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbc,ACua", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missileart:hd": "Abilities\\Weapons\\InfernalMachineMissile\\InfernalMachineMissile.mdl", + "Missilearc": "0.08", + "Missilespeed": "700", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNInfernalMachine.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNInfernalCannon.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ACbc", + "skinnableID": "ninm", + "file:hd": "Units\\Creeps\\InfernalMachine\\InfernalMachine", + "file:sd": "units\\creeps\\InfernalCannonCannon\\InfernalCannonCannon", + "unitSound": "InfernalMachine", + "blend": "0.15", + "scale": "2.75", + "legacyScale": "2.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "180", + "run:sd": "150", + "run:hd": "180", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "135", + "unitShadow": "Shadow", + "shadowW": "280", + "shadowH": "280", + "shadowX": "110", + "shadowY": "110", + "portrait:sd": "units\\creeps\\InfernalCannonCannon\\InfernalCannonCannon_portrait", + "portrait:hd": "Units\\Creeps\\InfernalMachine\\InfernalMachine_portrait", + "impactSwimZ": "0", + "impactZ": "90", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "120", + "projectileVisOffsetY:hd": "45", + "addon": "Units" + }, + "nith": { + "unitID": "nith", + "sort": "n2", + "comment(s)": "ice troll high priest", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nith", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetrollhighpriest", + "unitClass": "icetroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nith", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W,N,I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nith", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nith", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh2,ACf2,ACd2", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceTrollShaman.blp", + "skinType": "unit", + "abilSkinList": "Anh2,ACf2,ACd2", + "abilSkinList:melee,V0": "Anh2,ACfu,ACdm", + "abilSkinList:custom,V0": "Anh2,ACfu,ACdm", + "skinnableID": "nith", + "file:hd": "Units\\creeps\\IceTrollShadowPriest\\IceTrollShadowPriest", + "file:sd": "units\\creeps\\IceTrollShadowPriest\\IceTrollShadowPriest", + "unitSound": "IceTrollShadowPriest", + "blend": "0.15", + "scale:hd": "1.65", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "270", + "walk:hd": "300", + "run:sd": "270", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "130", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\IceTrollShadowPriest\\IceTrollShadowPriest_portrait", + "portrait:hd": "Units\\creeps\\IceTrollShadowPriest\\IceTrollShadowPriest_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "65", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "160", + "addon": "Units" + }, + "nitp": { + "unitID": "nitp", + "sort": "n2", + "comment(s)": "ice troll shadow priest", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nitp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetrollshadowpriest", + "unitClass": "icetroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nitp", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 175, + "lumbercost": 10, + "goldRep": 175, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 120, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W,N,I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nitp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 20.5, + "maxdmg1": 24, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 11.3888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nitp", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh1", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceTrollShadowPriest.blp", + "skinType": "unit", + "abilSkinList": "Anh1", + "skinnableID": "nitp", + "file:hd": "Units\\creeps\\IceTrollPriest\\IceTrollPriest", + "file:sd": "units\\creeps\\IceTrollShadowPriest\\IceTrollShadowPriest", + "unitSound": "IceTrollShadowPriest", + "blend": "0.15", + "scale:hd": "1.85", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red:hd": "255", + "red:sd": "190", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "portrait:sd": "units\\creeps\\IceTrollShadowPriest\\IceTrollShadowPriest_portrait", + "portrait:hd": "Units\\creeps\\IceTrollPriest\\IceTrollPriest_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "25", + "projectileVisOffsetY:hd": "160", + "addon": "Units" + }, + "nitr": { + "unitID": "nitr", + "sort": "n2", + "comment(s)": "IceTroll", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nitr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetroll", + "unitClass": "icetroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nitr", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W,N,I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nitr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nitr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missileart:hd": "Abilities\\Weapons\\Axe_IceTroll\\Axe_IceTroll.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceTroll.blp", + "skinType": "unit", + "skinnableID": "nitr", + "file": "units\\creeps\\IceTroll\\IceTroll", + "unitSound": "IceTroll", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "190", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "120", + "addon": "Units" + }, + "nits": { + "unitID": "nits", + "sort": "n2", + "comment(s)": "ice troll berserker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nits", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetrollberserker", + "unitClass": "icetroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nits", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 245, + "lumbercost": 30, + "goldRep": 245, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 220, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W,N,I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nits", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 20.3125, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nits", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missileart:hd": "Abilities\\Weapons\\Axe_IceTroll\\Axe_IceTroll.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceTrollBeserker.blp", + "skinType": "unit", + "skinnableID": "nits", + "file:hd": "Units\\Creeps\\IceTrollBerserker\\IceTrollBerserker", + "file:sd": "units\\creeps\\IceTroll\\IceTroll", + "unitSound": "IceTroll", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "270", + "walk:hd": "300", + "run:sd": "270", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "130", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\IceTroll\\IceTroll_portrait", + "portrait:hd": "Units\\Creeps\\IceTrollBerserker\\IceTrollBerserker_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nitt": { + "unitID": "nitt", + "sort": "n2", + "comment(s)": "ice troll trapper", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nitt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetrolltrapper", + "unitClass": "icetroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nitt", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 20, + "goldRep": 200, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 60, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W,N,I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nitt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nitt", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missileart:hd": "Abilities\\Weapons\\Axe_IceTroll\\Axe_IceTroll.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIceTrollTrapper.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNICeTroll.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "nitt", + "file:hd": "Units\\Creeps\\IceTrollTrapper\\IceTrollTrapper", + "file:sd": "units\\creeps\\IceTroll\\IceTroll", + "unitSound": "IceTroll", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "170", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "portrait:sd": "units\\creeps\\IceTroll\\IceTroll_portrait", + "portrait:hd": "Units\\Creeps\\IceTrollTrapper\\IceTrollTrapper_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "nitw": { + "unitID": "nitw", + "sort": "n2", + "comment(s)": "ice troll warlord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nitw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetrollwarlord", + "unitClass": "icetroll", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nitw", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W,N,I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nitw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 39.5, + "maxdmg1": 43, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 24.6875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nitw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACat", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missileart:hd": "Abilities\\Weapons\\Axe_IceTroll\\Axe_IceTroll.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIceTrollWarlord.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNICeTroll.blp", + "skinType": "unit", + "abilSkinList": "ACat", + "skinnableID": "nitw", + "file:hd": "Units\\Creeps\\IceTrollWarlord\\IceTrollWarlord", + "file:sd": "units\\creeps\\IceTroll\\IceTroll", + "unitSound": "IceTroll", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "270", + "walk:hd": "320", + "run:sd": "270", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.55", + "legacyModelScale": "1.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\IceTroll\\IceTroll_portrait", + "portrait:hd": "Units\\Creeps\\IceTrollWarlord\\IceTrollWarlord_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "impactZ:hd": "100", + "projectileVisOffsetX:hd": "-25", + "projectileVisOffsetY:hd": "140", + "addon": "Units" + }, + "njg1": { + "unitID": "njg1", + "sort": "n2", + "comment(s)": "Jungle Stalker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "njg1", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "junglestalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "njg1", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "njg1", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "njg1", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Other\\GreenDeathExplosion\\GreenDeathExplosion.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNJungleBeast.blp", + "skinType": "unit", + "skinnableID": "njg1", + "file": "units\\creeps\\JungleBeast\\JungleBeast", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "njga": { + "unitID": "njga", + "sort": "n2", + "comment(s)": "Elder Jungle Stalker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "njga", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elderjunglestalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "njga", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 375, + "lumbercost": 0, + "goldRep": 375, + "lumberRep": 0, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "njga", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 38, + "maxdmg1": 40, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 28.1481481481481, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "njga", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Other\\GreenDeathExplosion\\GreenDeathExplosion.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElderJungleBeast.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNJungleBeast.blp", + "skinType": "unit", + "skinnableID": "njga", + "file:hd": "Units\\Creeps\\ElderJungleBeast\\ElderJungleBeast", + "file:sd": "units\\creeps\\JungleBeast\\JungleBeast", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "1.9", + "scale:sd": "1.45", + "legacyScale": "1.45", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\JungleBeast\\JungleBeast_portrait", + "portrait:hd": "Units\\Creeps\\ElderJungleBeast\\ElderJungleBeast_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "njgb": { + "unitID": "njgb", + "sort": "n2", + "comment(s)": "Enranged Jungle Stalker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "njgb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "enrangedjunglestalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "njgb", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1600, + "realHP": 1600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "njgb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 64.5, + "maxdmg1": 68, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 47.7777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "njgb", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACtc", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\Other\\GreenDeathExplosion\\GreenDeathExplosion.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEnragedJungleBeast.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNJungleBeast.blp", + "skinType": "unit", + "abilSkinList": "ACtc", + "skinnableID": "njgb", + "file:hd": "Units\\Creeps\\EnragedJungleBeast\\EnragedJungleBeast", + "file:sd": "units\\creeps\\JungleBeast\\JungleBeast", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.7", + "legacyScale": "1.7", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\JungleBeast\\JungleBeast_portrait", + "portrait:hd": "Units\\Creeps\\EnragedJungleBeast\\EnragedJungleBeast_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nkob": { + "unitID": "nkob", + "sort": "n2", + "comment(s)": "Kobold", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nkob", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kobold", + "unitClass": "kobold", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nkob", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 90, + "lumbercost": 0, + "goldRep": 90, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 60, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,Y,X,V,Q,G,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nkob", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nkob", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKobold.blp", + "skinType": "unit", + "skinnableID": "nkob", + "file": "units\\creeps\\Kobold\\Kobold", + "unitSound": "Kobold", + "blend": "0.15", + "scale:hd": "1.1", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.85", + "legacyModelScale": "0.85", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "165", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nkog": { + "unitID": "nkog", + "sort": "n2", + "comment(s)": "Kobold Geomancer", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nkog", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "koboldgeomancer", + "unitClass": "kobold", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nkog", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 30, + "goldRep": 215, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,Y,X,V,Q,G,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nkog", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nkog", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw,ACdm", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKoboldGeomancer.blp", + "skinType": "unit", + "abilSkinList": "ACsw,ACdm", + "skinnableID": "nkog", + "file": "units\\creeps\\KoboldGeomancer\\KoboldGeomancer", + "unitSound": "Kobold", + "blend": "0.15", + "scale:hd": "1.2", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "50", + "projectileVisOffsetX:hd": "-60", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nkol": { + "unitID": "nkol", + "sort": "n2", + "comment(s)": "kobold leader", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nkol", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "koboldtaskmaster", + "unitClass": "kobold", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nkol", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 650, + "realHP": 650, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,Y,X,V,Q,G,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nkol", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nkol", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACac,ACbh", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNKoboldTaskmaster.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNKobold.blp", + "skinType": "unit", + "abilSkinList": "ACac,ACbh", + "skinnableID": "nkol", + "file:hd": "Units\\Creeps\\KoboldTaskmaster\\KoboldTaskmaster", + "file:sd": "units\\creeps\\Kobold\\Kobold", + "unitSound": "Kobold", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Kobold\\Kobold_portrait", + "portrait:hd": "Units\\Creeps\\KoboldTaskmaster\\KoboldTaskmaster_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nkot": { + "unitID": "nkot", + "sort": "n2", + "comment(s)": "kobold tunneler", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nkot", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kobolttunneler", + "unitClass": "kobold", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nkot", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 150, + "lumbercost": 0, + "goldRep": 150, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 120, + "HP": 325, + "realHP": 325, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,Y,X,V,Q,G,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nkot", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nkot", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbh", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNKoboldTunneler.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNKobold.blp", + "skinType": "unit", + "abilSkinList": "ACbh", + "skinnableID": "nkot", + "file:hd": "Units\\Creeps\\KoboldTunneler\\KoboldTunneler", + "file:sd": "units\\creeps\\Kobold\\Kobold", + "unitSound": "Kobold", + "blend": "0.15", + "scale:hd": "1.1", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "180", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Kobold\\Kobold_portrait", + "portrait:hd": "Units\\Creeps\\KoboldTunneler\\KoboldTunneler_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nlds": { + "unitID": "nlds", + "sort": "n2", + "comment(s)": "makrura deep seer", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlds", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lobstrokkdeepseer", + "unitClass": "lobstrokk", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlds", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 500, + "lumbercost": 100, + "goldRep": 500, + "lumberRep": 100, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 480, + "realHP": 480, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nlds", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 18.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlds", + "sortAbil": "n2", + "auto": "_", + "abilList": "Aenw,Aslp", + "Buttonpos": "3,0", + "Missileart": "Abilities\\Weapons\\MakuraMissile\\MakuraMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkDeepseer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkGreen.blp", + "skinType": "unit", + "abilSkinList": "Aenw,Aslp", + "skinnableID": "nlds", + "file:hd": "Units\\Creeps\\MakruraDeepseer\\MakruraDeepseer", + "file:sd": "Units\\Creeps\\Lobstrokkblue\\Lobstrokkblue", + "unitSound": "Lobstrokk", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "250", + "green:hd": "255", + "green:sd": "250", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Lobstrokkblue\\Lobstrokkblue_portrait", + "portrait:hd": "Units\\Creeps\\MakruraDeepseer\\MakruraDeepseer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "-25", + "projectileVisOffsetY:hd": "70", + "addon": "Units" + }, + "nlkl": { + "unitID": "nlkl", + "sort": "n2", + "comment(s)": "makrura tidal lord", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlkl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lobstrokktidallord", + "unitClass": "lobstrokk", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlkl", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 800, + "realHP": 800, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nlkl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlkl", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACce,ACav", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkBlue.blp", + "skinType": "unit", + "abilSkinList": "ACce,ACav", + "skinnableID": "nlkl", + "file": "Units\\Creeps\\Lobstrokkgreen\\Lobstrokkgreen", + "unitSound": "Lobstrokk", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nlpd": { + "unitID": "nlpd", + "sort": "n2", + "comment(s)": "makrura pool dweller", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlpd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lobstrokkpooldweller", + "unitClass": "lobstrokk", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlpd", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 210, + "realHP": 210, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nlpd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 8, + "avgdmg1": 10.5, + "maxdmg1": 13, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 26, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlpd", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRedPooldweller.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "skinType": "unit", + "skinnableID": "nlpd", + "file:hd": "Units\\Creeps\\MakruraPooldweller\\MakruraPooldweller", + "file:sd": "Units\\Creeps\\Lobstrokkred\\Lobstrokkred", + "unitSound": "Lobstrokk", + "blend": "0.15", + "scale:hd": "1.85", + "scale:sd": "1.65", + "legacyScale": "1.65", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "0.6", + "legacyModelScale": "0.6", + "red:hd": "255", + "red:sd": "125", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "225", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Lobstrokkred\\Lobstrokkred_portrait", + "portrait:hd": "Units\\Creeps\\MakruraPooldweller\\MakruraPooldweller_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nlpr": { + "unitID": "nlpr", + "sort": "n2", + "comment(s)": "makrura prawn", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlpr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lobstrokkprawn", + "unitClass": "lobstrokk", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlpr", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 170, + "realHP": 170, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nlpr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlpr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "skinType": "unit", + "skinnableID": "nlpr", + "file": "Units\\Creeps\\Lobstrokkred\\Lobstrokkred", + "unitSound": "Lobstrokk", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "0.55", + "legacyModelScale": "0.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nlps": { + "unitID": "nlps", + "sort": "n2", + "comment(s)": "makrura prawn summoned", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlps", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lobstrokkprawnsummoned", + "unitClass": "lobstrokk", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlps", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 170, + "realHP": 170, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nlps", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlps", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "skinType": "unit", + "skinnableID": "nlps", + "file": "Units\\Creeps\\Lobstrokkred\\Lobstrokkred", + "unitSound": "Lobstrokk", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "0.55", + "legacyModelScale": "0.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nlrv": { + "unitID": "nlrv", + "sort": "n2", + "comment(s)": "deeplord revenant", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlrv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "deeplordrevenant", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlrv", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "undead", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 440, + "HP": 2100, + "realHP": 2100, + "regenHP": 0.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 300, + "regenMana": 1.5, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nlrv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 68, + "dmgUp1": "-", + "mindmg1": 69, + "avgdmg1": 73, + "maxdmg1": 77, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 37, + "DPS": 54.0740740740741, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlrv", + "sortAbil": "n2", + "auto": "AUfu", + "abilList": "ACcv,ACf2", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeepLordRevenant.blp", + "skinType": "unit", + "abilSkinList": "ACcv,ACf2", + "skinnableID": "nlrv", + "file:hd": "Units\\Creeps\\RevenantOfTheWaves\\RevenantOfTheWaves", + "file:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "2.7", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.75", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "175", + "blue:hd": "255", + "blue:sd": "175", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves_portrait", + "portrait:hd": "Units\\Creeps\\RevenantOfTheWaves\\RevenantOfTheWaves_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nlsn": { + "unitID": "nlsn", + "sort": "n2", + "comment(s)": "makrura snapper", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlsn", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lobstrokksnapper", + "unitClass": "lobstrokk", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlsn", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 315, + "lumbercost": 0, + "goldRep": 315, + "lumberRep": 0, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 260, + "HP": 620, + "realHP": 620, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nlsn", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 26, + "avgdmg1": 28, + "maxdmg1": 30, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 20.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlsn", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRedSnapper.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "skinType": "unit", + "skinnableID": "nlsn", + "file:hd": "Units\\Creeps\\MakruraSnapper\\MakruraSnapper", + "file:sd": "Units\\Creeps\\Lobstrokkred\\Lobstrokkred", + "unitSound": "Lobstrokk", + "blend": "0.15", + "scale:hd": "2.5", + "scale:sd": "1.9", + "legacyScale": "1.9", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "125", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Lobstrokkred\\Lobstrokkred_portrait", + "portrait:hd": "Units\\Creeps\\MakruraSnapper\\MakruraSnapper_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nltc": { + "unitID": "nltc", + "sort": "n2", + "comment(s)": "makrura tide caller", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nltc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lobstrokktidecaller", + "unitClass": "lobstrokk", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nltc", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nltc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nltc", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh1,ACf2", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\MakuraMissile\\MakuraMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkGreen.blp", + "skinType": "unit", + "abilSkinList": "Anh1,ACf2", + "skinnableID": "nltc", + "file": "Units\\Creeps\\Lobstrokkblue\\Lobstrokkblue", + "unitSound": "Lobstrokk", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.57", + "legacyModelScale": "0.57", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "-25", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "nltl": { + "unitID": "nltl", + "sort": "n2", + "comment(s)": "lightning lizard", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nltl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lightninglizard", + "unitClass": "lightninglizard", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nltl", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 195, + "lumbercost": 10, + "goldRep": 195, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B,A,C,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nltl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 14, + "dmgUp1": "-", + "mindmg1": 15, + "avgdmg1": 15.5, + "maxdmg1": 16, + "dmgpt1": 0.5, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nltl", + "sortAbil": "n2", + "auto": "_", + "abilList": "Alit,ACpu", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLightningLizard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNThunderLizard.blp", + "skinType": "unit", + "abilSkinList": "Alit,ACpu", + "skinnableID": "nltl", + "file:hd": "Units\\Creeps\\LightningLizard\\LightningLizard", + "file:sd": "units\\creeps\\ThunderLizard\\ThunderLizard", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "81", + "run:sd": "240", + "run:hd": "296", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "0.85", + "legacyModelScale": "0.85", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "portrait:sd": "units\\creeps\\ThunderLizard\\ThunderLizard_portrait", + "portrait:hd": "Units\\Creeps\\LightningLizard\\LightningLizard_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "launchZ:hd": "6", + "impactZ:hd": "40", + "projectileVisOffsetY:hd": "55", + "addon": "Units" + }, + "nlur": { + "unitID": "nlur", + "sort": "n2", + "comment(s)": "Monster Lure ward", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ward", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nlur", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "monsterlure", + "special": "1", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nlur", + "sortBalance": "n2", + "sort2": "zz", + "level": "-", + "type": "Ward", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 0, + "stockStart": 0, + "HP": 200, + "realHP": 200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1600, + "nsight": 1600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nlur", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nlur", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsterLure.blp", + "skinType": "unit", + "skinnableID": "nlur", + "file": "Units\\Creeps\\MonsterLure\\MonsterLure", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "25", + "shadowY": "25", + "portrait:sd": "Units\\Creeps\\MonsterLure\\MonsterLure", + "portrait:hd": "Units\\Creeps\\MonsterLure\\MonsterLure_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmam": { + "unitID": "nmam", + "sort": "n2", + "comment(s)": "Mammoth", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmam", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mammoth", + "unitClass": "mammoth", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmam", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nmam", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 15, + "maxdmg1": 16, + "dmgpt1": 0.5, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 11.1111111111111, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmam", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMammoth.blp", + "skinType": "unit", + "skinnableID": "nmam", + "file": "Units\\Creeps\\Mammoth\\Mammoth", + "unitSound": "Mammoth", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "0.85", + "legacyModelScale": "0.85", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmbg": { + "unitID": "nmbg", + "sort": "n2", + "comment(s)": "mur'gul blood-gill", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmbg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulbloodgill", + "unitClass": "murgul", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmbg", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 195, + "lumbercost": 10, + "goldRep": 195, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 120, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmbg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmbg", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "Anh1", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\MurgulMagicMissile\\MurgulMagicMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgulBloodGill.blp", + "skinType": "unit", + "abilSkinList": "Anh1", + "skinnableID": "nmbg", + "file": "Units\\Creeps\\MurgulBloodGill\\MurgulBloodGill", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "35", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "nmcf": { + "unitID": "nmcf", + "sort": "n2", + "comment(s)": "mur'gul cliffrunner", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmcf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulcliffrunner", + "unitClass": "murgul", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmcf", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmcf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmcf", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurgulCliffrunner.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "skinType": "unit", + "skinnableID": "nmcf", + "file:hd": "Units\\Creeps\\MurgulCliffrunner\\MurgulCliffrunner", + "file:sd": "Units\\Creeps\\MurgulTideWarrior\\MurgulTideWarrior", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "0.8", + "legacyScale": "0.8", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "128", + "unitShadow": "Shadow", + "shadowW": "90", + "shadowH": "90", + "shadowX": "35", + "shadowY": "35", + "portrait:sd": "Units\\Creeps\\MurgulTideWarrior\\MurgulTideWarrior_portrait", + "portrait:hd": "Units\\Creeps\\MurgulCliffrunner\\MurgulCliffrunner_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmdr": { + "unitID": "nmdr", + "sort": "n2", + "comment(s)": "Dire Mammoth", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmdr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "diremammoth", + "unitClass": "mammoth", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmdr", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1550, + "realHP": 1550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nmdr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 65, + "maxdmg1": 69, + "dmgpt1": 0.5, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 37, + "DPS": 48.1481481481481, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmdr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlackMammoth.blp", + "skinType": "unit", + "skinnableID": "nmdr", + "file": "Units\\Creeps\\MammothBlack\\MammothBlack", + "unitSound": "Mammoth", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmfs": { + "unitID": "nmfs", + "sort": "n2", + "comment(s)": "murloc flesheater", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmfs", + "sortUI": "n2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "murlocflesheater", + "unitClass": "murloc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmfs", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 140, + "lumbercost": 0, + "goldRep": 140, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 120, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmfs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.45, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 13.5, + "maxdmg1": 14, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 11, + "DPS": 10, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmfs", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACcn", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurlocFlesheater.blp", + "skinType": "unit", + "abilSkinList": "ACcn", + "skinnableID": "nmfs", + "file": "units\\creeps\\MurlocFlesheater\\MurlocFlesheater", + "unitSound": "Murloc", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.55", + "legacyModelScale": "1.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmgd": { + "unitID": "nmgd", + "sort": "n2", + "comment(s)": "magnataur destroyer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmgd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "magnataurdestroyer", + "unitClass": "magnataur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmgd", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 440, + "HP": 2100, + "realHP": 2100, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 64, + "stockInitial": 1, + "unitWeaponID": "nmgd", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.66, + "castbsw": 0.84, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 75, + "dmgUp1": "-", + "mindmg1": 76, + "avgdmg1": 80.5, + "maxdmg1": 85, + "dmgpt1": 0.66, + "backSw1": 0.84, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 40, + "DPS": 53.6666666666667, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.35, + "mincool2": 1.5, + "dice2": 1, + "sides2": 8, + "dmgplus2": 60, + "dmgUp2": "-", + "mindmg2": 61, + "avgdmg2": 64.5, + "maxdmg2": 68, + "dmgpt2": 0.66, + "backSw2": 0.84, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmgd", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACcb,ACtc", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "1000", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlueMagnataur.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACcb,ACtc", + "skinnableID": "nmgd", + "file": "Units\\Creeps\\MagnataurBlue\\MagnataurBlue", + "unitSound": "Magnataur", + "blend": "0.15", + "scale:hd": "3.25", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "200", + "run:hd": "554", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.7", + "modelScale:sd": "1.45", + "legacyModelScale": "1.45", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "150", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "360", + "launchZ:hd": "200", + "projectileVisOffsetX:hd": "-105", + "projectileVisOffsetY:hd": "90", + "addon": "Units" + }, + "nmgr": { + "unitID": "nmgr", + "sort": "n2", + "comment(s)": "magnataur reaver", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmgr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "magnataurreaver", + "unitClass": "magnataur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmgr", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 0.5, + "regenType": "always", + "manaN": 350, + "realM": 350, + "mana0": 350, + "regenMana": 0.875, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nmgr", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.66, + "castbsw": 0.84, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 53, + "dmgUp1": "-", + "mindmg1": 54, + "avgdmg1": 57.5, + "maxdmg1": 61, + "dmgpt1": 0.66, + "backSw1": 0.84, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 38.3333333333333, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.35, + "mincool2": 1.5, + "dice2": 1, + "sides2": 5, + "dmgplus2": 40, + "dmgUp2": "-", + "mindmg2": 41, + "avgdmg2": 43, + "maxdmg2": 45, + "dmgpt2": 0.66, + "backSw2": 0.84, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmgr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACcb", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "1000", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMagnataurBrown.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACcb", + "skinnableID": "nmgr", + "file": "Units\\Creeps\\Magnataur\\Magnataur", + "unitSound": "Magnataur", + "blend": "0.15", + "scale:hd": "3.75", + "scale:sd": "2.75", + "legacyScale": "2.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "200", + "run:hd": "554", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1.325", + "legacyModelScale": "1.325", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "140", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "300", + "launchZ:hd": "200", + "projectileVisOffsetX:hd": "-80", + "addon": "Units" + }, + "nmgw": { + "unitID": "nmgw", + "sort": "n2", + "comment(s)": "magnataur warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmgw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "magnataurwarrior", + "unitClass": "magnataur", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmgw", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 340, + "lumbercost": 15, + "goldRep": 340, + "lumberRep": 15, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nmgw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.66, + "castbsw": 0.84, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 28.5, + "maxdmg1": 30, + "dmgpt1": 0.66, + "backSw1": 0.84, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 19, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmgw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMagnataur.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "nmgw", + "file": "Units\\Creeps\\MagnataurBrown\\MagnataurBrown", + "unitSound": "Magnataur", + "blend": "0.15", + "scale:hd": "2.5", + "scale:sd": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "200", + "run:hd": "554", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.125", + "legacyModelScale": "1.125", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmit": { + "unitID": "nmit", + "sort": "n2", + "comment(s)": "Icetusk Mammoth", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmit", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetuskmammoth", + "unitClass": "mammoth", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmit", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 925, + "realHP": 925, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nmit", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.5, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmit", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIcetuskMammoth.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMammoth.blp", + "skinType": "unit", + "skinnableID": "nmit", + "file:hd": "Units\\Creeps\\MammothIcetusk\\MammothIcetusk", + "file:sd": "Units\\Creeps\\Mammoth\\Mammoth", + "unitSound": "Mammoth", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "2.1", + "legacyScale": "2.1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "165", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Mammoth\\Mammoth_portrait", + "portrait:hd": "Units\\Creeps\\MammothIcetusk\\MammothIcetusk_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmmu": { + "unitID": "nmmu", + "sort": "n2", + "comment(s)": "murloc mutant", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmmu", + "sortUI": "n2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "murlocmutant", + "unitClass": "murloc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmmu", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmmu", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.45, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 27, + "maxdmg1": 29, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 22, + "DPS": 20, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmmu", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACcr", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurlocMutant.blp", + "skinType": "unit", + "abilSkinList": "ACcr", + "skinnableID": "nmmu", + "file": "units\\creeps\\MurlocMutant\\MurlocMutant", + "unitSound": "Murloc", + "blend": "0.15", + "scale:hd": "1.95", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "2", + "legacyModelScale": "2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmpg": { + "unitID": "nmpg", + "sort": "n2", + "comment(s)": "murloc plaguebearer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmpg", + "sortUI": "n2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "murlocplaguebearer", + "unitClass": "murloc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmpg", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 180, + "realHP": 180, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmpg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmpg", + "sortAbil": "n2", + "auto": "_", + "abilList": "Aap3", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurlocPlaguebearer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurlocMutant.blp", + "skinType": "unit", + "abilSkinList": "Aap3", + "skinnableID": "nmpg", + "file:hd": "Units\\creeps\\MurlocPlaguebearer\\MurlocPlaguebearer", + "file:sd": "units\\creeps\\MurlocMutant\\MurlocMutant", + "unitSound": "Murloc", + "blend": "0.15", + "scale:hd": "1.1", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\MurlocMutant\\MurlocMutant_portrait", + "portrait:hd": "Units\\creeps\\MurlocPlaguebearer\\MurlocPlaguebearer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmrl": { + "unitID": "nmrl", + "sort": "n2", + "comment(s)": "murloc fisherman", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmrl", + "sortUI": "n2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "murloctiderunner", + "unitClass": "murloc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmrl", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,B,N,A,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmrl", + "sortWeap": "p3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 9.5, + "maxdmg1": 10, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.03703703703704, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrl", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurloc.blp", + "skinType": "unit", + "skinnableID": "nmrl", + "file": "units\\creeps\\Murloc\\Murloc", + "unitSound": "Murloc", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "50", + "addon": "Units" + }, + "nmrm": { + "unitID": "nmrm", + "sort": "n2", + "comment(s)": "murloc nightcrawler", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmrm", + "sortUI": "n2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "murlocnightcrawler", + "unitClass": "murloc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmrm", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,B,N,A,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmrm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrm", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACvs,Ashm", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurlocNightCrawler.blp", + "skinType": "unit", + "abilSkinList": "ACvs,Ashm", + "skinnableID": "nmrm", + "file": "units\\creeps\\MurlocNightcrawler\\MurlocNightcrawler", + "unitSound": "Murloc", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmrr": { + "unitID": "nmrr", + "sort": "n2", + "comment(s)": "murloc huntsman", + "race": "creeps", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmrr", + "sortUI": "n2", + "fileVerFlags": "2", + "tilesetSpecific": "0", + "name": "murlochuntsman", + "unitClass": "murloc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmrr", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 110, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,B,N,A,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmrr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.45, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 5, + "dmgUp1": "-", + "mindmg1": 6, + "avgdmg1": 8, + "maxdmg1": 10, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 5.92592592592593, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurlocHuntsman.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurloc.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "nmrr", + "file": "units\\creeps\\MurlocWarrior\\MurlocWarrior", + "unitSound": "Murloc", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmrv": { + "unitID": "nmrv", + "sort": "n2", + "comment(s)": "mur'gul reaver", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmrv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulreaver", + "unitClass": "murgul", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmrv", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 1000, + "realHP": 1000, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmrv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.45, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrv", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACac", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurgulMarauder.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurgulBloodGill.blp", + "skinType": "unit", + "abilSkinList": "ACac", + "skinnableID": "nmrv", + "file:hd": "Units\\Creeps\\MurgulMarauder\\MurgulMarauder", + "file:sd": "Units\\Creeps\\MurgulReaver\\MurgulReaver", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "2.05", + "scale:sd": "1.45", + "legacyScale": "1.45", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "Units\\Creeps\\MurgulReaver\\MurgulReaver_portrait", + "portrait:hd": "Units\\Creeps\\MurgulMarauder\\MurgulMarauder_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmsc": { + "unitID": "nmsc", + "sort": "n2", + "comment(s)": "mur'gul shadowcaster", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmsc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulshadowcaster", + "unitClass": "murgul", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmsc", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 1000, + "realHP": 1000, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmsc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 35, + "maxdmg1": 39, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 19.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmsc", + "sortAbil": "n2", + "auto": "Acrs", + "abilList": "AChx,ACcs", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\MurgulMagicMissile\\MurgulMagicMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgulShadowCaster.blp", + "skinType": "unit", + "abilSkinList": "AChx,ACcs", + "skinnableID": "nmsc", + "file": "Units\\Creeps\\MurgulShadowCaster\\MurgulShadowCaster", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1.55", + "legacyModelScale": "1.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "25", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nmsn": { + "unitID": "nmsn", + "sort": "n2", + "comment(s)": "mur'gul snarecaster", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmsn", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulsnarecaster", + "unitClass": "murgul", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmsn", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 265, + "lumbercost": 30, + "goldRep": 265, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmsn", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 31.5, + "maxdmg1": 36, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 17.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmsn", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw,ACdm", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\MurgulMagicMissile\\MurgulMagicMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurgulSnareCaster.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurgulShadowCaster.blp", + "skinType": "unit", + "abilSkinList": "ACsw,ACdm", + "skinnableID": "nmsn", + "file:hd": "Units\\Creeps\\MurgulSnarecaster\\MurgulSnarecaster", + "file:sd": "Units\\Creeps\\MurgulShadowCaster\\MurgulShadowCaster", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "1.65", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "192", + "green:hd": "255", + "green:sd": "192", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\MurgulShadowCaster\\MurgulShadowCaster_portrait", + "portrait:hd": "Units\\Creeps\\MurgulSnarecaster\\MurgulSnarecaster_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nmtw": { + "unitID": "nmtw", + "sort": "n2", + "comment(s)": "mur'gul tidewarrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmtw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgultidewarrior", + "unitClass": "murgul", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmtw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nmtw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmtw", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "skinType": "unit", + "skinnableID": "nmtw", + "file": "Units\\Creeps\\MurgulTideWarrior\\MurgulTideWarrior", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmyr": { + "unitID": "nmyr", + "sort": "n2", + "comment(s)": "naga myrmidon", + "race": "naga", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmyr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nagamyrmidon", + "unitClass": "naga", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmyr", + "sortBalance": "n2", + "sort2": "zzn", + "level": 4, + "type": "_", + "goldcost": 225, + "lumbercost": 55, + "goldRep": 225, + "lumberRep": 55, + "fmade": " - ", + "fused": 4, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 210, + "stockStart": 0, + "HP": 1080, + "realHP": 1080, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat,Rnsb,Rnen", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nmyr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.9, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 32, + "dmgUp1": "-", + "mindmg1": 33, + "avgdmg1": 36, + "maxdmg1": 39, + "dmgpt1": 0.36, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 18.9473684210526, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmyr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANen,Asb1", + "DependencyOr": "nmys", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaMyrmidon.blp", + "skinType": "unit", + "abilSkinList": "ANen,Asb1", + "skinnableID": "nmyr", + "file": "units\\naga\\NagaMyrmidon\\NagaMyrmidon", + "unitSound": "NagaMyrmidon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmys": { + "unitID": "nmys", + "sort": "n2", + "comment(s)": "naga myrmidon submerged", + "race": "naga", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmys", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nagamyrmidonmorph", + "unitClass": "naga", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "1", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmys", + "sortBalance": "n2", + "sort2": "zzn", + "level": 4, + "type": "_", + "goldcost": 225, + "lumbercost": 55, + "goldRep": 225, + "lumberRep": 55, + "fmade": " - ", + "fused": 4, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 210, + "stockStart": 0, + "HP": 1080, + "realHP": 1080, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat,Rnsb,Rnen", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nmys", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmys", + "sortAbil": "n2", + "auto": "_", + "abilList": "Asb1", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaMyrmidon.blp", + "skinType": "unit", + "abilSkinList": "Asb1", + "skinnableID": "nmys", + "file": "units\\naga\\NagaMyrmidon\\NagaMyrmidon", + "unitSound": "NagaMyrmidon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "220", + "run": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nndk": { + "unitID": "nndk", + "sort": "n2", + "comment(s)": "nether drake", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.13, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nndk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "netherdrake", + "unitClass": "dragonf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nndk", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nndk", + "sortWeap": "z3", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 39.5, + "maxdmg1": 45, + "dmgpt1": 0.4, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 48, + "DPS": 21.9444444444444, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 48, + "dmgUp2": "-", + "mindmg2": 49, + "avgdmg2": 52.5, + "maxdmg2": 56, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nndk", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\AvengerMissile\\AvengerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNetherDrake.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNetherDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nndk", + "file:hd": "Units\\creeps\\NetherDrake\\NetherDrake", + "file:sd": "units\\creeps\\NetherDragon\\NetherDragon", + "unitSound": "NetherDragon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\creeps\\NetherDragon\\NetherDragon_portrait", + "portrait:hd": "Units\\creeps\\NetherDrake\\NetherDrake_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "5", + "launchZ:hd": "35", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "-30", + "addon": "Units" + }, + "nndr": { + "unitID": "nndr", + "sort": "n2", + "comment(s)": "nether dragon", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.13, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nndr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "netherdragon", + "unitClass": "dragonf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nndr", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 920, + "HP": 2200, + "realHP": 2200, + "regenHP": 2, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nndr", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 64.5, + "maxdmg1": 81, + "dmgpt1": 0.4, + "backSw1": 0.5, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 43, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "msplash", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 9, + "dmgplus2": 67, + "dmgUp2": "-", + "mindmg2": 70, + "avgdmg2": 82, + "maxdmg2": 94, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nndr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACcr", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\AvengerMissile\\AvengerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNetherDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "ACmi,ACcr", + "skinnableID": "nndr", + "file": "units\\creeps\\NetherDragon\\NetherDragon", + "unitSound": "NetherDragon", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.35", + "legacyModelScale": "1.35", + "red:hd": "255", + "red:sd": "60", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "0", + "unitShadow": "ShadowFlyer", + "shadowW": "300", + "shadowH": "300", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "5", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "20", + "projectileVisOffsetY:hd": "-35", + "addon": "Units" + }, + "nnht": { + "unitID": "nnht", + "sort": "n2", + "comment(s)": "nether hatchling", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.13, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnht", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "netherdragonhatchling", + "unitClass": "dragonf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnht", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nnht", + "sortWeap": "n1", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.4, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 4, + "dmgplus2": 24, + "dmgUp2": "-", + "mindmg2": 25, + "avgdmg2": 26.5, + "maxdmg2": 28, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnht", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\AvengerMissile\\AvengerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNetherDragonWhelp.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNetherDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nnht", + "file:hd": "Units\\creeps\\NetherDragonHatchling\\NetherDragonHatchling", + "file:sd": "units\\creeps\\NetherDragon\\NetherDragon", + "unitSound": "NetherDragon", + "blend": "0.15", + "scale": "1.65", + "legacyScale": "1.65", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "0.65", + "legacyModelScale": "0.65", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "50", + "blue:hd": "255", + "blue:sd": "50", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\NetherDragon\\NetherDragon_portrait", + "portrait:hd": "Units\\creeps\\NetherDragonHatchling\\NetherDragonHatchling_portrait", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "30", + "launchZ:hd": "50", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "65", + "addon": "Units" + }, + "nnmg": { + "unitID": "nnmg", + "sort": "n2", + "comment(s)": "naga mur'gul", + "race": "naga", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnmg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nagamurgul", + "unitClass": "naga", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nnmg", + "sortBalance": "n2", + "sort2": "zzn", + "level": 2, + "type": "_", + "goldcost": 120, + "lumbercost": 0, + "goldRep": 120, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nnmg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.7, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 12.1875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnmg", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurgulReaver.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "skinType": "unit", + "skinnableID": "nnmg", + "file": "Units\\Creeps\\MurgulReaver\\MurgulReaver", + "unitSound": "murloc", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.7", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "0", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "addon": "Units" + }, + "nnrg": { + "unitID": "nnrg", + "sort": "n2", + "comment(s)": "naga royal guard", + "race": "naga", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnrg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nagaroyalguard", + "unitClass": "naga", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nnrg", + "sortBalance": "n2", + "sort2": "zzn", + "level": 6, + "type": "_", + "goldcost": 300, + "lumbercost": 100, + "goldRep": 300, + "lumberRep": 100, + "fmade": " - ", + "fused": 4, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 310, + "stockStart": 0, + "HP": 1350, + "realHP": 1350, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1600, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat,Rnsb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nnrg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.7, + "mincool1": "-", + "dice1": 2, + "sides1": 7, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 47, + "avgdmg1": 53, + "maxdmg1": 59, + "dmgpt1": 0.36, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 25, + "DPS": 31.1764705882353, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnrg", + "sortAbil": "n2", + "auto": "_", + "abilList": "Asb2,ACcv,ACcb,ACwe,ACsk", + "DependencyOr": "nnrs", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaMyrmidonRoyalGuard.blp", + "skinType": "unit", + "abilSkinList": "Asb2,ACcv,ACcb,ACwe,ACsk", + "skinnableID": "nnrg", + "file": "units\\naga\\NagaRoyalGuard\\NagaRoyalGuard", + "unitSound": "NagaRoyalGuard", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "320", + "run:sd": "220", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "impactZ:hd": "120", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "120", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nnrs": { + "unitID": "nnrs", + "sort": "n2", + "comment(s)": "naga royal guard submerged", + "race": "naga", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnrs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nagaroyalguardmorph", + "unitClass": "naga", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "1", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nnrs", + "sortBalance": "n2", + "sort2": "zzn", + "level": 6, + "type": "_", + "goldcost": 300, + "lumbercost": 100, + "goldRep": 300, + "lumberRep": 100, + "fmade": " - ", + "fused": 4, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 310, + "stockStart": 0, + "HP": 1350, + "realHP": 1350, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1600, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat,Rnsb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nnrs", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnrs", + "sortAbil": "n2", + "auto": "_", + "abilList": "Asb2", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaMyrmidonRoyalGuard.blp", + "skinType": "unit", + "abilSkinList": "Asb2", + "skinnableID": "nnrs", + "file": "units\\naga\\NagaRoyalGuard\\NagaRoyalGuard", + "unitSound": "NagaRoyalGuard", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "220", + "run": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nnsu": { + "unitID": "nnsu", + "sort": "n2", + "comment(s)": "naga summoner", + "race": "naga", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnsu", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "summoner", + "unitClass": "naga", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nnsu", + "sortBalance": "n2", + "sort2": "zzn", + "level": 2, + "type": "_", + "goldcost": 130, + "lumbercost": 20, + "goldRep": 130, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 110, + "stockStart": 60, + "HP": 350, + "realHP": 350, + "regenHP": 1, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rnsw,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nnsu", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 10.5, + "maxdmg1": 12, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 6, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnsu", + "sortAbil": "n2", + "auto": "ANpa", + "abilList": "Acny,ACfu,ANpa,Ahnl", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-siren.blp", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaSummoner.blp", + "skinType": "unit", + "abilSkinList": "Acny,ACfu,ANpa,Ahnl", + "skinnableID": "nnsu", + "file:hd": "Units\\Naga\\NagaSummoner\\NagaSummoner", + "file:sd": "Units\\Naga\\NagaSummoner\\NagaSummoner", + "unitSound": "NagaSiren", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nnsw": { + "unitID": "nnsw", + "sort": "n2", + "comment(s)": "naga siren", + "race": "naga", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnsw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "siren", + "unitClass": "naga", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nnsw", + "sortBalance": "n2", + "sort2": "zzn", + "level": 2, + "type": "_", + "goldcost": 130, + "lumbercost": 20, + "goldRep": 130, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 110, + "stockStart": 60, + "HP": 350, + "realHP": 350, + "regenHP": 1, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rnsw,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nnsw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.7, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 10.5, + "maxdmg1": 12, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 6, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnsw", + "sortAbil": "n2", + "auto": "ANpa", + "abilList": "Acny,ACfu,ANpa", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-siren.blp", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaWitch.blp", + "skinType": "unit", + "abilSkinList": "Acny,ACfu,ANpa", + "skinnableID": "nnsw", + "file": "Units\\Naga\\NagaSiren\\NagaSiren", + "unitSound": "NagaSiren", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "10", + "showUI1": "1", + "showUI2": "1", + "launchZ": "85", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "50", + "projectileVisOffsetY:hd": "-200", + "addon": "Units" + }, + "nnwa": { + "unitID": "nnwa", + "sort": "n2", + "comment(s)": "nerubian warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nnwa", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nerubianwarrior", + "unitClass": "nerubian", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnwa", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 205, + "lumbercost": 0, + "goldRep": 205, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 120, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nnwa", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnwa", + "sortAbil": "n2", + "auto": "_", + "abilList": "Assp", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNerubianWarrior.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNerubian.blp", + "skinType": "unit", + "abilSkinList": "Assp", + "skinnableID": "nnwa", + "file:hd": "Units\\Creeps\\NerubianWarrior\\NerubianWarrior", + "file:sd": "units\\creeps\\Nerubian\\Nerubian", + "unitSound": "Nerubian", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\Nerubian\\Nerubian_portrait", + "portrait:hd": "Units\\Creeps\\NerubianWarrior\\NerubianWarrior_portrait", + "impactSwimZ": "0", + "impactZ": "160", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "80", + "launchZ:hd": "100", + "addon": "Units" + }, + "nnwl": { + "unitID": "nnwl", + "sort": "n2", + "comment(s)": "nerubian webspinner", + "race": "creeps", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nnwl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nerubianwebspinner", + "unitClass": "nerubian", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnwl", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 35, + "goldRep": 200, + "lumberRep": 35, + "fmade": " - ", + "fused": 3, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 220, + "HP": 350, + "realHP": 350, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nnwl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.64, + "backSw1": 0.36, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnwl", + "sortAbil": "n2", + "auto": "Aweb", + "abilList": "ACwb,ACrd,Aspa", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\CryptFiendMissile\\CryptFiendMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNerubianWebspinner.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNerubianQueen.blp", + "skinType": "unit", + "abilSkinList": "ACwb,ACrd,Aspa", + "skinnableID": "nnwl", + "file:hd": "Units\\Creeps\\NerubianWebspinner\\NerubianWebspinner", + "file:sd": "units\\creeps\\NerubianSpiderLord\\NerubianSpiderLord", + "unitSound": "Nerubian", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "130", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\NerubianSpiderLord\\NerubianSpiderLord_portrait", + "portrait:hd": "Units\\Creeps\\NerubianWebspinner\\NerubianWebspinner_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nnwq": { + "unitID": "nnwq", + "sort": "n2", + "comment(s)": "nerubian queen", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nnwq", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nerubianqueen", + "unitClass": "nerubian", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnwq", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nnwq", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 35.5, + "maxdmg1": 40, + "dmgpt1": 0.64, + "backSw1": 0.36, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 22.1875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnwq", + "sortAbil": "n2", + "auto": "Arai", + "abilList": "ACua,ACca,ACrd,Aspa", + "Missileart": "Abilities\\Weapons\\CryptFiendMissile\\CryptFiendMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNerubianQueen.blp", + "skinType": "unit", + "abilSkinList": "ACua,ACca,ACrd,Aspa", + "skinnableID": "nnwq", + "file": "units\\creeps\\NerubianQueen\\NerubianQueen", + "unitSound": "Nerubian", + "blend": "0.15", + "scale:hd": "2.6", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nnwr": { + "unitID": "nnwr", + "sort": "n2", + "comment(s)": "nerubian seer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nnwr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nerubianseer", + "unitClass": "nerubian", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnwr", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nnwr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 29, + "dmgUp1": "-", + "mindmg1": 30, + "avgdmg1": 33, + "maxdmg1": 36, + "dmgpt1": 0.64, + "backSw1": 0.36, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 20.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnwr", + "sortAbil": "n2", + "auto": "Arai", + "abilList": "ACrd,ACdm,Aspa", + "Missileart": "Abilities\\Weapons\\CryptFiendMissile\\CryptFiendMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNerubianSeer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNnerubianSpiderLord.blp", + "skinType": "unit", + "abilSkinList": "ACrd,ACdm,Aspa", + "skinnableID": "nnwr", + "file:hd": "Units\\Creeps\\NerubianSeer\\NerubianSeer", + "file:sd": "units\\creeps\\NerubianQueen\\NerubianQueen", + "unitSound": "Nerubian", + "blend": "0.15", + "scale:hd": "2.4", + "scale:sd": "1.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "160", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\NerubianQueen\\NerubianQueen_portrait", + "portrait:hd": "Units\\Creeps\\NerubianSeer\\NerubianSeer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nnws": { + "unitID": "nnws", + "sort": "n2", + "comment(s)": "nerubian spider lord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nnws", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nerubianspiderlord", + "unitClass": "nerubian", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnws", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nnws", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnws", + "sortAbil": "n2", + "auto": "_", + "abilList": "Assp", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNnerubianSpiderLord.blp", + "skinType": "unit", + "abilSkinList": "Assp", + "skinnableID": "nnws", + "file": "units\\creeps\\NerubianSpiderLord\\NerubianSpiderLord", + "unitSound": "Nerubian", + "blend": "0.15", + "scale:hd": "2.4", + "scale:sd": "1.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.55", + "legacyModelScale": "1.55", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "155", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "noga": { + "unitID": "noga", + "sort": "n2", + "comment(s)": "Stonemaul Warchief", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "noga", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stonemaulwarchief", + "unitClass": "ogre", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "noga", + "sortBalance": "n2", + "sort2": "zz", + "level": 11, + "type": "_", + "goldcost": 750, + "lumbercost": 150, + "goldRep": 750, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 9, + "bountysides": 3, + "bountyplus": 180, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 560, + "stockStart": 440, + "HP": 3300, + "realHP": 3300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 64, + "stockInitial": 1, + "unitWeaponID": "noga", + "sortWeap": "p3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 2, + "sides1": 10, + "dmgplus1": 94, + "dmgUp1": "-", + "mindmg1": 96, + "avgdmg1": 105, + "maxdmg1": 114, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 77.7777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "noga", + "sortAbil": "n2", + "auto": "_", + "abilList": "SCae,ANta,ACbh", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArmoredOge.blp", + "skinType": "unit", + "abilSkinList": "SCae,ANta,ACbh", + "skinnableID": "noga", + "file": "units\\creeps\\OgreOneHeadedArmored\\OgreOneHeadedArmored", + "unitSound": "Stonemaul", + "blend": "0.15", + "scale:hd": "2.3", + "scale:sd": "2.2", + "legacyScale": "2.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "320", + "run:sd": "210", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "2.1", + "legacyModelScale": "2.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "235", + "blue:hd": "255", + "blue:sd": "215", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nogl": { + "unitID": "nogl", + "sort": "n2", + "comment(s)": "ogre lord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nogl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ogrelord", + "unitClass": "ogre", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nogl", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nogl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nogl", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACav,ACsh", + "Attachmentanimprops": "medium", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOgreLord.blp", + "skinType": "unit", + "abilSkinList": "ACav,ACsh", + "skinnableID": "nogl", + "file:hd": "Units\\Creeps\\OgreLord\\OgreLord", + "file:sd": "units\\creeps\\OgreLord\\OgreLord", + "unitSound": "Ogre", + "blend": "0.15", + "scale:hd": "2.15", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "320", + "run:sd": "210", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.7", + "legacyModelScale": "1.7", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\OgreLord\\OgreLord_portrait", + "portrait:hd": "Units\\Creeps\\OgreLord\\OgreLord_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nogm": { + "unitID": "nogm", + "sort": "n2", + "comment(s)": "ogre mauler", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nogm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ogre2", + "unitClass": "ogre", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nogm", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 300, + "lumbercost": 0, + "goldRep": 300, + "lumberRep": 0, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 850, + "realHP": 850, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nogm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.527, + "castbsw": 0.673, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nogm", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOgreMauler.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNOgre.blp", + "skinType": "unit", + "skinnableID": "nogm", + "file:hd": "Units\\Creeps\\OgreMauler\\OgreMauler", + "file:sd": "units\\creeps\\Ogre\\Ogre", + "unitSound": "Ogre", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "160", + "blue:hd": "255", + "blue:sd": "160", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\Ogre\\Ogre_portrait", + "portrait:hd": "Units\\Creeps\\OgreMauler\\OgreMauler_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nogn": { + "unitID": "nogn", + "sort": "n2", + "comment(s)": "Stonemaul Magi", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nogn", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stonemaulmagi", + "unitClass": "ogre", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nogn", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 450, + "lumbercost": 40, + "goldRep": 450, + "lumberRep": 40, + "fmade": " - ", + "fused": 5, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 1060, + "realHP": 1060, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nogn", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nogn", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACro", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOneHeadedOgreMagi.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNOneHeadedOgre.blp", + "skinType": "unit", + "abilSkinList": "ACro", + "skinnableID": "nogn", + "file:hd": "Units\\Creeps\\OgreOneHeadedMagi\\OgreOneHeadedMagi", + "file:sd": "units\\creeps\\OgreMagi\\OgreMagi", + "unitSound": "Ogre", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "225", + "blue:hd": "255", + "blue:sd": "235", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\OgreMagi\\OgreMagi_portrait", + "portrait:hd": "Units\\Creeps\\OgreOneHeadedMagi\\OgreOneHeadedMagi_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nogo": { + "unitID": "nogo", + "sort": "n2", + "comment(s)": "Stonemaul Ogre", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nogo", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stonemaulogre", + "unitClass": "ogre", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nogo", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 375, + "lumbercost": 0, + "goldRep": 375, + "lumberRep": 0, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 1060, + "realHP": 1060, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nogo", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nogo", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOneHeadedOgre.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "nogo", + "file": "units\\creeps\\OgreOneHeaded\\OgreOneHeaded", + "unitSound": "Stonemaul", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "230", + "blue:hd": "255", + "blue:sd": "210", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "addon": "Units" + }, + "nogr": { + "unitID": "nogr", + "sort": "n2", + "comment(s)": "Ogre Warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nogr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ogre1", + "unitClass": "ogre", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nogr", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 150, + "lumbercost": 0, + "goldRep": 150, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nogr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nogr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOgre.blp", + "skinType": "unit", + "skinnableID": "nogr", + "file": "units\\creeps\\Ogre\\Ogre", + "unitSound": "Ogre", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nomg": { + "unitID": "nomg", + "sort": "n2", + "comment(s)": "ogre magi", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nomg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ogremagi", + "unitClass": "ogre", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nomg", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nomg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nomg", + "sortAbil": "n2", + "auto": "Ablo", + "abilList": "ACbb", + "Buttonpos": "3,0", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOgreMagi.blp", + "skinType": "unit", + "abilSkinList": "ACbb", + "abilSkinList:melee,V0": "ACbl", + "abilSkinList:custom,V0": "ACbl", + "skinnableID": "nomg", + "file": "units\\creeps\\OgreMagi\\OgreMagi", + "unitSound": "Ogre", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nowb": { + "unitID": "nowb", + "sort": "n2", + "comment(s)": "owlbear", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nowb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "owlbear", + "unitClass": "owlbear", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nowb", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 195, + "lumbercost": 0, + "goldRep": 195, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 220, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nowb", + "sortWeap": "o2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 18, + "dmgUp1": "-", + "mindmg1": 19, + "avgdmg1": 20.5, + "maxdmg1": 22, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 15.1851851851852, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nowb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOwlBear.blp", + "skinType": "unit", + "skinnableID": "nowb", + "file": "units\\creeps\\Owlbear\\Owlbear", + "unitSound": "Owlbear", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nowe": { + "unitID": "nowe", + "sort": "n2", + "comment(s)": "enraged owlbear", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nowe", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "enragedowlbear", + "unitClass": "owlbear", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nowe", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nowe", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nowe", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEnragedWildkin.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNOwlBear.blp", + "skinType": "unit", + "skinnableID": "nowe", + "file:hd": "Units\\Creeps\\EnragedOwlBear\\EnragedOwlBear", + "file:sd": "units\\creeps\\Owlbear\\Owlbear", + "unitSound": "Owlbear", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "160", + "blue:hd": "255", + "blue:sd": "160", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\Owlbear\\Owlbear_portrait", + "portrait:hd": "Units\\Creeps\\EnragedOwlBear\\EnragedOwlBear_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nowk": { + "unitID": "nowk", + "sort": "n2", + "comment(s)": "berserk owlbear", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nowk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "berserkowlbear", + "unitClass": "owlbear", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nowk", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1100, + "realHP": 1100, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nowk", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nowk", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbh,Awrs", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBerserkWildKin.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNOwlBear.blp", + "skinType": "unit", + "abilSkinList": "ACbh,Awrs", + "skinnableID": "nowk", + "file:hd": "Units\\Creeps\\BerserkOwlBear\\BerserkOwlBear", + "file:sd": "units\\creeps\\Owlbear\\Owlbear", + "unitSound": "Owlbear", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "2.3", + "legacyScale": "2.3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\Owlbear\\Owlbear_portrait", + "portrait:hd": "Units\\Creeps\\BerserkOwlBear\\BerserkOwlBear_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "npfl": { + "unitID": "npfl", + "sort": "n2", + "comment(s)": "purple felhound", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "npfl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "purplefelstalker", + "unitClass": "felstalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npfl", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 155, + "lumbercost": 0, + "goldRep": 155, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 60, + "HP": 390, + "realHP": 390, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "npfl", + "sortWeap": "n1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npfl", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurpleFelhound.blp", + "skinType": "unit", + "skinnableID": "npfl", + "file:hd": "units\\creeps\\Felbeast\\Felbeast", + "file:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple", + "unitSound": "Felhound", + "blend": "0.15", + "scale:hd": "1.95", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "240", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "240", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple_portrait", + "portrait:hd": "units\\creeps\\Felbeast\\Felbeast_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "addon": "Units" + }, + "npfm": { + "unitID": "npfm", + "sort": "n2", + "comment(s)": "purple felhound", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "npfm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "felravager", + "unitClass": "felstalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npfm", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "npfm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npfm", + "sortAbil": "n2", + "auto": "ANba", + "abilList": "ACbk,ACde", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPurpleFelRavager.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPurpleFelhound.blp", + "skinType": "unit", + "abilSkinList": "ACbk,ACde", + "skinnableID": "npfm", + "file": "units\\creeps\\FelstalkerPurple\\FelstalkerPurple", + "unitSound": "Felhound", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "50", + "addon": "Units" + }, + "nplb": { + "unitID": "nplb", + "sort": "n2", + "comment(s)": "polar bear", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.97, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nplb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "polarbear", + "unitClass": "polarbear", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nplb", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 195, + "lumbercost": 0, + "goldRep": 195, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 475, + "realHP": 475, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nplb", + "sortWeap": "o2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 17.037037037037, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nplb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostBear.blp", + "skinType": "unit", + "skinnableID": "nplb", + "file": "units\\creeps\\PolarBear\\PolarBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "2.9", + "scale:sd": "1.8", + "legacyScale": "1.8", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.7", + "modelScale:sd": "0.95", + "legacyModelScale": "0.95", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nplg": { + "unitID": "nplg", + "sort": "n2", + "comment(s)": "giant polar bear", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.97, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nplg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "giantpolarbear", + "unitClass": "polarbear", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nplg", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nplg", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 36, + "maxdmg1": 38, + "dmgpt1": 0.63, + "backSw1": 0.67, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 26.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nplg", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGiantFrostBear.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFrostBear.blp", + "skinType": "unit", + "skinnableID": "nplg", + "file:hd": "Units\\Creeps\\GiantPolarBear\\GiantPolarBear", + "file:sd": "units\\creeps\\PolarBear\\PolarBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale:hd": "3.4", + "scale:sd": "2.4", + "legacyScale": "2.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.7", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "160", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\PolarBear\\PolarBear_portrait", + "portrait:hd": "Units\\Creeps\\GiantPolarBear\\GiantPolarBear_portrait", + "impactSwimZ": "0", + "impactZ": "90", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nqbh": { + "unitID": "nqbh", + "sort": "n2", + "comment(s)": "quillboar hunter", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nqbh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "quillboarhunter", + "unitClass": "razormane", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nqbh", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 220, + "HP": 375, + "realHP": 375, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nqbh", + "sortWeap": "n1a", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 14.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nqbh", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACev", + "Missileart": "Abilities\\Weapons\\BristleBackMissile\\BristleBackMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNQuillboarHunter.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRazorback.blp", + "skinType": "unit", + "abilSkinList": "ACev", + "skinnableID": "nqbh", + "file:hd": "Units\\Creeps\\BristleBackHunter\\BristleBackHunter", + "file:sd": "units\\creeps\\Bristleback\\Bristleback", + "portrait:sd": "units\\creeps\\Bristleback\\Bristleback", + "portrait:hd": "Units\\Creeps\\BristleBackHunter\\BristleBackHunter_portrait", + "unitSound": "Bristleback", + "blend": "0.15", + "scale:hd": "1.45", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "140", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "nrdk": { + "unitID": "nrdk", + "sort": "n2", + "comment(s)": "Red Dragon Whelp", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrdk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "reddragonwhelp", + "unitClass": "dragona", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrdk", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nrdk", + "sortWeap": "o2", + "weapsOn": 3, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 4, + "dmgplus2": 24, + "dmgUp2": "-", + "mindmg2": 25, + "avgdmg2": 26.5, + "maxdmg2": 28, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrdk", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRedDragonWhelp.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRedDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nrdk", + "file": "units\\creeps\\RedDragonWelp\\RedDragonWelp", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "50", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-30", + "launchZ:hd": "-10", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "nrdr": { + "unitID": "nrdr", + "sort": "n2", + "comment(s)": "Red Drake", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrdr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "reddrake", + "unitClass": "dragona", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrdr", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nrdr", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 41.5, + "maxdmg1": 47, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 48, + "DPS": 23.0555555555556, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 1.8, + "mincool2": "-", + "dice2": 1, + "sides2": 8, + "dmgplus2": 50, + "dmgUp2": "-", + "mindmg2": 51, + "avgdmg2": 54.5, + "maxdmg2": 58, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrdr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRedDrake.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRedDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nrdr", + "file:hd": "Units\\Creeps\\RedDrake\\RedDrake", + "file:sd": "units\\creeps\\RedDragon\\RedDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "ShadowFlyer", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\creeps\\RedDragon\\RedDragon_portrait", + "portrait:hd": "Units\\Creeps\\RedDrake\\RedDrake_portrait", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "nrel": { + "unitID": "nrel", + "sort": "n2", + "comment(s)": "reef elemental", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nrel", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "reefelemental", + "unitClass": "elemental", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nrel", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 170, + "lumbercost": 0, + "goldRep": 170, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nrel", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 11.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrel", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\SeaElementalMissile\\SeaElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNReefElemental.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSeaElemental.blp", + "skinType": "unit", + "skinnableID": "nrel", + "file:hd": "Units\\Creeps\\ReefElemental\\ReefElemental", + "file:sd": "Units\\Creeps\\SeaElemental\\SeaElemental", + "unitSound": "WaterElemental", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "Units\\Creeps\\SeaElemental\\SeaElemental_portrait", + "portrait:hd": "Units\\Creeps\\ReefElemental\\ReefElemental_portrait", + "impactSwimZ": "60", + "impactZ": "60", + "launchSwimZ": "80", + "showUI1": "1", + "showUI2": "1", + "launchZ": "80", + "launchZ:hd": "50", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "120", + "addon": "Units" + }, + "nrog": { + "unitID": "nrog", + "sort": "n2", + "comment(s)": "rogue", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrog", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rogue", + "unitClass": "bandit", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrog", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 150, + "lumbercost": 0, + "goldRep": 150, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 120, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nrog", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrog", + "sortAbil": "n2", + "auto": "_", + "abilList": "Ashm", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRogue.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBandit.blp", + "skinType": "unit", + "abilSkinList": "Ashm", + "skinnableID": "nrog", + "file:hd": "Units\\Creeps\\BanditRogue\\BanditRogue", + "file:sd": "units\\creeps\\Bandit\\Bandit", + "unitSound": "Bandit", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Bandit\\Bandit_portrait", + "portrait:hd": "Units\\Creeps\\BanditRogue\\BanditRogue_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrvd": { + "unitID": "nrvd", + "sort": "n2", + "comment(s)": "death revenant", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrvd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "deathrevenant", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrvd", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "undead", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 1.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nrvd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 64.5, + "maxdmg1": 68, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 47.7777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrvd", + "sortAbil": "n2", + "auto": "Arai", + "abilList": "ACrd,ACdc,ACad", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDeathRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "abilSkinList": "ACrd,ACdc,ACad", + "skinnableID": "nrvd", + "file:hd": "Units\\Creeps\\RevenantDeath\\RevenantDeath", + "file:sd": "units\\creeps\\Revenant\\Revenant", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "2.5", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "1.25", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\Revenant\\Revenant_portrait", + "portrait:hd": "Units\\Creeps\\RevenantDeath\\RevenantDeath_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrvf": { + "unitID": "nrvf", + "sort": "n2", + "comment(s)": "fire revenant", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrvf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "firerevenant", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrvf", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrvf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrvf", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACim", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFireRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "abilSkinList": "ACim", + "skinnableID": "nrvf", + "file": "units\\creeps\\Revenant\\Revenant", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "1.65", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.9", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrvi": { + "unitID": "nrvi", + "sort": "n2", + "comment(s)": "ice revenant", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrvi", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icerevenant", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrvi", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "undead", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1100, + "realHP": 1100, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrvi", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrvi", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACvp,ACfn", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIceRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "abilSkinList": "ACvp,ACfn", + "skinnableID": "nrvi", + "file:hd": "Units\\Creeps\\RevenantIce\\RevenantIce", + "file:sd": "units\\creeps\\Revenant\\Revenant", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "1.2", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\Revenant\\Revenant_portrait", + "portrait:hd": "Units\\Creeps\\RevenantIce\\RevenantIce_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrvl": { + "unitID": "nrvl", + "sort": "n2", + "comment(s)": "lightning revenant", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrvl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lightningrevenant", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrvl", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "undead", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrvl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrvl", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpu,ACcl", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLightningRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "abilSkinList": "ACpu,ACcl", + "skinnableID": "nrvl", + "file:hd": "Units\\Creeps\\RevenantLightning\\RevenantLightning", + "file:sd": "units\\creeps\\Revenant\\Revenant", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "2.05", + "scale:sd": "2", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Revenant\\Revenant_portrait", + "portrait:hd": "Units\\Creeps\\RevenantLightning\\RevenantLightning_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "90", + "projectileVisOffsetX:hd": "50", + "projectileVisOffsetY:hd": "80", + "addon": "Units" + }, + "nrvs": { + "unitID": "nrvs", + "sort": "n2", + "comment(s)": "frost revenant", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrvs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "frostrevenant", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrvs", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "undead", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrvs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19, + "maxdmg1": 20, + "dmgpt1": 0.65, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 15, + "DPS": 14.0740740740741, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrvs", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbz", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFrostRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "abilSkinList": "ACbz", + "skinnableID": "nrvs", + "file:hd": "Units\\Creeps\\RevenantFrost\\RevenantFrost", + "file:sd": "units\\creeps\\Revenant\\Revenant", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "180", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Revenant\\Revenant_portrait", + "portrait:hd": "Units\\Creeps\\RevenantFrost\\RevenantFrost_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrwm": { + "unitID": "nrwm", + "sort": "n2", + "comment(s)": "Red Dragon", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrwm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "reddragon", + "unitClass": "dragona", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrwm", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 920, + "HP": 2200, + "realHP": 2200, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nrwm", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 64.5, + "maxdmg1": 81, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 43, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 9, + "dmgplus2": 45, + "dmgUp2": "-", + "mindmg2": 48, + "avgdmg2": 60, + "maxdmg2": 72, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrwm", + "sortAbil": "n2", + "auto": "_", + "abilList": "Advc,ACdv,ACmi", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRedDragon.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Advc,ACdv,ACmi", + "abilSkinList:melee,V0": "Advc,ACdv", + "abilSkinList:custom,V0": "Advc,ACdv", + "skinnableID": "nrwm", + "file": "units\\creeps\\RedDragon\\RedDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "300", + "shadowH": "300", + "shadowX": "150", + "shadowY": "150", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-30", + "launchZ:hd": "0", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "20", + "addon": "Units" + }, + "nrzb": { + "unitID": "nrzb", + "sort": "n2", + "comment(s)": "razormane brute", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrzb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "razormanebrute", + "unitClass": "razormane", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrzb", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrzb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrzb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRazorbackBrute.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRazorback.blp", + "skinType": "unit", + "skinnableID": "nrzb", + "file:hd": "Units\\Creeps\\RazorManeBrute\\RazorManeBrute", + "file:sd": "units\\creeps\\RazorMane\\RazorMane", + "portrait:sd": "units\\creeps\\RazorMane\\RazorMane", + "portrait:hd": "Units\\Creeps\\RazorManeBrute\\RazorManeBrute_portrait", + "unitSound": "RazorMane", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrzg": { + "unitID": "nrzg", + "sort": "n2", + "comment(s)": "razormane chieftain", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrzg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "razormanechieftain", + "unitClass": "razormane", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrzg", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrzg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrzg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACah,ACtb", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRazormaneChief.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRazorManeChief.blp", + "skinType": "unit", + "abilSkinList": "ACah,ACtb", + "skinnableID": "nrzg", + "file": "units\\creeps\\RazorManeChief\\RazorManeChief", + "unitSound": "RazorMane", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "320", + "run:sd": "210", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.8", + "legacyModelScale": "1.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "120", + "impactZ:hd": "90", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "20", + "addon": "Units" + }, + "nrzm": { + "unitID": "nrzm", + "sort": "n2", + "comment(s)": "razormane medicine man", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrzm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "razormanemedicineman", + "unitClass": "razormane", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrzm", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 350, + "lumbercost": 60, + "goldRep": 350, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrzm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrzm", + "sortAbil": "n2", + "auto": "_", + "abilList": "AChw,ACs9", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRazormaneMedicineMan.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRazorManeChief.blp", + "skinType": "unit", + "abilSkinList": "AChw,ACs9", + "skinnableID": "nrzm", + "file:hd": "Units\\Creeps\\RazorManeMedicineMan\\RazorManeMedicineMan", + "file:sd": "units\\creeps\\RazorManeChief\\RazorManeChief", + "unitSound": "RazorMane", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "units\\creeps\\RazorManeChief\\RazorManeChief_portrait", + "portrait:hd": "Units\\Creeps\\RazorManeMedicineMan\\RazorManeMedicineMan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrzs": { + "unitID": "nrzs", + "sort": "n2", + "comment(s)": "razormane scout", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrzs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "razormanescout", + "unitClass": "razormane", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrzs", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nrzs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrzs", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRazorback.blp", + "skinType": "unit", + "skinnableID": "nrzs", + "file": "units\\creeps\\RazorMane\\RazorMane", + "portrait:sd": "units\\creeps\\RazorMane\\RazorMane", + "portrait:hd": "units\\creeps\\RazorMane\\RazorMane_portrait", + "unitSound": "RazorMane", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "Shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nrzt": { + "unitID": "nrzt", + "sort": "n2", + "comment(s)": "quillboar", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nrzt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "quillboar", + "unitClass": "razormane", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrzt", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nrzt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 8.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrzt", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\BristleBackMissile\\BristleBackMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNQuillboar.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRazorback.blp", + "skinType": "unit", + "skinnableID": "nrzt", + "file": "units\\creeps\\Bristleback\\Bristleback", + "portrait:sd": "units\\creeps\\Bristleback\\Bristleback", + "portrait:hd": "units\\creeps\\Bristleback\\Bristleback_portrait", + "unitSound": "Bristleback", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "-10", + "projectileVisOffsetY:hd": "108", + "addon": "Units" + }, + "nsat": { + "unitID": "nsat", + "sort": "n2", + "comment(s)": "Satyr Trickster", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsat", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "satyrtrickster", + "unitClass": "satyr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsat", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nsat", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 8.5, + "maxdmg1": 10, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 4.72222222222222, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsat", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpu", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSatyrTrickster.blp", + "skinType": "unit", + "abilSkinList": "ACpu", + "skinnableID": "nsat", + "file": "units\\creeps\\SatyrTrickster\\SatyrTrickster", + "portrait:sd": "units\\creeps\\SatyrTrickster\\SatyrTrickster", + "portrait:hd": "units\\creeps\\SatyrTrickster\\SatyrTrickster_portrait", + "unitSound": "Satyr", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "60", + "impactZ:hd": "80", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nsbm": { + "unitID": "nsbm", + "sort": "n2", + "comment(s)": "brood mother", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsbm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "broodmother", + "unitClass": "giantspider", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsbm", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsbm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsbm", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACvs,ACen,Aspd", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBroodMother.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpiderBlue.blp", + "skinType": "unit", + "abilSkinList": "ACvs,ACen,Aspd", + "skinnableID": "nsbm", + "file:hd": "Units\\Creeps\\BroodMother\\BroodMother", + "file:sd": "units\\creeps\\SpiderBlue\\SpiderBlue", + "unitSound": "Spider", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "139", + "run:sd": "300", + "run:hd": "248", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.75", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "80", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\SpiderBlue\\SpiderBlue_portrait", + "portrait:hd": "Units\\Creeps\\BroodMother\\BroodMother_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsbs": { + "unitID": "nsbs", + "sort": "n2", + "comment(s)": "snap dragon submerged", + "race": "naga", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nsbs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "snapdragonmorph", + "unitClass": "naga", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "1", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsbs", + "sortBalance": "n2", + "sort2": "zzn", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 25, + "goldRep": 200, + "lumberRep": 25, + "fmade": " - ", + "fused": 3, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 160, + "stockStart": 60, + "HP": 500, + "realHP": 500, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat,Rnsb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsbs", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsbs", + "sortAbil": "n2", + "auto": "_", + "abilList": "Asb3", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\snapMissile\\snapMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnapDragon.blp", + "skinType": "unit", + "abilSkinList": "Asb3", + "skinnableID": "nsbs", + "file": "units\\naga\\SnapDragon\\SnapDragon", + "unitSound": "SnapDragon", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk": "250", + "run": "250", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.7", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "120", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsc2": { + "unitID": "nsc2", + "sort": "n2", + "comment(s)": "spider crab", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsc2", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spidercrab2", + "unitClass": "crab", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsc2", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 150, + "lumbercost": 0, + "goldRep": 150, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsc2", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsc2", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSpiderCrabLimbripper.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpiderCrab.blp", + "skinType": "unit", + "skinnableID": "nsc2", + "file:hd": "Units\\Creeps\\SpiderCrabLimbripper\\SpiderCrabLimbripper", + "file:sd": "units\\creeps\\SpiderCrabCreep\\SpiderCrabCreep", + "portrait:sd": "units\\creeps\\SpiderCrabCreep\\SpiderCrabCreep", + "portrait:hd": "Units\\Creeps\\SpiderCrabLimbripper\\SpiderCrabLimbripper_portrait", + "unitSound": "SpiderCrab", + "blend": "0.15", + "scale:hd": "2.25", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "64", + "run:sd": "200", + "run:hd": "106", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsc3": { + "unitID": "nsc3", + "sort": "n2", + "comment(s)": "spider crab", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsc3", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spidercrab3", + "unitClass": "crab", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsc3", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 300, + "lumbercost": 0, + "goldRep": 300, + "lumberRep": 0, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 850, + "realHP": 850, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsc3", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsc3", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSpiderCrabBehemoth.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpiderCrab.blp", + "skinType": "unit", + "skinnableID": "nsc3", + "file:hd": "Units\\Creeps\\SpiderCrabBehemoth\\SpiderCrabBehemoth", + "file:sd": "units\\creeps\\SpiderCrabCreep\\SpiderCrabCreep", + "portrait:sd": "units\\creeps\\SpiderCrabCreep\\SpiderCrabCreep", + "portrait:hd": "Units\\Creeps\\SpiderCrabBehemoth\\SpiderCrabBehemoth_portrait", + "unitSound": "SpiderCrab", + "blend": "0.15", + "scale:hd": "2.75", + "scale:sd": "1.72", + "legacyScale": "1.72", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "64", + "run:sd": "200", + "run:hd": "106", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "1.35", + "legacyModelScale": "1.35", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "175", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsca": { + "unitID": "nsca", + "sort": "n2", + "comment(s)": "skeletal archer(summoned)", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsca", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletalarchersummoned", + "unitClass": "zSkeletonArcher", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsca", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "undead", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 190, + "realHP": 190, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,N,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsca", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsca", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonArcher.blp", + "skinType": "unit", + "skinnableID": "nsca", + "file": "units\\creeps\\SkeletonArcher\\SkeletonArcher", + "unitSound": "SkeletonArcher", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nscb": { + "unitID": "nscb", + "sort": "n2", + "comment(s)": "spider crab", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nscb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spidercrab", + "unitClass": "crab", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nscb", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nscb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nscb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiderCrab.blp", + "skinType": "unit", + "skinnableID": "nscb", + "file": "Units\\Creeps\\SpiderCrabCreep\\SpiderCrabCreep", + "portrait:sd": "Units\\Creeps\\SpiderCrabCreep\\SpiderCrabCreep", + "portrait:hd": "Units\\Creeps\\SpiderCrabCreep\\SpiderCrabCreep_portrait", + "unitSound": "SpiderCrab", + "blend": "0.15", + "scale:hd": "2.1", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "64", + "run:sd": "200", + "run:hd": "106", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "125", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsce": { + "unitID": "nsce", + "sort": "n2", + "comment(s)": "SkeletonWarrior(summoned)", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsce", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletonsummoned", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsce", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "undead", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 60, + "stockStart": 440, + "HP": 190, + "realHP": 190, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,N,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nsce", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 7.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsce", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "skinType": "unit", + "skinnableID": "nsce", + "file": "units\\undead\\Skeleton\\Skeleton", + "unitSound": "Skeleton", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsel": { + "unitID": "nsel", + "sort": "n2", + "comment(s)": "sea elemental", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsel", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seaelemental", + "unitClass": "elemental", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsel", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 170, + "lumbercost": 0, + "goldRep": 170, + "lumberRep": 0, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsel", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 18.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsel", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbh", + "Missileart": "Abilities\\Weapons\\SeaElementalMissile\\SeaElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaElemental.blp", + "skinType": "unit", + "abilSkinList": "ACbh", + "skinnableID": "nsel", + "file": "Units\\Creeps\\SeaElemental\\SeaElemental", + "unitSound": "WaterElemental", + "blend": "0.15", + "scale:hd": "1.85", + "scale:sd": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "190", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nsgb": { + "unitID": "nsgb", + "sort": "n2", + "comment(s)": "sea giant behemoth", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.34, + "canSleep": 1, + "cargoSize": 2, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsgb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seagiantbehemoth", + "unitClass": "giant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsgb", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 265, + "lumbercost": 85, + "goldRep": 265, + "lumberRep": 85, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1000, + "realHP": 1000, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 200, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsgb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.75, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 42, + "dmgUp1": "-", + "mindmg1": 43, + "avgdmg1": 46, + "maxdmg1": 49, + "dmgpt1": 0.6, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 34.0740740740741, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsgb", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpv,Awrs,ACtb", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSeaGiantBehemoth.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSeaGiant.blp", + "skinType": "unit", + "abilSkinList": "ACpv,Awrs,ACtb", + "skinnableID": "nsgb", + "file:hd": "Units\\Creeps\\SeaGiantBehemoth\\SeaGiantBehemoth", + "file:sd": "Units\\Creeps\\SeaGiant\\SeaGiant", + "unitSound": "SeaGiant", + "blend": "0.15", + "scale:hd": "2.75", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.95", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "Units\\Creeps\\SeaGiant\\SeaGiant_portrait", + "portrait:hd": "Units\\Creeps\\SeaGiantBehemoth\\SeaGiantBehemoth_portrait", + "impactSwimZ": "0", + "impactZ": "200", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "40", + "showUI1": "1", + "showUI2": "1", + "launchZ": "200", + "addon": "Units" + }, + "nsgg": { + "unitID": "nsgg", + "sort": "n2", + "comment(s)": "siege golem", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsgg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "siegegolem", + "unitClass": "golemb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsgg", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1900, + "realHP": 1900, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsgg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsgg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSiegeGolem.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNArmorGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "nsgg", + "file:hd": "Units\\Creeps\\SiegeGolem\\SiegeGolem", + "file:sd": "units\\creeps\\GolemStatue\\GolemStatue", + "portrait:sd": "units\\creeps\\GolemStatue\\GolemStatue", + "portrait:hd": "Units\\Creeps\\SiegeGolem\\SiegeGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale:hd": "2.9", + "scale:sd": "2.3", + "legacyScale": "2.3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.95", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "180", + "unitShadow": "Shadow", + "shadowW": "260", + "shadowH": "260", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsgh": { + "unitID": "nsgh", + "sort": "n2", + "comment(s)": "sea giant hunter", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.34, + "canSleep": 1, + "cargoSize": 2, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsgh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seagianthunter", + "unitClass": "giant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsgh", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 265, + "lumbercost": 85, + "goldRep": 265, + "lumberRep": 85, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 725, + "realHP": 725, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 200, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsgh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.75, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 20, + "avgdmg1": 21.5, + "maxdmg1": 23, + "dmgpt1": 0.6, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsgh", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpv,ACen", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaGiantGreen.blp", + "skinType": "unit", + "abilSkinList": "ACpv,ACen", + "skinnableID": "nsgh", + "file": "Units\\Creeps\\SeaGiantGreen\\SeaGiantGreen", + "unitSound": "SeaGiant", + "blend": "0.15", + "scale:hd": "3.25", + "scale:sd": "2.4", + "legacyScale": "2.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:hd": "300", + "walk:sd": "200", + "run:hd": "300", + "run:sd": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "160", + "weapType1": "WoodMediumBash", + "launchSwimZ": "30", + "showUI1": "1", + "showUI2": "1", + "launchZ": "160", + "addon": "Units" + }, + "nsgn": { + "unitID": "nsgn", + "sort": "n2", + "comment(s)": "sea giant", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.34, + "canSleep": 1, + "cargoSize": 2, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsgn", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seagiant", + "unitClass": "giant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsgn", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 265, + "lumbercost": 85, + "goldRep": 265, + "lumberRep": 85, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 350, + "realHP": 350, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 200, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsgn", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.6, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 8.33333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsgn", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpv", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaGiant.blp", + "skinType": "unit", + "abilSkinList": "ACpv", + "skinnableID": "nsgn", + "file": "Units\\Creeps\\SeaGiant\\SeaGiant", + "unitSound": "SeaGiant", + "blend": "0.15", + "scale:hd": "2.75", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsgt": { + "unitID": "nsgt", + "sort": "n2", + "comment(s)": "giant spider", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsgt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "giantspider", + "unitClass": "giantspider", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsgt", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 500, + "realHP": 500, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsgt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsgt", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACvs,ACen", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGiantSpider.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpider.blp", + "skinType": "unit", + "abilSkinList": "ACvs,ACen", + "skinnableID": "nsgt", + "file:hd": "Units\\Creeps\\SpiderGiant\\SpiderGiant", + "file:sd": "units\\creeps\\Spider\\Spider", + "unitSound": "Spider", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "144", + "run:sd": "300", + "run:hd": "242", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.65", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Spider\\Spider_portrait", + "portrait:hd": "Units\\Creeps\\SpiderGiant\\SpiderGiant_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nska": { + "unitID": "nska", + "sort": "n2", + "comment(s)": "skeletal archer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nska", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletalarcher", + "unitClass": "zSkeletonArcher", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nska", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "undead", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 190, + "realHP": 190, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,N,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nska", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nska", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonArcher.blp", + "skinType": "unit", + "skinnableID": "nska", + "file": "units\\creeps\\SkeletonArcher\\SkeletonArcher", + "unitSound": "SkeletonArcher", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "100", + "projectileVisOffsetX:hd": "11", + "projectileVisOffsetY:hd": "-14", + "addon": "Units" + }, + "nske": { + "unitID": "nske", + "sort": "n2", + "comment(s)": "SkeletonWarrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nske", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeleton", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nske", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "undead", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 60, + "stockStart": 440, + "HP": 190, + "realHP": 190, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,N,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nske", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 7.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nske", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "skinType": "unit", + "skinnableID": "nske", + "file": "units\\undead\\Skeleton\\Skeleton", + "unitSound": "Skeleton", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nskf": { + "unitID": "nskf", + "sort": "n2", + "comment(s)": "burning archer", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nskf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "burningarcher", + "unitClass": "zSkeletonArcher", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nskf", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 225, + "lumbercost": 25, + "goldRep": 225, + "lumberRep": 25, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 220, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nskf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 15.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nskf", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACsa", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBurningArcher.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSkeletonArcher.blp", + "skinType": "unit", + "abilSkinList": "ACsa", + "skinnableID": "nskf", + "file:hd": "Units\\Creeps\\BurningArcher\\BurningArcher", + "file:sd": "units\\creeps\\BurningArcher\\BurningArcher", + "unitSound": "SkeletonArcher", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.15", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\BurningArcher\\BurningArcher_portrait", + "portrait:hd": "Units\\Creeps\\BurningArcher\\BurningArcher_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "120", + "projectileVisOffsetX:hd": "-23", + "projectileVisOffsetY:hd": "-14", + "addon": "Units" + }, + "nskg": { + "unitID": "nskg", + "sort": "n2", + "comment(s)": "giant SkeletonWarrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nskg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "giantskeleton", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nskg", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 165, + "lumbercost": 0, + "goldRep": 165, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 380, + "realHP": 380, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 47, + "stockInitial": 1, + "unitWeaponID": "nskg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 15, + "maxdmg1": 18, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 29, + "DPS": 7.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nskg", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGiantSkeletonWarrior.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "skinType": "unit", + "skinnableID": "nskg", + "file:hd": "Units\\undead\\GiantSkeletonWarrior\\GiantSkeletonWarrior", + "file:sd": "units\\undead\\Skeleton\\Skeleton", + "unitSound": "Skeleton", + "blend": "0.15", + "scale:hd": "1.9", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1.35", + "legacyModelScale": "1.35", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\undead\\Skeleton\\Skeleton_portrait", + "portrait:hd": "Units\\undead\\GiantSkeletonWarrior\\GiantSkeletonWarrior_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nskm": { + "unitID": "nskm", + "sort": "n2", + "comment(s)": "skeletal marksman", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nskm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletalmarksman", + "unitClass": "zSkeletonArcher", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nskm", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nskm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.7, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 15.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nskm", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACcw", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSkeletalMarskman.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSkeletonArcher.blp", + "skinType": "unit", + "abilSkinList": "ACcw", + "skinnableID": "nskm", + "file:hd": "units\\creeps\\SkeletalMarksman\\SkeletalMarksman", + "file:sd": "units\\creeps\\SkeletonArcher\\SkeletonArcher", + "unitSound": "SkeletonArcher", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\SkeletonArcher\\SkeletonArcher_portrait", + "portrait:hd": "units\\creeps\\SkeletalMarksman\\SkeletalMarksman_portrait", + "impactSwimZ": "0", + "impactZ": "90", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "105", + "projectileVisOffsetX:hd": "-20", + "projectileVisOffsetY:hd": "-40", + "addon": "Units" + }, + "nsko": { + "unitID": "nsko", + "sort": "n2", + "comment(s)": "skeletal orc", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsko", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletalorc", + "unitClass": "skeletalorc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsko", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 90, + "lumbercost": 0, + "goldRep": 90, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 375, + "realHP": 375, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nsko", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsko", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletalOrc.blp", + "skinType": "unit", + "skinnableID": "nsko", + "file": "units\\creeps\\SkeletonOrc\\SkeletonOrc", + "unitSound": "Skeleton", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nslf": { + "unitID": "nslf", + "sort": "n2", + "comment(s)": "sludge flinger", + "race": "creeps", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nslf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sludgeflinger", + "unitClass": "sludgemonster", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nslf", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 330, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nslf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nslf", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\SludgeMissile\\SludgeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSludgeFlinger.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSludgeCreature.blp", + "skinType": "unit", + "abilSkinList": "ACsw", + "skinnableID": "nslf", + "file:hd": "Units\\Creeps\\SludgeFlinger\\SludgeFlinger", + "file:sd": "units\\creeps\\SludgeMonster\\SludgeMonster", + "unitSound": "SludgeMonster", + "blend": "0.15", + "scale:hd": "2.1", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.67", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "180", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\SludgeMonster\\SludgeMonster", + "portrait:hd": "Units\\Creeps\\SludgeFlinger\\SludgeFlinger_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "50", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nslh": { + "unitID": "nslh", + "sort": "n2", + "comment(s)": "salamander hatchling", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nslh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "salamanderhatchling", + "unitClass": "salamander", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nslh", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nslh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 20, + "avgdmg1": 23.5, + "maxdmg1": 27, + "dmgpt1": 0.5, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 13.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nslh", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSalamanderHatchling.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNThunderLizardSalamander.blp", + "skinType": "unit", + "skinnableID": "nslh", + "file:hd": "Units\\Creeps\\SalamanderHatchling\\SalamanderHatchling", + "file:sd": "units\\creeps\\ThunderLizardSalamander\\ThunderLizardSalamander", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "2.1", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "58", + "run:sd": "240", + "run:hd": "296", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "0.6", + "legacyModelScale": "0.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "portrait:sd": "units\\creeps\\ThunderLizardSalamander\\ThunderLizardSalamander_portrait", + "portrait:hd": "Units\\Creeps\\SalamanderHatchling\\SalamanderHatchling_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "10", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nsll": { + "unitID": "nsll", + "sort": "n2", + "comment(s)": "salamander lord", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsll", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "salamanderlord", + "unitClass": "salamander", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsll", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 440, + "HP": 1800, + "realHP": 1800, + "regenHP": 2, + "regenType": "always", + "manaN": 700, + "realM": 700, + "mana0": 700, + "regenMana": 1.75, + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsll", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.4, + "mincool1": "-", + "dice1": 3, + "sides1": 8, + "dmgplus1": 43, + "dmgUp1": "-", + "mindmg1": 46, + "avgdmg1": 56.5, + "maxdmg1": 67, + "dmgpt1": 0.5, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 24, + "DPS": 40.3571428571429, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsll", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACim,ACrf,Advc,ACdv", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSalamanderLord.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNThunderLizardSalamander.blp", + "skinType": "unit", + "abilSkinList": "ACim,ACrf,Advc,ACdv", + "skinnableID": "nsll", + "file": "units\\creeps\\ThunderLizardSalamander\\ThunderLizardSalamander", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "3.6", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "111", + "run:sd": "240", + "run:hd": "367", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "310", + "shadowH": "280", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "launchZ:hd": "30", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "nslm": { + "unitID": "nslm", + "sort": "n2", + "comment(s)": "sludge minion", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nslm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sludgeminion", + "unitClass": "sludgemonster", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nslm", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nslm", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nslm", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSludgeCreature.blp", + "skinType": "unit", + "abilSkinList": "ACsw", + "skinnableID": "nslm", + "file": "units\\creeps\\SludgeMonster\\SludgeMonster", + "unitSound": "SludgeMonster", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.6", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "units\\creeps\\SludgeMonster\\SludgeMonster", + "portrait:hd": "units\\creeps\\SludgeMonster\\SludgeMonster_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "addon": "Units" + }, + "nsln": { + "unitID": "nsln", + "sort": "n2", + "comment(s)": "sludge monstrosity", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsln", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sludgemonstrosity", + "unitClass": "sludgemonster", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsln", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C,D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsln", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsln", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw", + "Buttonpos": "2,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSludgeMontrosity.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSludgeCreature.blp", + "skinType": "unit", + "abilSkinList": "ACsw", + "skinnableID": "nsln", + "file:hd": "Units\\Creeps\\SludgeMonstrosity\\SludgeMonstrosity", + "file:sd": "units\\creeps\\SludgeMonster\\SludgeMonster", + "unitSound": "SludgeMonster", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1.8", + "legacyModelScale": "1.8", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\SludgeMonster\\SludgeMonster", + "portrait:hd": "Units\\Creeps\\SludgeMonstrosity\\SludgeMonstrosity_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nslr": { + "unitID": "nslr", + "sort": "n2", + "comment(s)": "salamander", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nslr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "salamander", + "unitClass": "salamander", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nslr", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nslr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 29, + "dmgUp1": "-", + "mindmg1": 30, + "avgdmg1": 34.5, + "maxdmg1": 39, + "dmgpt1": 0.5, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 19.1666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nslr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACim,ACfb", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThunderLizardSalamander.blp", + "skinType": "unit", + "abilSkinList": "ACim,ACfb", + "skinnableID": "nslr", + "file:hd": "Units\\Creeps\\Salamander\\Salamander", + "file:sd": "units\\creeps\\ThunderLizardSalamander\\ThunderLizardSalamander", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "3.1", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "111", + "run:sd": "240", + "run:hd": "367", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.95", + "legacyModelScale": "0.95", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "portrait:sd": "units\\creeps\\ThunderLizardSalamander\\ThunderLizardSalamander_portrait", + "portrait:hd": "Units\\Creeps\\Salamander\\Salamander_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nslv": { + "unitID": "nslv", + "sort": "n2", + "comment(s)": "salamander vizier", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nslv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "salamandervizier", + "unitClass": "salamander", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nslv", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nslv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 31, + "avgdmg1": 35, + "maxdmg1": 39, + "dmgpt1": 0.5, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 19.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nslv", + "sortAbil": "n2", + "auto": "Ablo", + "abilList": "ACbl,Ambd,ACdm", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThunderLizardVizier.blp", + "skinType": "unit", + "abilSkinList": "ACbl,Ambd,ACdm", + "skinnableID": "nslv", + "file": "units\\creeps\\ThunderLizardVizier\\ThunderLizardVizier", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "3.1", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "81", + "run:sd": "240", + "run:hd": "296", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "projectileVisOffsetY:hd": "95", + "addon": "Units" + }, + "nsnp": { + "unitID": "nsnp", + "sort": "n2", + "comment(s)": "snap dragon", + "race": "naga", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nsnp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "snapdragon", + "unitClass": "naga", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsnp", + "sortBalance": "n2", + "sort2": "zzn", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 25, + "goldRep": 200, + "lumberRep": 25, + "fmade": " - ", + "fused": 3, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 160, + "stockStart": 60, + "HP": 500, + "realHP": 500, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat,Rnsb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsnp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,air,structure,debris,item,ward", + "rangeN1": 550, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 27, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 22, + "DPS": 13.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsnp", + "sortAbil": "n2", + "auto": "_", + "abilList": "Aspo,Asb3", + "DependencyOr": "nsbs", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\snapMissile\\snapMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1900", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnapDragon.blp", + "skinType": "unit", + "abilSkinList": "Aspo,Asb3", + "skinnableID": "nsnp", + "file": "units\\naga\\SnapDragon\\SnapDragon", + "unitSound": "SnapDragon", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "350", + "run:sd": "250", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "120", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "10", + "showUI1": "1", + "showUI2": "1", + "launchZ": "30", + "addon": "Units" + }, + "nsns": { + "unitID": "nsns", + "sort": "n2", + "comment(s)": "watery minion snarecaster", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nsns", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wateryminionsnarecaster", + "unitClass": "wateryminion", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsns", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 375, + "realHP": 375, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nsns", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 18.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsns", + "sortAbil": "n2", + "auto": "Aslo", + "abilList": "ACsw,ACdm", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\MurgulMagicMissile\\MurgulMagicMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWateryMinionCaster.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurgulShadowCaster.blp", + "skinType": "unit", + "abilSkinList": "ACsw,ACdm", + "skinnableID": "nsns", + "file:hd": "Units\\Creeps\\WateryMinionLvl3\\WateryMinionLvl3", + "file:sd": "Units\\Creeps\\MurgulShadowCaster\\MurgulShadowCaster", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.6", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "192", + "green:hd": "255", + "green:sd": "192", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\MurgulShadowCaster\\MurgulShadowCaster_portrait", + "portrait:hd": "Units\\Creeps\\WateryMinionLvl3\\WateryMinionLvl3_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsoc": { + "unitID": "nsoc", + "sort": "n2", + "comment(s)": "skeletal orc champion", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsoc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletalorcchampion", + "unitClass": "skeletalorc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsoc", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "undead", + "goldcost": 90, + "lumbercost": 0, + "goldRep": 90, + "lumberRep": 0, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1100, + "realHP": 1100, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsoc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.6, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsoc", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACcr,ACvp", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletalOrcChampion.blp", + "skinType": "unit", + "abilSkinList": "ACdc", + "skinnableID": "nsoc", + "file:hd": "Units\\Creeps\\SkeletonOrcChampion\\SkeletonOrcChampion", + "file:sd": "units\\creeps\\SkeletonOrc\\SkeletonOrc", + "unitSound": "Skeleton", + "blend": "0.15", + "scale:hd": "1.65", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "175", + "green:hd": "255", + "green:sd": "175", + "blue:hd": "255", + "blue:sd": "250", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\SkeletonOrc\\SkeletonOrc_portrait", + "portrait:hd": "Units\\Creeps\\SkeletonOrcChampion\\SkeletonOrcChampion_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "120", + "impactZ:hd": "100", + "projectileVisOffsetX:hd": "20", + "addon": "Units" + }, + "nsog": { + "unitID": "nsog", + "sort": "n2", + "comment(s)": "skeletal orc grunt", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 5.034, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsog", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skeletalorcgrunt", + "unitClass": "skeletalorc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsog", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "undead", + "goldcost": 300, + "lumbercost": 0, + "goldRep": 300, + "lumberRep": 0, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 850, + "realHP": 850, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsog", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.56, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsog", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "3,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletalOrcGrunt.blp", + "skinType": "unit", + "skinnableID": "nsog", + "file:hd": "Units\\Creeps\\SkeletonOrcGrunt\\SkeletonOrcGrunt", + "file:sd": "units\\creeps\\SkeletonOrc\\SkeletonOrc", + "unitSound": "Skeleton", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\SkeletonOrc\\SkeletonOrc_portrait", + "portrait:hd": "Units\\Creeps\\SkeletonOrcGrunt\\SkeletonOrcGrunt_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nspb": { + "unitID": "nspb", + "sort": "n2", + "comment(s)": "black spider", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nspb", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiderblack", + "unitClass": "giantspider", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nspb", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nspb", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nspb", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiderBlack.blp", + "skinType": "unit", + "skinnableID": "nspb", + "file": "units\\creeps\\SpiderBlack\\SpiderBlack", + "unitSound": "Spider", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "64", + "run:sd": "300", + "run:hd": "106", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.4", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "launchZ:hd": "25", + "addon": "Units" + }, + "nspd": { + "unitID": "nspd", + "sort": "n2", + "comment(s)": "spiderling", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nspd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiderling", + "unitClass": "nerubian", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nspd", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nspd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nspd", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNerubian.blp", + "skinType": "unit", + "skinnableID": "nspd", + "file": "units\\creeps\\Nerubian\\Nerubian", + "unitSound": "Nerubian", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.6", + "legacyModelScale": "0.6", + "red:hd": "255", + "red:sd": "120", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "launchZ:hd": "25", + "addon": "Units" + }, + "nspg": { + "unitID": "nspg", + "sort": "n2", + "comment(s)": "green spider", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nspg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "forestspider", + "unitClass": "giantspider", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nspg", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nspg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nspg", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiderGreen.blp", + "skinType": "unit", + "skinnableID": "nspg", + "file": "units\\creeps\\SpiderGreen\\SpiderGreen", + "unitSound": "Spider", + "blend": "0.15", + "scale:hd": "1.35", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "93", + "run:sd": "300", + "run:hd": "257", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "0.6", + "legacyModelScale": "0.6", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "25", + "launchZ:hd": "25", + "addon": "Units" + }, + "nspp": { + "unitID": "nspp", + "sort": "n2", + "comment(s)": "spirit pig", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nspp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritpig", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nspp", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 110, + "stockStart": 440, + "HP": 200, + "realHP": 200, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nspp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 11, + "avgdmg1": 11.5, + "maxdmg1": 12, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 11.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nspp", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSpiritPig.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRazorback.blp", + "skinType": "unit", + "skinnableID": "nspp", + "file": "units\\creeps\\SpiritPig\\SpiritPig", + "unitSound": "RazorMane", + "blend": "0.15", + "scale:hd": "1.95", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nspr": { + "unitID": "nspr", + "sort": "n2", + "comment(s)": "spider", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nspr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spider", + "unitClass": "giantspider", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nspr", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nspr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nspr", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpider.blp", + "skinType": "unit", + "skinnableID": "nspr", + "file": "units\\creeps\\Spider\\Spider", + "unitSound": "Spider", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "64", + "run:sd": "300", + "run:hd": "106", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.55", + "modelScale:sd": "0.5", + "legacyModelScale": "0.5", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "20", + "launchZ:hd": "20", + "addon": "Units" + }, + "nsqa": { + "unitID": "nsqa", + "sort": "n2", + "comment(s)": "ancient sasquatch", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsqa", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancientsasquatch", + "unitClass": "sasquatch", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsqa", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1200, + "realHP": 1200, + "regenHP": 1.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsqa", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 64.5, + "maxdmg1": 68, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 47.7777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsqa", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACtc,ACfr,ACrn", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSasquatchAncient.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSasquatch.blp", + "skinType": "unit", + "abilSkinList": "ACtc,ACfr,ACrn", + "skinnableID": "nsqa", + "file:hd": "Units\\Creeps\\AncientSasquatch\\AncientSasquatch", + "file:sd": "units\\creeps\\Sasquatch\\Sasquatch", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "2.6", + "scale:sd": "1.45", + "legacyScale": "1.45", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "220", + "walk:hd": "320", + "run:sd": "220", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "portrait:sd": "units\\creeps\\Sasquatch\\Sasquatch_portrait", + "portrait:hd": "Units\\Creeps\\AncientSasquatch\\AncientSasquatch_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsqe": { + "unitID": "nsqe", + "sort": "n2", + "comment(s)": "elder sasquatch", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsqe", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "eldersasquatch", + "unitClass": "sasquatch", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsqe", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsqe", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsqe", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbh,ACfr", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSasquatchShaman.blp", + "skinType": "unit", + "abilSkinList": "ACbh,ACfr", + "skinnableID": "nsqe", + "file": "units\\creeps\\SasquatchShaman\\SasquatchShaman", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "220", + "walk:hd": "320", + "run:sd": "220", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "170", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsqo": { + "unitID": "nsqo", + "sort": "n2", + "comment(s)": "sasquatch oracle", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsqo", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sasquatchoracle", + "unitClass": "sasquatch", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsqo", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsqo", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsqo", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACrj,ACro", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSasquatchOracle.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSasquatch.blp", + "skinType": "unit", + "abilSkinList": "ACrj,ACro", + "skinnableID": "nsqo", + "file:hd": "Units\\Creeps\\SasquatchOracle\\SasquatchOracle", + "file:sd": "units\\creeps\\Sasquatch\\Sasquatch", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "220", + "walk:hd": "320", + "run:sd": "220", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.35", + "legacyModelScale": "1.35", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\Sasquatch\\Sasquatch_portrait", + "portrait:hd": "Units\\Creeps\\SasquatchOracle\\SasquatchOracle_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsqt": { + "unitID": "nsqt", + "sort": "n2", + "comment(s)": "sasquatch", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsqt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sasquatch", + "unitClass": "sasquatch", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsqt", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nsqt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsqt", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSasquatch.blp", + "skinType": "unit", + "skinnableID": "nsqt", + "file": "units\\creeps\\Sasquatch\\Sasquatch", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "220", + "walk:hd": "270", + "run:sd": "220", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "impactZ:hd": "40", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsra": { + "unitID": "nsra", + "sort": "n2", + "comment(s)": "stormreaver apprentice", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsra", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stormreaverapprentice", + "unitClass": "stormreaverorc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsra", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 5, + "goldRep": 105, + "lumberRep": 5, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nsra", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 18.5, + "maxdmg1": 20, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 10.2777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsra", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlockApprentice.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlock.blp", + "skinType": "unit", + "skinnableID": "nsra", + "file:hd": "Units\\Creeps\\StormreaverApprentice\\StormreaverApprentice", + "file:sd": "units\\creeps\\OrcWarlock\\OrcWarlock", + "unitSound": "ShamanX", + "blend": "0.15", + "scale:hd": "1.2", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "175", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\OrcWarlock\\OrcWarlock_portrait", + "portrait:hd": "Units\\Creeps\\StormreaverApprentice\\StormreaverApprentice_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsrh": { + "unitID": "nsrh", + "sort": "n2", + "comment(s)": "stormreaver hermit", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsrh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stormreaverhermit", + "unitClass": "stormreaverorc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsrh", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 190, + "lumbercost": 20, + "goldRep": 190, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 220, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nsrh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 12.7777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsrh", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpu", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlockHermit.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlock.blp", + "skinType": "unit", + "abilSkinList": "ACpu", + "skinnableID": "nsrh", + "file:hd": "Units\\Creeps\\StormreaverHermit\\StormreaverHermit", + "file:sd": "units\\creeps\\OrcWarlock\\OrcWarlock", + "unitSound": "ShamanX", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\OrcWarlock\\OrcWarlock_portrait", + "portrait:hd": "Units\\Creeps\\StormreaverHermit\\StormreaverHermit_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "-70", + "addon": "Units" + }, + "nsrn": { + "unitID": "nsrn", + "sort": "n2", + "comment(s)": "stormreaver necrolyte", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsrn", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stormreavernecrolyte", + "unitClass": "stormreaverorc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsrn", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 180, + "lumbercost": 20, + "goldRep": 180, + "lumberRep": 20, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 675, + "realHP": 675, + "regenHP": 0.5, + "regenType": "always", + "manaN": 350, + "realM": 350, + "mana0": 350, + "regenMana": 0.875, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nsrn", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 39.5, + "maxdmg1": 43, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 21.9444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsrn", + "sortAbil": "n2", + "auto": "Ablo", + "abilList": "ACbl,ACcl", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlockNecrolyte.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlock.blp", + "skinType": "unit", + "abilSkinList": "ACbl,ACcl", + "skinnableID": "nsrn", + "file:hd": "Units\\Creeps\\StormreaverNecrolyte\\StormreaverNecrolyte", + "file:sd": "units\\creeps\\OrcWarlock\\OrcWarlock", + "unitSound": "ShamanX", + "blend": "0.15", + "scale:hd": "1.45", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\OrcWarlock\\OrcWarlock_portrait", + "portrait:hd": "Units\\Creeps\\StormreaverNecrolyte\\StormreaverNecrolyte_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "70", + "projectileVisOffsetX:hd": "20", + "projectileVisOffsetY:hd": "90", + "addon": "Units" + }, + "nsrv": { + "unitID": "nsrv", + "sort": "n2", + "comment(s)": "revenant of the seas", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsrv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "revenantoftheseas", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsrv", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "undead", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 900, + "realHP": 900, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsrv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsrv", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSeasRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "skinnableID": "nsrv", + "file:hd": "Units\\Creeps\\RevenantOfTheSeas\\RevenantOfTheSeas", + "file:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "2", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.75", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves_portrait", + "portrait:hd": "Units\\Creeps\\RevenantOfTheSeas\\RevenantOfTheSeas_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsrw": { + "unitID": "nsrw", + "sort": "n2", + "comment(s)": "stormreaver warlock", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsrw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stormreaverwarlock", + "unitClass": "stormreaverorc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsrw", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsrw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward,air", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 8, + "dmgplus1": 73, + "dmgUp1": "-", + "mindmg1": 75, + "avgdmg1": 82, + "maxdmg1": 89, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 45.5555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsrw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmo,ACad", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlock.blp", + "skinType": "unit", + "abilSkinList": "ACmo,ACad", + "skinnableID": "nsrw", + "file": "units\\creeps\\OrcWarlock\\OrcWarlock", + "unitSound": "ShamanX", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nssp": { + "unitID": "nssp", + "sort": "n2", + "comment(s)": "spitting spider", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nssp", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spittingspider", + "unitClass": "giantspider", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nssp", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 235, + "lumbercost": 30, + "goldRep": 235, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 220, + "HP": 350, + "realHP": 350, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nssp", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 24, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 28.5, + "maxdmg1": 32, + "dmgpt1": 0.4, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 15.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nssp", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACvs", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissileSmall\\ChimaeraAcidMissileSmall.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiderBlue.blp", + "skinType": "unit", + "abilSkinList": "ACvs", + "skinnableID": "nssp", + "file": "units\\creeps\\SpiderBlue\\SpiderBlue", + "unitSound": "Spider", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "114", + "run:sd": "300", + "run:hd": "188", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.45", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "nsth": { + "unitID": "nsth", + "sort": "n2", + "comment(s)": "satyr hellcaller", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsth", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "satyrhellcaller", + "unitClass": "satyr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsth", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1100, + "realHP": 1100, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsth", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 52, + "maxdmg1": 55, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 38.5185185185185, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsth", + "sortAbil": "n2", + "auto": "Ablo", + "abilList": "ACbl,ACua,ACad", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSatyrHellcaller.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSatyr.blp", + "skinType": "unit", + "abilSkinList": "ACbl,ACua,ACad", + "skinnableID": "nsth", + "file": "units\\creeps\\satyrhellcaller\\satyrhellcaller", + "portrait:sd": "units\\creeps\\satyrhellcaller\\satyrhellcaller", + "portrait:hd": "units\\creeps\\satyrhellcaller\\satyrhellcaller_portrait", + "unitSound": "Satyr", + "blend": "0.15", + "scale:hd": "1.35", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "500", + "walk:hd": "320", + "run:sd": "500", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.07", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nstl": { + "unitID": "nstl", + "sort": "n2", + "comment(s)": "satyr soulstealer", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nstl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "satyrsoulstealer", + "unitClass": "satyr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nstl", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nstl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nstl", + "sortAbil": "n2", + "auto": "Arai", + "abilList": "Ambd,ACrd", + "Buttonpos": "2,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSatyrSoulstealer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSatyr.blp", + "skinType": "unit", + "abilSkinList": "Ambd,ACrd", + "skinnableID": "nstl", + "file:hd": "Units\\Creeps\\SatyrSoulstealer\\SatyrSoulstealer", + "file:sd": "units\\creeps\\Satyr\\Satyr", + "portrait:sd": "units\\creeps\\Satyr\\Satyr", + "portrait:hd": "Units\\Creeps\\SatyrSoulstealer\\SatyrSoulstealer_portrait", + "unitSound": "Satyr", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.8", + "legacyModelScale": "1.8", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "130", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nsts": { + "unitID": "nsts", + "sort": "n2", + "comment(s)": "satyr shadowdancer", + "race": "creeps", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsts", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "satyrshadowdancer", + "unitClass": "satyr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsts", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 20, + "goldRep": 190, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nsts", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsts", + "sortAbil": "n2", + "auto": "Acrs", + "abilList": "ACcs,Ashm", + "Buttonpos": "3,0", + "Missileart": "Abilities\\Weapons\\BlackKeeperMissile\\BlackKeeperMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSatyrShadowdancer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSatyrTrickster.blp", + "skinType": "unit", + "abilSkinList": "ACcs,Ashm", + "skinnableID": "nsts", + "file:hd": "Units\\Creeps\\SatyrShadowdancer\\SatyrShadowdancer", + "file:sd": "units\\creeps\\SatyrTrickster\\SatyrTrickster", + "portrait:sd": "units\\creeps\\SatyrTrickster\\SatyrTrickster", + "portrait:hd": "Units\\Creeps\\SatyrShadowdancer\\SatyrShadowdancer_portrait", + "unitSound:hd": "FemaleSatyre", + "unitSound:sd": "Satyr", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.6", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "180", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "nstw": { + "unitID": "nstw", + "sort": "n2", + "comment(s)": "storm wyrm", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nstw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "stormwyrm", + "unitClass": "lightninglizard", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nstw", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 1.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B,A,C,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nstw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 46, + "avgdmg1": 50.5, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 40, + "DPS": 28.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nstw", + "sortAbil": "n2", + "auto": "_", + "abilList": "Alit,ACls,ACcl,Advc,ACdv", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNStormWyrm.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNThunderLizard.blp", + "skinType": "unit", + "abilSkinList": "Alit,ACls,ACcl,Advc,ACdv", + "skinnableID": "nstw", + "file:hd": "Units\\Creeps\\StormWyrm\\StormWyrm", + "file:sd": "units\\creeps\\ThunderLizard\\ThunderLizard", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "4.2", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "81", + "run:sd": "240", + "run:hd": "296", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "310", + "shadowH": "280", + "shadowX": "120", + "shadowY": "120", + "portrait:sd": "units\\creeps\\ThunderLizard\\ThunderLizard_portrait", + "portrait:hd": "Units\\Creeps\\StormWyrm\\StormWyrm_portrait", + "impactSwimZ": "0", + "impactZ": "140", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "launchZ:hd": "30", + "projectileVisOffsetY:hd": "70", + "addon": "Units" + }, + "nsty": { + "unitID": "nsty", + "sort": "n2", + "comment(s)": "satyr", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsty", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "satyr", + "unitClass": "satyr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsty", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nsty", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsty", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSatyr.blp", + "skinType": "unit", + "skinnableID": "nsty", + "file": "units\\creeps\\Satyr\\Satyr", + "portrait:sd": "units\\creeps\\Satyr\\Satyr", + "portrait:hd": "units\\creeps\\Satyr\\Satyr_portrait", + "unitSound": "Satyr", + "blend": "0.15", + "scale:hd": "1.1", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nthl": { + "unitID": "nthl", + "sort": "n2", + "comment(s)": "thunder lizard", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nthl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "thunderlizard", + "unitClass": "lightninglizard", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nthl", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 150, + "goldRep": 365, + "lumberRep": 150, + "fmade": " - ", + "fused": 6, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B,A,C,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nthl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 30.5, + "maxdmg1": 34, + "dmgpt1": 0.5, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 16.9444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nthl", + "sortAbil": "n2", + "auto": "_", + "abilList": "Alit,ACt2", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThunderLizard.blp", + "skinType": "unit", + "abilSkinList": "Alit,ACt2", + "skinnableID": "nthl", + "file": "units\\creeps\\ThunderLizard\\ThunderLizard", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "3.5", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "81", + "run:sd": "240", + "run:hd": "228", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "launchZ:hd": "15", + "projectileVisOffsetY:hd": "60", + "addon": "Units" + }, + "ntka": { + "unitID": "ntka", + "sort": "n2", + "comment(s)": "tuskarr spearman", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntka", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tuskarrspearman", + "unitClass": "tuskarr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntka", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ntka", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntka", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Missileart": "abilities\\weapons\\TuskarSpear\\TuskarSpear.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTuskaarGold.blp", + "skinType": "unit", + "skinnableID": "ntka", + "file": "Units\\Creeps\\tuskarRanged\\tuskarRanged", + "unitSound": "Tuskarr", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "71", + "projectileVisOffsetX:hd": "14", + "addon": "Units" + }, + "ntkc": { + "unitID": "ntkc", + "sort": "n2", + "comment(s)": "tuskarr chieftain", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntkc", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tuskarrchieftain", + "unitClass": "tuskarr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntkc", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": "-", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ntkc", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 43, + "dmgUp1": "-", + "mindmg1": 44, + "avgdmg1": 46.5, + "maxdmg1": 49, + "dmgpt1": 0.36, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 34.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntkc", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACac", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTuskaarBlack.blp", + "skinType": "unit", + "abilSkinList": "ACac", + "skinnableID": "ntkc", + "file:hd": "Units\\Creeps\\TuskarChieftain\\TuskarChieftain", + "file:sd": "Units\\Creeps\\tuskarLord\\tuskarLord", + "unitSound": "Tuskarr", + "blend": "0.15", + "scale:hd": "1.8", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\tuskarLord\\tuskarLord_portrait", + "portrait:hd": "Units\\Creeps\\TuskarChieftain\\TuskarChieftain_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntkf": { + "unitID": "ntkf", + "sort": "n2", + "comment(s)": "tuskarr fighter", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntkf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tuskarrfighter", + "unitClass": "tuskarr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntkf", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 170, + "lumbercost": 0, + "goldRep": 170, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 250, + "realHP": 250, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ntkf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.36, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntkf", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTuskaarBrown.blp", + "skinType": "unit", + "skinnableID": "ntkf", + "file": "Units\\Creeps\\tuskar\\tuskar", + "unitSound": "Tuskarr", + "blend": "0.15", + "scale": "1.35", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntkh": { + "unitID": "ntkh", + "sort": "n2", + "comment(s)": "tuskarr healer", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntkh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tuskarrhealer", + "unitClass": "tuskarr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntkh", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 10, + "goldRep": 215, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 120, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ntkh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 125, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.36, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntkh", + "sortAbil": "n2", + "auto": "Anhe", + "abilList": "ACdm,Anh1", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\PriestMissile\\PriestMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarBrownHealer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarBrown.blp", + "skinType": "unit", + "abilSkinList": "ACdm,Anh1", + "skinnableID": "ntkh", + "file:hd": "Units\\Creeps\\TuskarHealer\\TuskarHealer", + "file:sd": "Units\\Creeps\\tuskarLord\\tuskarLord", + "unitSound": "Tuskarr", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "190", + "blue:hd": "255", + "blue:sd": "95", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\tuskarLord\\tuskarLord_portrait", + "portrait:hd": "Units\\Creeps\\TuskarHealer\\TuskarHealer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntks": { + "unitID": "ntks", + "sort": "n2", + "comment(s)": "tuskarr sorceror", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntks", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tuskarrsorceror", + "unitClass": "tuskarr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntks", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 195, + "lumbercost": 10, + "goldRep": 195, + "lumberRep": 10, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 475, + "realHP": 475, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ntks", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.67, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 37, + "maxdmg1": 40, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 20.5555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntks", + "sortAbil": "n2", + "auto": "Ainf", + "abilList": "ACif", + "Buttonpos": "0,0", + "Missileart": "abilities\\weapons\\TuskarSpear\\TuskarSpear.mdl", + "Missileart:hd": "abilities\\weapons\\TuskarSorcererMissile\\TuskarSorcererMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarSorcerer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarBrown.blp", + "skinType": "unit", + "abilSkinList": "ACif", + "skinnableID": "ntks", + "file:hd": "Units\\Creeps\\TuskarSorcerer\\TuskarSorcerer", + "file:sd": "Units\\Creeps\\tuskarRanged\\tuskarRanged", + "unitSound": "Tuskarr", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1.66", + "legacyScale": "1.66", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "225", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\tuskarRanged\\tuskarRanged_portrait", + "portrait:hd": "Units\\Creeps\\TuskarSorcerer\\TuskarSorcerer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntkt": { + "unitID": "ntkt", + "sort": "n2", + "comment(s)": "tuskarr trapper", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntkt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tuskarrtrapper", + "unitClass": "tuskarr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntkt", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 280, + "lumbercost": 40, + "goldRep": 280, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 135, + "HP": 475, + "realHP": 475, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ntkt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 31, + "maxdmg1": 34, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 19.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntkt", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Buttonpos": "1,0", + "Missileart": "abilities\\weapons\\TuskarSpear\\TuskarSpear.mdl", + "Missileart:hd": "abilities\\weapons\\TuskarSpear\\TuskarTrapperSpear.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarTrapper.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarGold.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "ntkt", + "file:hd": "Units\\Creeps\\TuskarTrapper\\TuskarTrapper", + "file:sd": "Units\\Creeps\\tuskarRanged\\tuskarRanged", + "unitSound": "Tuskarr", + "blend": "0.15", + "scale": "1.66", + "legacyScale": "1.66", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "190", + "blue:hd": "255", + "blue:sd": "95", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\tuskarRanged\\tuskarRanged_portrait", + "portrait:hd": "Units\\Creeps\\TuskarTrapper\\TuskarTrapper_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "105", + "projectileVisOffsetX:hd": "-55", + "projectileVisOffsetY:hd": "30", + "addon": "Units" + }, + "ntkw": { + "unitID": "ntkw", + "sort": "n2", + "comment(s)": "tuskarr warrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntkw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tuskarrwarrior", + "unitClass": "tuskarr", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntkw", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 475, + "realHP": 475, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ntkw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.36, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 17.037037037037, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntkw", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarWarrior.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTuskaarBrown.blp", + "skinType": "unit", + "skinnableID": "ntkw", + "file": "Units\\Creeps\\tuskarLord\\tuskarLord", + "unitSound": "Tuskarr", + "blend": "0.15", + "scale": "1.66", + "legacyScale": "1.66", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "300", + "run:sd": "250", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "190", + "blue:hd": "255", + "blue:sd": "95", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntor": { + "unitID": "ntor", + "sort": "n2", + "comment(s)": "tornado", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntor", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tornado", + "special": "1", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntor", + "sortBalance": "n2", + "sort2": "sum", + "level": 4, + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 210, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 150, + "minSpd": 150, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ntor", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntor", + "sortAbil": "n2", + "auto": "_", + "abilList": "Atdg,Atsp,Aasl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "skinType": "unit", + "abilSkinList": "Atdg,Atsp,Atwa,Aasl", + "skinnableID": "ntor", + "file": "Abilities\\Spells\\Other\\Tornado\\TornadoElemental", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "60", + "walk:hd": "75", + "run:sd": "60", + "run:hd": "75", + "selZ": "0", + "armor": "Ethereal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "portrait:sd": "Abilities\\Spells\\Other\\Tornado\\TornadoElemental", + "portrait:hd": "Abilities\\Spells\\Other\\Tornado\\TornadoElemental_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntrd": { + "unitID": "ntrd", + "sort": "n2", + "comment(s)": "dragon turtle", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntrd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dragonturtle", + "unitClass": "turtle", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ntrd", + "sortBalance": "n2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 745, + "lumbercost": 200, + "goldRep": 745, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 510, + "stockStart": 440, + "HP": 2000, + "realHP": 2000, + "regenHP": 0.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 64, + "stockInitial": 1, + "unitWeaponID": "ntrd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 19, + "dmgplus1": 64, + "dmgUp1": "-", + "mindmg1": 65, + "avgdmg1": 74, + "maxdmg1": 83, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": 30, + "Harea1": 70, + "Qarea1": 100, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 73, + "DPS": 54.8148148148148, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntrd", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACc2,ACdv,Advc,ANt2", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleRed.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ACc2,ACdv,Advc,ANt2", + "skinnableID": "ntrd", + "file": "Units\\Creeps\\DragonSeaTurtle\\DragonSeaTurtle", + "unitSound": "GiantSeaTurtle", + "blend": "0.15", + "scale:hd": "5", + "scale:sd": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "25", + "elevRad": "150", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "310", + "shadowH": "280", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntrg": { + "unitID": "ntrg", + "sort": "n2", + "comment(s)": "gargantuan sea turtle", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntrg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gargantuanseaturtle", + "unitClass": "turtle", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ntrg", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 1250, + "realHP": 1250, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ntrg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 42.5, + "maxdmg1": 46, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 31.4814814814815, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntrg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANth", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleGreenGargantuan.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleGreen.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ANth", + "skinnableID": "ntrg", + "file": "Units\\Creeps\\GiantSeaTurtle\\GiantSeaTurtle", + "unitSound": "GiantSeaTurtle", + "blend": "0.15", + "scale:hd": "4.05", + "scale:sd": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "25", + "elevRad": "120", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "210", + "shadowH": "210", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntrh": { + "unitID": "ntrh", + "sort": "n2", + "comment(s)": "sea turtle hatchling", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntrh", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seaturtlehatchling", + "unitClass": "turtle", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ntrh", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 220, + "realHP": 220, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ntrh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward,air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 8.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntrh", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANth", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\WaterElementalMissile\\WaterElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleGreenHatchling.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleGreen.blp", + "elevPts": "4", + "file": "Units\\Creeps\\SeaTurtleRange\\SeaTurtleRange", + "unitSound": "GiantSeaTurtle", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "0.4", + "legacyModelScale": "0.4", + "red:hd": "255", + "red:sd": "192", + "green:hd": "255", + "green:sd": "192", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "30", + "launchSwimZ": "-15", + "showUI1": "1", + "showUI2": "1", + "launchZ": "10", + "projectileVisOffsetY:hd": "25", + "addon": "Units" + }, + "ntrs": { + "unitID": "ntrs", + "sort": "n2", + "comment(s)": "sea turtle", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntrs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seaturtle", + "unitClass": "turtle", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ntrs", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 250, + "realHP": 250, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ntrs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 5, + "dmgUp1": "-", + "mindmg1": 6, + "avgdmg1": 8, + "maxdmg1": 10, + "dmgpt1": 0.66, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 5.92592592592593, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntrs", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANth", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleGreen.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ANth", + "skinnableID": "ntrs", + "file": "Units\\Creeps\\SeaTurtle\\SeaTurtle", + "unitSound": "GiantSeaTurtle", + "blend": "0.15", + "scale:hd": "2.4", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "25", + "elevRad": "60", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "0.5", + "legacyModelScale": "0.5", + "red:hd": "255", + "red:sd": "180", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "192", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "impactZ:hd": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntrt": { + "unitID": "ntrt", + "sort": "n2", + "comment(s)": "giant sea turtle", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntrt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "giantseaturtle", + "unitClass": "turtle", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ntrt", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 295, + "lumbercost": 35, + "goldRep": 295, + "lumberRep": 35, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 60, + "HP": 375, + "realHP": 375, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ntrt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward,air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 20.3125, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntrt", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANth", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\WaterElementalMissile\\WaterElementalMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1300", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleGreenGiant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSeaTurtleGreen.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ANth", + "skinnableID": "ntrt", + "file": "Units\\Creeps\\GiantSeaTurtleRange\\GiantSeaTurtleRange", + "unitSound": "GiantSeaTurtle", + "blend": "0.15", + "scale:hd": "3.5", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "100", + "walk:hd": "270", + "run:sd": "100", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.75", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "192", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "100", + "impactZ:hd": "70", + "launchSwimZ": "-40", + "showUI1": "1", + "showUI2": "1", + "launchZ": "25", + "projectileVisOffsetY:hd": "20", + "addon": "Units" + }, + "ntrv": { + "unitID": "ntrv", + "sort": "n2", + "comment(s)": "revenant of the tides", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 9.2, + "canSleep": 1, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntrv", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "revenantofthetides", + "unitClass": "revenant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntrv", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 375, + "realHP": 375, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ntrv", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.6, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntrv", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTidesRevenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "skinnableID": "ntrv", + "file:hd": "Units\\Creeps\\RevenantOfTheTides\\RevenantOfTheTides", + "file:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves", + "unitSound": "Revenant", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.55", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\RevenantOfTheWaves\\RevenantOfTheWaves_portrait", + "portrait:hd": "Units\\Creeps\\RevenantOfTheTides\\RevenantOfTheTides_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ntws": { + "unitID": "ntws", + "sort": "n2", + "comment(s)": "watery minion tidewarrior", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.67, + "canSleep": 1, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntws", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wateryminiontidewarrior", + "unitClass": "wateryminion", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ntws", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ntws", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntws", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonSmallDeathExplode\\DemonSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWateryMinionLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "skinType": "unit", + "skinnableID": "ntws", + "file:hd": "Units\\Creeps\\WateryMinionLvl2\\WateryMinionLvl2", + "file:sd": "Units\\Creeps\\MurgulTideWarrior\\MurgulTideWarrior", + "unitSound": "murloc", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.7", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "Units\\Creeps\\MurgulTideWarrior\\MurgulTideWarrior_portrait", + "portrait:hd": "Units\\Creeps\\WateryMinionLvl2\\WateryMinionLvl2_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nubk": { + "unitID": "nubk", + "sort": "n2", + "comment(s)": "unbroken darkhunter", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.57, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nubk", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "unbrokendarkhunter", + "unitClass": "unbroken", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nubk", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 250, + "realHP": 250, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nubk", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nubk", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnbroken.blp", + "skinType": "unit", + "skinnableID": "nubk", + "file:hd": "Units\\Creeps\\UnbrokenDarkhunter\\UnbrokenDarkhunter", + "file:sd": "Units\\Creeps\\Unbroken\\Unbroken", + "unitSound": "Unbroken", + "blend": "0.15", + "scale:hd": "1.35", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "480", + "walk:hd": "300", + "run:sd": "480", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "0.55", + "legacyModelScale": "0.55", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Unbroken\\Unbroken_portrait", + "portrait:hd": "Units\\Creeps\\UnbrokenDarkhunter\\UnbrokenDarkhunter_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nubr": { + "unitID": "nubr", + "sort": "n2", + "comment(s)": "unbroken rager", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.57, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nubr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "unbrokenrager", + "unitClass": "unbroken", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nubr", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 475, + "realHP": 475, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nubr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 17.037037037037, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nubr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNUnbrokenRager.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNUnbroken.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "nubr", + "file:hd": "Units\\Creeps\\Unbroken\\Unbroken", + "file:sd": "Units\\Creeps\\Unbroken\\Unbroken", + "unitSound": "Unbroken", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "480", + "walk:hd": "300", + "run:sd": "480", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "0.65", + "legacyModelScale": "0.65", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nubw": { + "unitID": "nubw", + "sort": "n2", + "comment(s)": "unbroken darkweaver", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.57, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nubw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "unbrokendarkweaver", + "unitClass": "unbroken", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nubw", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nubw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 23, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nubw", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACuf", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNUnbrokenDarkweaver.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNUnbroken.blp", + "skinType": "unit", + "abilSkinList": "ACuf", + "skinnableID": "nubw", + "file:hd": "Units\\Creeps\\UnbrokenDarkweaver\\UnbrokenDarkweaver", + "file:sd": "Units\\Creeps\\Unbroken\\Unbroken", + "unitSound": "Unbroken", + "blend": "0.15", + "scale:hd": "1.7", + "scale:sd": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "480", + "walk:hd": "300", + "run:sd": "480", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\Unbroken\\Unbroken_portrait", + "portrait:hd": "Units\\Creeps\\UnbrokenDarkweaver\\UnbrokenDarkweaver_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nvde": { + "unitID": "nvde", + "sort": "n2", + "comment(s)": "elder voidwalker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 30, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nvde", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "eldervoidwalker", + "unitClass": "voidwalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvde", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 4, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nvde", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 67, + "dmgUp1": "-", + "mindmg1": 68, + "avgdmg1": 71.5, + "maxdmg1": 75, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 52.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvde", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACfl,ACde", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\VoidWalkerMissile\\VoidWalkerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElderVoidWalker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNVoidWalker.blp", + "skinType": "unit", + "abilSkinList": "ACfl,ACde", + "skinnableID": "nvde", + "file:hd": "Units\\Creeps\\ElderVoidWalker\\ElderVoidWalker", + "file:sd": "units\\creeps\\VoidWalker\\VoidWalker", + "unitSound": "ObsidianDestroyer", + "blend": "0.3", + "scale:hd": "1.65", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.8", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "50", + "blue:hd": "255", + "blue:sd": "50", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\creeps\\VoidWalker\\VoidWalker_portrait", + "portrait:hd": "Units\\Creeps\\ElderVoidWalker\\ElderVoidWalker_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "100", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nvdg": { + "unitID": "nvdg", + "sort": "n2", + "comment(s)": "greater voidwalker", + "race": "creeps", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 30, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nvdg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "greatervoidwalker", + "unitClass": "voidwalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvdg", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 300, + "lumbercost": 45, + "goldRep": 300, + "lumberRep": 45, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 1, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nvdg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 39.5, + "maxdmg1": 43, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 24.6875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvdg", + "sortAbil": "n2", + "auto": "AUfu", + "abilList": "ACf2,ACcl", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\VoidWalkerMissile\\VoidWalkerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGreaterVoidWalker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNVoidWalker.blp", + "skinType": "unit", + "abilSkinList": "ACf2,ACcl", + "skinnableID": "nvdg", + "file:hd": "Units\\Creeps\\GreaterVoidWalker\\GreaterVoidWalker", + "file:sd": "units\\creeps\\VoidWalker\\VoidWalker", + "unitSound": "ObsidianDestroyer", + "blend": "0.3", + "scale:hd": "1.5", + "scale:sd": "1.3", + "legacyScale": "1.3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.85", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "80", + "green:hd": "255", + "green:sd": "80", + "blue:hd": "255", + "blue:sd": "80", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\VoidWalker\\VoidWalker_portrait", + "portrait:hd": "Units\\Creeps\\GreaterVoidWalker\\GreaterVoidWalker_portrait", + "impactSwimZ": "0", + "impactZ": "90", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "80", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nvdl": { + "unitID": "nvdl", + "sort": "n2", + "comment(s)": "lesser voidwalker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 30, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nvdl", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lesservoidwalker", + "unitClass": "voidwalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvdl", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nvdl", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 13, + "avgdmg1": 14, + "maxdmg1": 15, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 15, + "DPS": 8.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvdl", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\VoidWalkerMissile\\VoidWalkerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLesserVoidWalker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNVoidWalker.blp", + "skinType": "unit", + "skinnableID": "nvdl", + "file:hd": "Units\\Creeps\\LesserVoidWalker\\LesserVoidWalker", + "file:sd": "units\\creeps\\VoidWalker\\VoidWalker", + "unitSound": "ObsidianDestroyer", + "blend": "0.3", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.65", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\VoidWalker\\VoidWalker_portrait", + "portrait:hd": "Units\\Creeps\\LesserVoidWalker\\LesserVoidWalker_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "2", + "projectileVisOffsetY:hd": "20", + "addon": "Units" + }, + "nvdw": { + "unitID": "nvdw", + "sort": "n2", + "comment(s)": "voidwalker", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 30, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nvdw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "voidwalker", + "unitClass": "voidwalker", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvdw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 245, + "lumbercost": 30, + "goldRep": 245, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 365, + "realHP": 365, + "regenHP": 1, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 200, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nvdw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 15.625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvdw", + "sortAbil": "n2", + "auto": "AHca", + "abilList": "ACcw", + "Buttonpos": "2,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\VoidWalkerMissile\\VoidWalkerMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVoidWalker.blp", + "skinType": "unit", + "abilSkinList": "ACcw", + "skinnableID": "nvdw", + "file": "units\\creeps\\VoidWalker\\VoidWalker", + "unitSound": "ObsidianDestroyer", + "blend": "0.3", + "scale:hd": "1.35", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.85", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "50", + "green:hd": "255", + "green:sd": "50", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "130", + "shadowH": "130", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "70", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "100", + "addon": "Units" + }, + "nwen": { + "unitID": "nwen", + "sort": "n2", + "comment(s)": "Wendigo", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwen", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wendigo1", + "unitClass": "wendigo", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwen", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwen", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwen", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWendigo.blp", + "skinType": "unit", + "skinnableID": "nwen", + "file": "units\\creeps\\Wendigo\\Wendigo", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwgs": { + "unitID": "nwgs", + "sort": "n2", + "comment(s)": "naga coutl", + "race": "naga", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.1, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nwgs", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nagacoutl", + "unitClass": "naga", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwgs", + "sortBalance": "n2", + "sort2": "zzn", + "level": 2, + "type": "_", + "goldcost": 235, + "lumbercost": 30, + "goldRep": 235, + "lumberRep": 30, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 110, + "stockStart": 0, + "HP": 525, + "realHP": 525, + "regenHP": 1, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 50, + "regenMana": 0.5, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rguv,Rnam,Rnat,Rnsi", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 8, + "stockInitial": 1, + "unitWeaponID": "nwgs", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 450, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 42, + "avgdmg1": 46, + "maxdmg1": 50, + "dmgpt1": 0.33, + "backSw1": 1, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 25.5555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwgs", + "sortAbil": "n2", + "auto": "Aadm", + "abilList": "Andm", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\WingedSerpentMissile\\WingedSerpentMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWindSerpent.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Andm", + "skinnableID": "nwgs", + "file": "units\\naga\\WindSerpent\\WindSerpent", + "unitSound": "WingedSerpent", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.7", + "legacyModelScale": "0.7", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "20", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "51", + "addon": "Units" + }, + "nwiz": { + "unitID": "nwiz", + "sort": "n2", + "comment(s)": "wizard", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwiz", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "apprenticewizard", + "unitClass": "mage", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwiz", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 105, + "lumbercost": 0, + "goldRep": 105, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 200, + "realHP": 200, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nwiz", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 10.5, + "maxdmg1": 12, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 5.83333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwiz", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\PriestMissile\\PriestMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNApprenticeWizard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "skinnableID": "nwiz", + "file": "units\\creeps\\HumanMage\\HumanMage", + "unitSound": "ElfWizard", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "185", + "walk:hd": "270", + "run:sd": "185", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.92", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "60", + "impactZ:hd": "65", + "projectileVisOffsetX:hd": "-20", + "projectileVisOffsetY:hd": "5", + "addon": "Units" + }, + "nwld": { + "unitID": "nwld", + "sort": "n2", + "comment(s)": "dire wolf", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwld", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "direwolf", + "unitClass": "wolf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwld", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwld", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwld", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACct,ACro", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDireWolf.blp", + "skinType": "unit", + "abilSkinList": "ACct,ACro", + "skinnableID": "nwld", + "file": "units\\creeps\\DireWolf\\DireWolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "1.3", + "legacyScale": "1.3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwlg": { + "unitID": "nwlg", + "sort": "n2", + "comment(s)": "giant wolf", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwlg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "giantwolf", + "unitClass": "wolf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwlg", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 215, + "lumbercost": 0, + "goldRep": 215, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 47, + "stockInitial": 1, + "unitWeaponID": "nwlg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwlg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACct", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGiantWolf.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTimberWolf.blp", + "skinType": "unit", + "abilSkinList": "ACct", + "skinnableID": "nwlg", + "file:hd": "Units\\Creeps\\GiantWolf\\GiantWolf", + "file:sd": "units\\creeps\\TimberWolf\\TimberWolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "2.8", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\TimberWolf\\TimberWolf_portrait", + "portrait:hd": "Units\\Creeps\\GiantWolf\\GiantWolf_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwlt": { + "unitID": "nwlt", + "sort": "n2", + "comment(s)": "timber wolf", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwlt", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "timberwolf", + "unitClass": "wolf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwlt", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nwlt", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwlt", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTimberWolf.blp", + "skinType": "unit", + "skinnableID": "nwlt", + "file": "units\\creeps\\TimberWolf\\TimberWolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "0.75", + "legacyModelScale": "0.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwna": { + "unitID": "nwna", + "sort": "n2", + "comment(s)": "ancient wendigo", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwna", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ancientwendigo", + "unitClass": "wendigo", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwna", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1200, + "realHP": 1200, + "regenHP": 1.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwna", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 64.5, + "maxdmg1": 68, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 47.7777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwna", + "sortAbil": "n2", + "auto": "_", + "abilList": "Awrs,ACbh,ACrn", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWendigoAncient.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNWendigo.blp", + "skinType": "unit", + "abilSkinList": "Awrs,ACbh,ACrn", + "skinnableID": "nwna", + "file:hd": "Units\\Creeps\\AncientWendigo\\AncientWendigo", + "file:sd": "units\\creeps\\Wendigo\\Wendigo", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "2.3", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "220", + "walk:hd": "320", + "run:sd": "220", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.93", + "modelScale:sd": "1.65", + "legacyModelScale": "1.65", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\Wendigo\\Wendigo_portrait", + "portrait:hd": "Units\\Creeps\\AncientWendigo\\AncientWendigo_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwnr": { + "unitID": "nwnr", + "sort": "n2", + "comment(s)": "elder wendigo", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwnr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elderwendigo", + "unitClass": "wendigo", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwnr", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwnr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwnr", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbh", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWendigoElder.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNWendigo.blp", + "skinType": "unit", + "abilSkinList": "ACbh", + "skinnableID": "nwnr", + "file:hd": "Units\\Creeps\\ElderWendigo\\ElderWendigo", + "file:sd": "units\\creeps\\Wendigo\\Wendigo", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "1.8", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "220", + "walk:hd": "320", + "run:sd": "220", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Wendigo\\Wendigo_portrait", + "portrait:hd": "Units\\Creeps\\ElderWendigo\\ElderWendigo_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwns": { + "unitID": "nwns", + "sort": "n2", + "comment(s)": "wendigo shaman", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwns", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wendigoshaman", + "unitClass": "wendigo", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwns", + "sortBalance": "n2", + "sort2": "zz", + "level": 7, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 6, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 360, + "stockStart": 440, + "HP": 950, + "realHP": 950, + "regenHP": 0.5, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwns", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwns", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACrj,ACro", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWendigoShaman.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNWendigo.blp", + "skinType": "unit", + "abilSkinList": "ACrj,ACro", + "skinnableID": "nwns", + "file": "units\\creeps\\WendigoShaman\\WendigoShaman", + "unitSound": "Wendigo", + "blend": "0.15", + "scale:hd": "1.6", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "130", + "green:hd": "255", + "green:sd": "160", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwrg": { + "unitID": "nwrg", + "sort": "n2", + "comment(s)": "war golem", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwrg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wargolem", + "unitClass": "golemb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwrg", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 1000, + "realHP": 1000, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwrg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwrg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWarGolem.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNArmorGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi", + "skinnableID": "nwrg", + "file:hd": "Units\\Creeps\\WarGolem\\WarGolem", + "file:sd": "units\\creeps\\GolemStatue\\GolemStatue", + "portrait:sd": "units\\creeps\\GolemStatue\\GolemStatue", + "portrait:hd": "Units\\Creeps\\WarGolem\\WarGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale:hd": "2.9", + "scale:sd": "1.9", + "legacyScale": "1.9", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.95", + "modelScale:sd": "1.25", + "legacyModelScale": "1.25", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nws1": { + "unitID": "nws1", + "sort": "n2", + "comment(s)": "dragon hawk", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2.1, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nws1", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "windserpent", + "unitClass": "windserpent", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nws1", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 350, + "lumbercost": 70, + "goldRep": 350, + "lumberRep": 70, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 700, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1600, + "nsight": 900, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhla", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nws1", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.03, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 45.5, + "maxdmg1": 50, + "dmgpt1": 0.43, + "backSw1": 0.633, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 22.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nws1", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACen", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\DragonHawkMissile\\DragonHawkMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1100", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDragonHawkRider.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDragonHawk.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "nws1", + "file": "units\\creeps\\WindSerpent\\WindSerpent", + "unitSound": "DragonHawk", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "170", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "portrait:sd": "units\\creeps\\WindSerpent\\WindSerpent", + "portrait:hd": "units\\creeps\\WindSerpent\\WindSerpent_portrait", + "impactSwimZ": "0", + "impactZ": "20", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "33", + "addon": "Units" + }, + "nwwd": { + "unitID": "nwwd", + "sort": "n2", + "comment(s)": "white dire wolf", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwwd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "whitedirewolf", + "unitClass": "wolf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwwd", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 750, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwwd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwwd", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACct,ACro", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDireFrostWolf.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTimberWolf.blp", + "skinType": "unit", + "abilSkinList": "ACct,ACro", + "skinnableID": "nwwd", + "file:hd": "Units\\Creeps\\DireFrostWolf\\DireFrostWolf", + "file:sd": "units\\creeps\\WhiteWolf\\WhiteWolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "3.55", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.45", + "modelScale:sd": "1.45", + "legacyModelScale": "1.45", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\creeps\\WhiteWolf\\WhiteWolf_portrait", + "portrait:hd": "Units\\Creeps\\DireFrostWolf\\DireFrostWolf_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwwf": { + "unitID": "nwwf", + "sort": "n2", + "comment(s)": "white wolf", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwwf", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "whitewolf", + "unitClass": "wolf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwwf", + "sortBalance": "n2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 150, + "lumbercost": 10, + "goldRep": 150, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 440, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nwwf", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwwf", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFrostWolf.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTimberWolf.blp", + "skinType": "unit", + "skinnableID": "nwwf", + "file": "units\\creeps\\WhiteWolf\\WhiteWolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "2.5", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwwg": { + "unitID": "nwwg", + "sort": "n2", + "comment(s)": "giant white wolf", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwwg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "giantwhitewolf", + "unitClass": "wolf", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwwg", + "sortBalance": "n2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 30, + "goldRep": 255, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 440, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 47, + "stockInitial": 1, + "unitWeaponID": "nwwg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 14.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwwg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACct", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGiantFrostWolf.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTimberWolf.blp", + "skinType": "unit", + "abilSkinList": "ACct", + "skinnableID": "nwwg", + "file:hd": "Units\\Creeps\\GiantFrostWolf\\GiantFrostWolf", + "file:sd": "units\\creeps\\WhiteWolf\\WhiteWolf", + "unitSound": "SpiritWolf", + "blend": "0.15", + "scale:hd": "2.95", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "120", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\WhiteWolf\\WhiteWolf_portrait", + "portrait:hd": "Units\\Creeps\\GiantFrostWolf\\GiantFrostWolf_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwzd": { + "unitID": "nwzd", + "sort": "n2", + "comment(s)": "dark wizard", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwzd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darkwizard", + "unitClass": "mage", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwzd", + "sortBalance": "n2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 480, + "lumbercost": 120, + "goldRep": 480, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 70, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 410, + "stockStart": 440, + "HP": 1200, + "realHP": 1200, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 500, + "regenMana": 1.25, + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nwzd", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 43, + "maxdmg1": 47, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 37, + "DPS": 23.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwzd", + "sortAbil": "n2", + "auto": "Arai", + "abilList": "ACrd,ACba,ACpy", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDarkWizard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "abilSkinList": "ACrd,ACba,ACpy", + "skinnableID": "nwzd", + "file": "units\\creeps\\BanditMage\\BanditMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale:hd": "2.25", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "120", + "projectileVisOffsetY:hd": "200", + "addon": "Units" + }, + "nwzg": { + "unitID": "nwzg", + "sort": "n2", + "comment(s)": "renegade wizard", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwzg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "renegadewizard", + "unitClass": "mage", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwzg", + "sortBalance": "n2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 320, + "lumbercost": 50, + "goldRep": 320, + "lumberRep": 50, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nwzg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 29, + "dmgUp1": "-", + "mindmg1": 30, + "avgdmg1": 34.5, + "maxdmg1": 39, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 19.1666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwzg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACpu,ACls", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRenegadeWizard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "abilSkinList": "ACpu,ACls", + "skinnableID": "nwzg", + "file:hd": "Units\\Creeps\\RenegadeWizard\\RenegadeWizard", + "file:sd": "units\\creeps\\BanditMage\\BanditMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale:hd": "2", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "270", + "run:sd": "260", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "190", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\creeps\\BanditMage\\BanditMage_portrait", + "portrait:hd": "Units\\Creeps\\RenegadeWizard\\RenegadeWizard_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "75", + "addon": "Units" + }, + "nwzr": { + "unitID": "nwzr", + "sort": "n2", + "comment(s)": "rogue wizard", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwzr", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "roguewizard", + "unitClass": "mage", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwzr", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nwzr", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.8888888888889, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwzr", + "sortAbil": "n2", + "auto": "AUfu", + "abilList": "ACf2", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRogueWizard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "abilSkinList": "ACf2", + "abilSkinList:melee,V0": "ACfu", + "abilSkinList:custom,V0": "ACfu", + "skinnableID": "nwzr", + "file:hd": "Units\\Creeps\\RogueWizard\\RogueWizard", + "file:sd": "units\\creeps\\BanditMage\\BanditMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale:hd": "1.9", + "scale:sd": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "270", + "run:sd": "260", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "170", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\creeps\\BanditMage\\BanditMage_portrait", + "portrait:hd": "Units\\Creeps\\RogueWizard\\RogueWizard_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "launchZ:hd": "95", + "impactZ:hd": "85", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "70", + "addon": "Units" + }, + "nzep": { + "unitID": "nzep", + "sort": "n2", + "comment(s)": "GoblinZeppelin", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nzep", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinzeppelin", + "unitClass": "goblin", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nzep", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 240, + "lumbercost": 60, + "goldRep": 240, + "lumberRep": 60, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 30, + "stockStart": 440, + "HP": 575, + "realHP": 575, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nzep", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nzep", + "sortAbil": "n2", + "auto": "_", + "abilList": "Sch3,Achd,Aloa,Adro", + "Buttonpos": "0,0", + "MovementSoundLabel": "GoblinZeppelinMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinZeppelin.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Sch3,Achd,Aloa,Adro", + "skinnableID": "nzep", + "file": "units\\creeps\\GoblinZeppelin\\GoblinZeppelin", + "unitSound": "GoblinZeppelin", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "230", + "armor": "Wood", + "modelScale:hd": "0.7", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nzom": { + "unitID": "nzom", + "sort": "n2", + "comment(s)": "Zombie", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nzom", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "zombie", + "unitClass": "UUnit16", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nzom", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "undead", + "goldcost": 85, + "lumbercost": 0, + "goldRep": 85, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 50, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nzom", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nzom", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNZombie.blp", + "skinType": "unit", + "skinnableID": "nzom", + "file": "units\\creeps\\Zombie\\Zombie", + "unitSound": "Zombie", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nzof": { + "unitID": "nzof", + "sort": "n2", + "comment(s)": "ZombieFemale", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nzof", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "zombiefemale", + "unitClass": "UUnit16", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nzof", + "sortBalance": "n2", + "sort2": "zz", + "level": 1, + "type": "undead", + "goldcost": 85, + "lumbercost": 0, + "goldRep": 85, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 50, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nzof", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nzof", + "sortAbil": "n2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNZombieFemale.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNZombie.blp", + "skinType": "unit", + "skinnableID": "nzof", + "file:hd": "Units\\Creeps\\ZombieFemale\\ZombieFemale", + "file:sd": "units\\creeps\\Zombie\\Zombie", + "unitSound": "Zombie", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "150", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Zombie\\Zombie_portrait", + "portrait:hd": "Units\\Creeps\\ZombieFemale\\ZombieFemale_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nalb": { + "unitID": "nalb", + "sort": "o2", + "comment(s)": "Albatross", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 0, + "formation": 4, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nalb", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "albatross", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nalb", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nalb", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nalb", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAlbatross.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nalb", + "file": "units\\critters\\Albatross\\Albatross", + "unitSound": "Albatross", + "blend": "0.15", + "scale": "0.8", + "legacyScale": "0.8", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "110", + "walk:hd": "100", + "run:sd": "110", + "run:hd": "100", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "0", + "addon": "Units" + }, + "ncrb": { + "unitID": "ncrb", + "sort": "o2", + "comment(s)": "Crab", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ncrb", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "crab", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncrb", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "ncrb", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncrb", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpinyCrab.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "ncrb", + "file": "units\\critters\\SpiderCrab\\SpiderCrab", + "unitSound": "SpiderCrab", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "20", + "walk": "100", + "run": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "15", + "addon": "Units" + }, + "nder": { + "unitID": "nder", + "sort": "o2", + "comment(s)": "deer", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nder", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "deer", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nder", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,V,Q", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nder", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nder", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStag.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nder", + "file": "units\\critters\\BlackStagMale\\BlackStagMale", + "portrait:sd": "units\\critters\\BlackStagMale\\BlackStagMale", + "portrait:hd": "units\\critters\\BlackStagMale\\BlackStagMale_portrait", + "blend": "0.15", + "scale:hd": "1.2", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "380", + "walk:hd": "190", + "run:sd": "380", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "35", + "addon": "Units" + }, + "ndog": { + "unitID": "ndog", + "sort": "o2", + "comment(s)": "Dog", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndog", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dog", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndog", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "ndog", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndog", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWolf.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "ndog", + "file": "units\\critters\\BrownWolf\\BrownWolf", + "unitSound": "Wolf", + "blend": "0.15", + "scale:hd": "1.15", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "360", + "walk:hd": "190", + "run:sd": "360", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "addon": "Units" + }, + "ndwm": { + "unitID": "ndwm", + "sort": "o2", + "comment(s)": "Dune Worm", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndwm", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "duneworm", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndwm", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "ndwm", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndwm", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDuneWorm.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "ndwm", + "file": "units\\critters\\DuneWorm\\DuneWorm", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "100", + "run:sd": "200", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "addon": "Units" + }, + "nech": { + "unitID": "nech", + "sort": "o2", + "comment(s)": "Chicken", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nech", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chicken", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nech", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,L,F,W,V,Q,X,J,Y", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nech", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nech", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCritterChicken.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nech", + "file": "units\\critters\\EasterChicken\\EasterChicken", + "unitSound": "Chicken", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "20", + "walk": "100", + "run": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "20", + "addon": "Units" + }, + "necr": { + "unitID": "necr", + "sort": "o2", + "comment(s)": "Rabbit", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "necr", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rabbit", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "necr", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,L,F,W,V,Q,X,J,Y", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "necr", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "necr", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCritterRabbit.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "necr", + "file": "units\\critters\\EasterRabbit\\EasterRabbit", + "portrait:sd": "units\\critters\\EasterRabbit\\EasterRabbit", + "portrait:hd": "units\\critters\\EasterRabbit\\EasterRabbit_portrait", + "unitSound": "Rabbit", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "20", + "walk": "100", + "run": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "20", + "addon": "Units" + }, + "nfbr": { + "unitID": "nfbr", + "sort": "o2", + "comment(s)": "Felboar", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfbr", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "felboar", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfbr", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nfbr", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfbr", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelBoar.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nfbr", + "file": "units\\critters\\Felboar\\Felboar", + "unitSound": "QuillBeast", + "blend": "0.15", + "scale:hd": "1", + "scale:sd": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "100", + "run:sd": "200", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "addon": "Units" + }, + "nfro": { + "unitID": "nfro", + "sort": "o2", + "comment(s)": "Frog", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nfro", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "frog", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfro", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,L,F,W,D,Z,G,V,Q,X,J,Y,C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nfro", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfro", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nfro", + "file": "units\\critters\\Frog\\Frog", + "unitSound": "Frog", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "20", + "walk": "100", + "run": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "20", + "addon": "Units" + }, + "nhmc": { + "unitID": "nhmc", + "sort": "o2", + "comment(s)": "Hermit Crab", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nhmc", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "hermitcrab", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhmc", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nhmc", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhmc", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHermitCrab.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nhmc", + "file": "units\\critters\\HermitCrab\\HermitCrab", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "25", + "elevRad": "20", + "walk": "100", + "run": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "25", + "addon": "Units" + }, + "now2": { + "unitID": "now2", + "sort": "o2", + "comment(s)": "owlscout 2", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 0, + "formation": 4, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "now2", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "owl2", + "unitClass": "animal", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "now2", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 40, + "realHP": 40, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1500, + "nsight": 1500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "now2", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.61, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "now2", + "sortAbil": "o2", + "auto": "_", + "abilList": "Avul,ACmi,Adtg", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOwlScoutLV2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNScout.blp", + "skinType": "unit", + "abilSkinList": "Avul,ACmi,Adtg", + "skinnableID": "now2", + "file:hd": "Units\\NightElf\\OwlSCOUT_lvl2\\OwlSCOUT_lvl2", + "file:sd": "units\\nightelf\\OwlSCOUT\\OwlSCOUT", + "unitSound": "SnowOwl", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "300", + "walk:hd": "350", + "run:sd": "300", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "portrait:sd": "units\\nightelf\\OwlSCOUT\\OwlSCOUT", + "portrait:hd": "Units\\NightElf\\OwlSCOUT_lvl2\\OwlSCOUT_lvl2_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "now3": { + "unitID": "now3", + "sort": "o2", + "comment(s)": "owlscout 3", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 0, + "formation": 4, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "now3", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "owl3", + "unitClass": "animal", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "now3", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 40, + "realHP": 40, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 400, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 2200, + "nsight": 2200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "now3", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "now3", + "sortAbil": "o2", + "auto": "_", + "abilList": "Avul,ACmi,Adtg", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOwlScoutLV3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNScout.blp", + "skinType": "unit", + "abilSkinList": "Avul,ACmi,Adtg", + "skinnableID": "now3", + "file:hd": "Units\\NightElf\\OwlSCOUT_lvl3\\OwlSCOUT_lvl3", + "file:sd": "units\\nightelf\\OwlSCOUT\\OwlSCOUT", + "unitSound": "SnowOwl", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "300", + "walk:hd": "400", + "run:sd": "300", + "run:hd": "400", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "portrait:sd": "units\\nightelf\\OwlSCOUT\\OwlSCOUT", + "portrait:hd": "Units\\NightElf\\OwlSCOUT_lvl3\\OwlSCOUT_lvl3_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nowl": { + "unitID": "nowl", + "sort": "o2", + "comment(s)": "owlscout", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 0, + "formation": 4, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nowl", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "owl", + "unitClass": "animal", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nowl", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 40, + "realHP": 40, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 1000, + "nsight": 1000, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nowl", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nowl", + "sortAbil": "o2", + "auto": "_", + "abilList": "Avul,ACmi,Adtg", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNOwlScoutLV1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNScout.blp", + "skinType": "unit", + "abilSkinList": "Avul,ACmi,Adtg", + "skinnableID": "nowl", + "file": "units\\nightelf\\OwlSCOUT\\OwlSCOUT", + "unitSound": "SnowOwl", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk": "300", + "run": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1.25", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "portrait:sd": "units\\nightelf\\OwlSCOUT\\OwlSCOUT", + "portrait:hd": "units\\nightelf\\OwlSCOUT\\OwlSCOUT_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "npig": { + "unitID": "npig", + "sort": "o2", + "comment(s)": "Pig", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "npig", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "pig", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npig", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,B", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "npig", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npig", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPig.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "npig", + "file": "units\\critters\\Pig\\Pig", + "unitSound": "Pig", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "100", + "run:sd": "200", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "30", + "addon": "Units" + }, + "npng": { + "unitID": "npng", + "sort": "o2", + "comment(s)": "Penguin", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "npng", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "penguin", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "npng", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "npng", + "sortWeap": "n1a", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npng", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPenguin.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "npng", + "file": "units\\critters\\Penguin\\Penguin", + "unitSound": "Penguin", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "100", + "run:sd": "200", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "20", + "addon": "Units" + }, + "npnw": { + "unitID": "npnw", + "sort": "o2", + "comment(s)": "Penguin, water", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "npnw", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "waterpenguin", + "unitClass": "animal", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "npnw", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "npnw", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npnw", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Animprops": "swim", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPenguin.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "npnw", + "file": "units\\critters\\Penguin\\Penguin", + "unitSound": "Penguin", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "100", + "run:sd": "200", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "0", + "addon": "Units" + }, + "nrac": { + "unitID": "nrac", + "sort": "o2", + "comment(s)": "Raccoon", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nrac", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "raccoon", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrac", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,L,F,W,V,Q,X,J,Y", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nrac", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrac", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRacoon.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nrac", + "file": "units\\critters\\Raccoon\\Raccoon", + "unitSound": "Raccoon", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "20", + "walk": "100", + "run": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "20", + "addon": "Units" + }, + "nrat": { + "unitID": "nrat", + "sort": "o2", + "comment(s)": "Rat", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nrat", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rat", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nrat", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D,G", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nrat", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nrat", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNYouDirtyRat!.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nrat", + "file": "units\\critters\\Rat\\Rat", + "unitSound": "Rat", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk": "100", + "run": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "15", + "addon": "Units" + }, + "nsea": { + "unitID": "nsea", + "sort": "o2", + "comment(s)": "Seal", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nsea", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seal", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsea", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N,I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nsea", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsea", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeal.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nsea", + "file": "units\\critters\\Seal\\Seal", + "portrait:sd": "units\\critters\\Seal\\Seal", + "portrait:hd": "units\\critters\\Seal\\Seal_portrait", + "unitSound": "Seal", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "100", + "run:sd": "200", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "15", + "addon": "Units" + }, + "nsha": { + "unitID": "nsha", + "sort": "o2", + "comment(s)": "Amph. Sheep", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nsha", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "amphibioussheep", + "unitClass": "animal", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nsha", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nsha", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsha", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "RandomSoundLabel": "SheepRandomSounds", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSheep.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nsha", + "file": "units\\critters\\Sheep\\Sheep", + "unitSound": "Sheep", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "110", + "walk:hd": "100", + "run:sd": "110", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "25", + "addon": "Units" + }, + "nshe": { + "unitID": "nshe", + "sort": "o2", + "comment(s)": "Sheep", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nshe", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sheep", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nshe", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nshe", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nshe", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "RandomSoundLabel": "SheepRandomSounds", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSheep.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nshe", + "file": "units\\critters\\Sheep\\Sheep", + "unitSound": "Sheep", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "110", + "walk:hd": "100", + "run:sd": "110", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "25", + "addon": "Units" + }, + "nshf": { + "unitID": "nshf", + "sort": "o2", + "comment(s)": "Flying Sheep", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 0, + "formation": 4, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nshf", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "flyingsheep", + "unitClass": "animal", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nshf", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "_", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nshf", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nshf", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "RandomSoundLabel": "SheepRandomSounds", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFlyingSheep.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSheep.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nshf", + "file": "units\\critters\\FlyingSheep\\FlyingSheep", + "unitSound": "Sheep", + "blend": "0.15", + "scale": "0.8", + "legacyScale": "0.8", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "110", + "walk:hd": "100", + "run:sd": "110", + "run:hd": "100", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "0", + "addon": "Units" + }, + "nshw": { + "unitID": "nshw", + "sort": "o2", + "comment(s)": "Water Sheep (speccccial sheep)", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nshw", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "watersheep", + "unitClass": "animal", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nshw", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nshw", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nshw", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "RandomSoundLabel": "SheepRandomSounds", + "Animprops": "swim", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSheep.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nshw", + "file": "units\\critters\\Sheep\\Sheep", + "unitSound": "Sheep", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "110", + "walk:hd": "100", + "run:sd": "110", + "run:hd": "100", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "0", + "addon": "Units" + }, + "nskk": { + "unitID": "nskk", + "sort": "o2", + "comment(s)": "Skink", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.66, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nskk", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skink", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nskk", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nskk", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nskk", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkink.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nskk", + "file": "units\\critters\\Skink\\Skink", + "unitSound": "Skink", + "blend": "0.15", + "scale": "0.9", + "legacyScale": "0.9", + "scaleBull": "1", + "maxPitch": "60", + "maxRoll": "60", + "elevRad": "20", + "walk:sd": "100", + "walk:hd": "200", + "run:sd": "100", + "run:hd": "200", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "50", + "shadowH": "50", + "shadowX": "25", + "shadowY": "25", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "15", + "addon": "Units" + }, + "nsno": { + "unitID": "nsno", + "sort": "o2", + "comment(s)": "Snowy Owl", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 0, + "formation": 4, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nsno", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "snowyowl", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nsno", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 100, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nsno", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nsno", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnowOwl.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nsno", + "file": "units\\critters\\SnowOwl\\SnowOwl", + "unitSound": "SnowOwl", + "blend": "0.15", + "scale": "0.8", + "legacyScale": "0.8", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "110", + "walk:hd": "100", + "run:sd": "110", + "run:hd": "100", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "60", + "shadowH": "60", + "shadowX": "30", + "shadowY": "30", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "10", + "addon": "Units" + }, + "nvil": { + "unitID": "nvil", + "sort": "o2", + "comment(s)": "Villager Man", + "race": "commoner", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nvil", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "villagerman", + "unitClass": "animal", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvil", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 60, + "realHP": 60, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nvil", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvil", + "sortAbil": "o2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVillagerMan.blp", + "skinType": "unit", + "skinnableID": "nvil", + "file": "units\\critters\\VillagerMan\\VillagerMan", + "unitSound": "VillagerMan", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "100", + "walk:hd": "190", + "run:sd": "100", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nvk2": { + "unitID": "nvk2", + "sort": "o2", + "comment(s)": "Villager Kid 2", + "race": "commoner", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 6, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nvk2", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "villagerkid2", + "unitClass": "animal", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvk2", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nvk2", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvk2", + "sortAbil": "o2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVillagerKid2.blp", + "skinType": "unit", + "skinnableID": "nvk2", + "file": "units\\critters\\VillagerKid1\\VillagerKid1", + "unitSound": "VillagerKid", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "190", + "run:sd": "150", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nvl2": { + "unitID": "nvl2", + "sort": "o2", + "comment(s)": "Villager Man 2", + "race": "commoner", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nvl2", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "villagerman2", + "unitClass": "animal", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvl2", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 60, + "realHP": 60, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nvl2", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvl2", + "sortAbil": "o2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVillagerMan1.blp", + "skinType": "unit", + "skinnableID": "nvl2", + "file": "units\\critters\\VillagerMan1\\VillagerMan1", + "unitSound": "VillagerMan2", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "100", + "walk:hd": "190", + "run:sd": "100", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.05", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nvlk": { + "unitID": "nvlk", + "sort": "o2", + "comment(s)": "Villager Kid", + "race": "commoner", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 6, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nvlk", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "villagerkid", + "unitClass": "animal", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvlk", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nvlk", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvlk", + "sortAbil": "o2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVillagerKid.blp", + "skinType": "unit", + "skinnableID": "nvlk", + "file": "units\\critters\\VillagerKid\\VillagerKid", + "unitSound": "VillagerKid", + "blend": "0.15", + "scale": "0.75", + "legacyScale": "0.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "190", + "run:sd": "150", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nvlw": { + "unitID": "nvlw", + "sort": "o2", + "comment(s)": "Villager Woman", + "race": "commoner", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 5, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nvlw", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "villagerwoman", + "unitClass": "animal", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvlw", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 60, + "realHP": 60, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nvlw", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvlw", + "sortAbil": "o2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVillagerWoman.blp", + "skinType": "unit", + "skinnableID": "nvlw", + "file": "units\\critters\\VillagerWoman\\VillagerWoman", + "unitSound": "VillagerWoman", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "100", + "walk:hd": "190", + "run:sd": "100", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nvul": { + "unitID": "nvul", + "sort": "o2", + "comment(s)": "Vulture", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 1, + "formation": 4, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nvul", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "vulture", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nvul", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 100, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nvul", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvul", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVulture.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "nvul", + "file": "units\\critters\\Vulture\\Vulture", + "unitSound": "Vulture", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "100", + "run:sd": "200", + "run:hd": "100", + "selZ": "230", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "impactZ:hd": "0", + "addon": "Units" + }, + "ncb0": { + "unitID": "ncb0", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding0-2.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb0", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 0", + "unitClass": "CityBuilding0", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb0", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb0", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb0", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb0", + "file": "buildings\\other\\CityBuildingSmall45_0\\CityBuildingSmall45_0", + "portrait:sd": "buildings\\other\\CityBuildingSmall45_0\\CityBuildingSmall45_0", + "portrait:hd": "buildings\\other\\CityBuildingSmall45_0\\CityBuildingSmall45_0_portrait", + "unitSound": "CityBuilding0", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb1": { + "unitID": "ncb1", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding0-2.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 1", + "unitClass": "CityBuilding1", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb1", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb1", + "file": "buildings\\other\\CityBuildingSmall45_1\\CityBuildingSmall45_1", + "portrait:sd": "buildings\\other\\CityBuildingSmall45_1\\CityBuildingSmall45_1", + "portrait:hd": "buildings\\other\\CityBuildingSmall45_1\\CityBuildingSmall45_1_portrait", + "unitSound": "CityBuilding1", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb2": { + "unitID": "ncb2", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding0-2.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 2", + "unitClass": "CityBuilding2", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb2", + "file": "buildings\\other\\CityBuildingSmall45_2\\CityBuildingSmall45_2", + "portrait:sd": "buildings\\other\\CityBuildingSmall45_2\\CityBuildingSmall45_2", + "portrait:hd": "buildings\\other\\CityBuildingSmall45_2\\CityBuildingSmall45_2_portrait", + "unitSound": "CityBuilding2", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb3": { + "unitID": "ncb3", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding3-5.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb3", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 3", + "unitClass": "CityBuilding3", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb3", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb3", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb3", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb3", + "file": "buildings\\other\\CityBuildingSmall90_0\\CityBuildingSmall90_0", + "portrait:sd": "buildings\\other\\CityBuildingSmall90_0\\CityBuildingSmall90_0", + "portrait:hd": "buildings\\other\\CityBuildingSmall90_0\\CityBuildingSmall90_0_portrait", + "unitSound": "CityBuilding3", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb4": { + "unitID": "ncb4", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding3-5.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb4", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 4", + "unitClass": "CityBuilding4", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb4", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb4", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb4", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb4", + "file": "buildings\\other\\CityBuildingSmall90_1\\CityBuildingSmall90_1", + "portrait:sd": "buildings\\other\\CityBuildingSmall90_1\\CityBuildingSmall90_1", + "portrait:hd": "buildings\\other\\CityBuildingSmall90_1\\CityBuildingSmall90_1_portrait", + "unitSound": "CityBuilding4", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb5": { + "unitID": "ncb5", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding3-5.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb5", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 5", + "unitClass": "CityBuilding5", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb5", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb5", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb5", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb5", + "file": "buildings\\other\\CityBuildingSmall90_2\\CityBuildingSmall90_2", + "portrait:sd": "buildings\\other\\CityBuildingSmall90_2\\CityBuildingSmall90_2", + "portrait:hd": "buildings\\other\\CityBuildingSmall90_2\\CityBuildingSmall90_2_portrait", + "unitSound": "CityBuilding5", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb6": { + "unitID": "ncb6", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding6-8.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb6", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 6", + "unitClass": "CityBuilding6", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb6", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb6", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb6", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb6", + "file": "buildings\\other\\CityBuildingSmall135_0\\CityBuildingSmall135_0", + "portrait:sd": "buildings\\other\\CityBuildingSmall135_0\\CityBuildingSmall135_0", + "portrait:hd": "buildings\\other\\CityBuildingSmall135_0\\CityBuildingSmall135_0_portrait", + "unitSound": "CityBuilding6", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb7": { + "unitID": "ncb7", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding6-8.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb7", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 7", + "unitClass": "CityBuilding7", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb7", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb7", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb7", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb7", + "file": "buildings\\other\\CityBuildingSmall135_1\\CityBuildingSmall135_1", + "portrait:sd": "buildings\\other\\CityBuildingSmall135_1\\CityBuildingSmall135_1", + "portrait:hd": "buildings\\other\\CityBuildingSmall135_1\\CityBuildingSmall135_1_portrait", + "unitSound": "CityBuilding7", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb8": { + "unitID": "ncb8", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding6-8.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb8", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 8", + "unitClass": "CityBuilding8", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb8", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb8", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb8", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb8", + "file": "buildings\\other\\CityBuildingSmall135_2\\CityBuildingSmall135_2", + "portrait:sd": "buildings\\other\\CityBuildingSmall135_2\\CityBuildingSmall135_2", + "portrait:hd": "buildings\\other\\CityBuildingSmall135_2\\CityBuildingSmall135_2_portrait", + "unitSound": "CityBuilding8", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncb9": { + "unitID": "ncb9", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding9-11.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncb9", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall 9", + "unitClass": "CityBuilding9", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncb9", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncb9", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncb9", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncb9", + "file": "buildings\\other\\CityBuildingSmall0_0\\CityBuildingSmall0_0", + "portrait:sd": "buildings\\other\\CityBuildingSmall0_0\\CityBuildingSmall0_0", + "portrait:hd": "buildings\\other\\CityBuildingSmall0_0\\CityBuildingSmall0_0_portrait", + "unitSound": "CityBuilding9", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncba": { + "unitID": "ncba", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding9-11.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncba", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall a", + "unitClass": "CityBuildinga", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncba", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncba", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncba", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncba", + "file": "buildings\\other\\CityBuildingSmall0_1\\CityBuildingSmall0_1", + "portrait:sd": "buildings\\other\\CityBuildingSmall0_1\\CityBuildingSmall0_1", + "portrait:hd": "buildings\\other\\CityBuildingSmall0_1\\CityBuildingSmall0_1_portrait", + "unitSound": "CityBuildinga", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncbb": { + "unitID": "ncbb", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding9-11.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncbb", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "citybuildingSmall b", + "unitClass": "CityBuildingb", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncbb", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncbb", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncbb", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncbb", + "file": "buildings\\other\\CityBuildingSmall0_2\\CityBuildingSmall0_2", + "portrait:sd": "buildings\\other\\CityBuildingSmall0_2\\CityBuildingSmall0_2", + "portrait:hd": "buildings\\other\\CityBuildingSmall0_2\\CityBuildingSmall0_2_portrait", + "unitSound": "CityBuildingb", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncbc": { + "unitID": "ncbc", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuildingLarge_0.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncbc", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "CityBuildingLarge 0", + "unitClass": "CityBuildingc", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "200", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncbc", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncbc", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncbc", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncbc", + "file": "buildings\\other\\CityBuildingLarge_0\\CityBuildingLarge_0", + "portrait:sd": "buildings\\other\\CityBuildingLarge_0\\CityBuildingLarge_0", + "portrait:hd": "buildings\\other\\CityBuildingLarge_0\\CityBuildingLarge_0_portrait", + "unitSound": "CityBuildingc", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncbd": { + "unitID": "ncbd", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuildingLarge_135.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncbd", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "CityBuildingLarge 1", + "unitClass": "CityBuildingd", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "200", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncbd", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncbd", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncbd", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncbd", + "file": "buildings\\other\\CityBuildingLarge_45\\CityBuildingLarge_45", + "portrait:sd": "buildings\\other\\CityBuildingLarge_45\\CityBuildingLarge_45", + "portrait:hd": "buildings\\other\\CityBuildingLarge_45\\CityBuildingLarge_45_portrait", + "unitSound": "CityBuildingd", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncbe": { + "unitID": "ncbe", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuildingLarge_90.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncbe", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "CityBuildingLarge 2", + "unitClass": "CityBuildinge", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "200", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncbe", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncbe", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncbe", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncbe", + "file": "buildings\\other\\CityBuildingLarge_90\\CityBuildingLarge_90", + "portrait:sd": "buildings\\other\\CityBuildingLarge_90\\CityBuildingLarge_90", + "portrait:hd": "buildings\\other\\CityBuildingLarge_90\\CityBuildingLarge_90_portrait", + "unitSound": "CityBuildinge", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncbf": { + "unitID": "ncbf", + "sort": "p3", + "comment(s)": "city building", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuildingLarge_45.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncbf", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "CityBuildingLarge 3", + "unitClass": "CityBuildingf", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "200", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncbf", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncbf", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncbf", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ncbf", + "file": "buildings\\other\\CityBuildingLarge_135\\CityBuildingLarge_135", + "portrait:sd": "buildings\\other\\CityBuildingLarge_135\\CityBuildingLarge_135", + "portrait:hd": "buildings\\other\\CityBuildingLarge_135\\CityBuildingLarge_135_portrait", + "unitSound": "CityBuildingf", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "240", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncnt": { + "unitID": "ncnt", + "sort": "p3", + "comment(s)": "Centaur Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncnt", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaurtent", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ncnt", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ncnt", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncnt", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCentaurTent1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ncnt", + "file": "buildings\\other\\CentaurTent\\CentaurTent", + "portrait:sd": "buildings\\other\\CentaurTent\\CentaurTent", + "portrait:hd": "buildings\\other\\CentaurTent\\CentaurTent_portrait", + "unitSound": "CentaurTent", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncop": { + "unitID": "ncop", + "sort": "p3", + "comment(s)": "Circle Of Power", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4unbuildable.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncop", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "circleofpower", + "unitClass": "Neutral22", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "1", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncop", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "standon", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 200, + "nsight": 200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "ncop", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncop", + "sortAbil": "p3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCOP.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "skinnableID": "ncop", + "file": "buildings\\other\\CircleOfPower\\CircleOfPower", + "portrait:sd": "buildings\\other\\CircleOfPower\\CircleOfPower", + "portrait:hd": "buildings\\other\\CircleOfPower\\CircleOfPower_portrait", + "unitSound": "CircleOfPower", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncp2": { + "unitID": "ncp2", + "sort": "p3", + "comment(s)": "Circle Of Power medium", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6unbuildable.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncp2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "circleofpowermedium", + "unitClass": "Neutral23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "1", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncp2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "standon", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 300, + "nsight": 300, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "ncp2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncp2", + "sortAbil": "p3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCOP.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "skinnableID": "ncp2", + "file": "buildings\\other\\CircleOfPower\\CircleOfPower", + "portrait:sd": "buildings\\other\\CircleOfPower\\CircleOfPower", + "portrait:hd": "buildings\\other\\CircleOfPower\\CircleOfPower_portrait", + "unitSound": "CircleOfPower", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ncp3": { + "unitID": "ncp3", + "sort": "p3", + "comment(s)": "Circle Of Power large", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8unbuildable.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ncp3", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "circleofpowerlarge", + "unitClass": "Neutral24", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "1", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncp3", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "standon", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 400, + "nsight": 400, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "ncp3", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncp3", + "sortAbil": "p3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCOP.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "skinnableID": "ncp3", + "file": "buildings\\other\\CircleOfPower\\CircleOfPower", + "portrait:sd": "buildings\\other\\CircleOfPower\\CircleOfPower", + "portrait:hd": "buildings\\other\\CircleOfPower\\CircleOfPower_portrait", + "unitSound": "CircleOfPower", + "blend": "0.15", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "2", + "legacyModelScale": "2", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nct1": { + "unitID": "nct1", + "sort": "p3", + "comment(s)": "Centaur Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nct1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaurtent1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nct1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nct1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nct1", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCentaurTent2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nct1", + "file": "buildings\\other\\CentaurTent1\\CentaurTent1", + "portrait:sd": "buildings\\other\\CentaurTent1\\CentaurTent1", + "portrait:hd": "buildings\\other\\CentaurTent1\\CentaurTent1_portrait", + "unitSound": "CentaurTent", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.65", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nct2": { + "unitID": "nct2", + "sort": "p3", + "comment(s)": "Centaur Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nct2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "centaurtent2", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nct2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nct2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nct2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCentaurTent3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nct2", + "file": "buildings\\other\\CentaurTent2\\CentaurTent2", + "portrait:sd": "buildings\\other\\CentaurTent2\\CentaurTent2", + "portrait:hd": "buildings\\other\\CentaurTent2\\CentaurTent2_portrait", + "unitSound": "CentaurTent", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndch": { + "unitID": "ndch", + "sort": "p3", + "comment(s)": "draenei chieftain hut", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndch", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chieftainhut", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndch", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndch", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndch", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDranaiChiefHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ndch", + "file": "buildings\\other\\ChieftainHut\\ChieftainHut", + "portrait:sd": "buildings\\other\\ChieftainHut\\ChieftainHut", + "portrait:hd": "buildings\\other\\ChieftainHut\\ChieftainHut_portrait", + "unitSound": "DraeneiChieftainHut", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndh0": { + "unitID": "ndh0", + "sort": "p3", + "comment(s)": "draenei hut 0", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndh0", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draneihut0", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndh0", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndh0", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndh0", + "sortAbil": "p3", + "auto": "_", + "abilList": "Abds", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDranaiHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "OSMA", + "skinnableID": "ndh0", + "file": "buildings\\other\\DraneiHut0\\DraneiHut0", + "portrait:sd": "buildings\\other\\DraneiHut0\\DraneiHut0", + "portrait:hd": "buildings\\other\\DraneiHut0\\DraneiHut0_portrait", + "unitSound": "DraeneiHut", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndh1": { + "unitID": "ndh1", + "sort": "p3", + "comment(s)": "draenei hut 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndh1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draneihut1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndh1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndh1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndh1", + "sortAbil": "p3", + "auto": "_", + "abilList": "Abds", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranaiHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "OSMA", + "skinnableID": "ndh1", + "file": "buildings\\other\\DraneiHut1\\DraneiHut1", + "portrait:sd": "buildings\\other\\DraneiHut1\\DraneiHut1", + "portrait:hd": "buildings\\other\\DraneiHut1\\DraneiHut1_portrait", + "unitSound": "DraeneiHut", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndh2": { + "unitID": "ndh2", + "sort": "p3", + "comment(s)": "draenei outpost", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndh2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneihaven", + "unitClass": "draeneibldg", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndh2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 400, + "lumbercost": 195, + "goldRep": 400, + "lumberRep": 195, + "fmade": 50, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 180, + "reptm": 3, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndh2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndh2", + "sortAbil": "p3", + "auto": "_", + "abilList": "Abdl,Argl", + "Trains": "ndrl", + "Attachmentanimprops": "medium", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Revive": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiHaven.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranaiChiefHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abdl,Argl", + "uberSplat": "OLAR", + "skinnableID": "ndh2", + "file:hd": "Buildings\\Other\\DraneiHaven\\DraneiHaven", + "file:sd": "buildings\\other\\ChieftainHut\\ChieftainHut", + "portrait:sd": "buildings\\other\\ChieftainHut\\ChieftainHut", + "portrait:hd": "Buildings\\Other\\DraneiHaven\\DraneiHaven_portrait", + "unitSound": "DraeneiChieftainHut", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.2", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndh3": { + "unitID": "ndh3", + "sort": "p3", + "comment(s)": "draenei warriors hall", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndh3", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneiwarriorshall", + "unitClass": "draeneibldg", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndh3", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 170, + "lumbercost": 55, + "goldRep": 170, + "lumberRep": 55, + "fmade": 50, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1250, + "realHP": 1250, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 3, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndh3", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndh3", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Trains": "ndrn,ndrt,ndsa,ncat", + "Attachmentanimprops": "medium", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiBarracks.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranaiHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OLAR", + "skinnableID": "ndh3", + "file:hd": "Buildings\\Other\\DraeneiBarracks\\DraeneiBarracks", + "file:sd": "buildings\\other\\DraneiHut0\\DraneiHut0", + "portrait:sd": "buildings\\other\\DraneiHut0\\DraneiHut0", + "portrait:hd": "Buildings\\Other\\DraeneiBarracks\\DraeneiBarracks_portrait", + "unitSound": "DraeneiHut", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.15", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndh4": { + "unitID": "ndh4", + "sort": "p3", + "comment(s)": "draenei seer's lodge", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndh4", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneiseerden", + "unitClass": "draeneibldg", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndh4", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 100, + "lumbercost": 140, + "goldRep": 100, + "lumberRep": 140, + "fmade": 50, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1150, + "realHP": 1150, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 3, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndh4", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndh4", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Trains": "ndrs,ndrh", + "Attachmentanimprops": "medium", + "BuildingSoundLabel": "OrcBuildingConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSeersDen.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranaiHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OLAR", + "skinnableID": "ndh4", + "file:hd": "Buildings\\Other\\SeersDen\\SeersDen", + "file:sd": "buildings\\other\\DraneiHut1\\DraneiHut1", + "portrait:sd": "buildings\\other\\DraneiHut1\\DraneiHut1", + "portrait:hd": "Buildings\\Other\\SeersDen\\SeersDen_portrait", + "unitSound": "DraeneiHut", + "blend": "0.15", + "scale": "4.25", + "legacyScale": "4.25", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.25", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndrg": { + "unitID": "ndrg", + "sort": "p3", + "comment(s)": "Dragon Roost green", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndrg", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "greendragonroost", + "unitClass": "Neutral09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndrg", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C,Z", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndrg", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrg", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "ngrw,ngdk,ngrd", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreenDragonRoost.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "OLAR", + "skinnableID": "ndrg", + "file": "buildings\\other\\DragonBuildingGreen\\DragonBuildingGreen", + "portrait:sd": "buildings\\other\\DragonBuildingGreen\\DragonBuildingGreen", + "portrait:hd": "buildings\\other\\DragonBuildingGreen\\DragonBuildingGreen_portrait", + "unitSound": "DragonRoost", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.5", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndrk": { + "unitID": "ndrk", + "sort": "p3", + "comment(s)": "Dragon Roost black", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndrk", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "blackdragonroost", + "unitClass": "Neutral09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndrk", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "F", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndrk", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrk", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nbdr,nbdk,nbwm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlackDragonRoost.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "OLAR", + "skinnableID": "ndrk", + "file": "buildings\\other\\DragonBuildingBlack\\DragonBuildingBlack", + "portrait:sd": "buildings\\other\\DragonBuildingBlack\\DragonBuildingBlack", + "portrait:hd": "buildings\\other\\DragonBuildingBlack\\DragonBuildingBlack_portrait", + "unitSound": "DragonRoost", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.5", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndro": { + "unitID": "ndro", + "sort": "p3", + "comment(s)": "Dragon Roost Outland", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndro", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "outlanddragonroost", + "unitClass": "Neutral09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndro", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndro", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndro", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nnht,nndk,nndr", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNetherDragonRoost.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBlackDragonRoost.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "uberSplat": "OLAR", + "skinnableID": "ndro", + "file:hd": "Buildings\\Other\\DragonBuildingNether\\DragonBuildingNether", + "file:sd": "buildings\\other\\DragonBuildingBlack\\DragonBuildingBlack", + "portrait:sd": "buildings\\other\\DragonBuildingBlack\\DragonBuildingBlack", + "portrait:hd": "Buildings\\Other\\DragonBuildingNether\\DragonBuildingNether_portrait", + "unitSound": "DragonRoost", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.5", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndrr": { + "unitID": "ndrr", + "sort": "p3", + "comment(s)": "Dragon Roost red", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndrr", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "reddragonroost", + "unitClass": "Neutral09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndrr", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndrr", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrr", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nrdk,nrdr,nrwm", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRedDragonRoost.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDragonRoost.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "OLAR", + "skinnableID": "ndrr", + "file:hd": "Buildings\\Other\\DragonBuildingRed\\DragonBuildingRed", + "file:sd": "buildings\\other\\DragonBuilding\\DragonBuilding", + "portrait:sd": "buildings\\other\\DragonBuilding\\DragonBuilding", + "portrait:hd": "Buildings\\Other\\DragonBuildingRed\\DragonBuildingRed_portrait", + "unitSound": "DragonRoost", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.5", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndru": { + "unitID": "ndru", + "sort": "p3", + "comment(s)": "Dragon Roost blue", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndru", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bluedragonroost", + "unitClass": "Neutral09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndru", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W,N,I", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndru", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndru", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nadw,nadk,nadr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlueDragonRoost.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "OLAR", + "skinnableID": "ndru", + "file": "buildings\\other\\DragonBuildingBlue\\DragonBuildingBlue", + "portrait:sd": "buildings\\other\\DragonBuildingBlue\\DragonBuildingBlue", + "portrait:hd": "buildings\\other\\DragonBuildingBlue\\DragonBuildingBlue_portrait", + "unitSound": "DragonRoost", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.5", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndrz": { + "unitID": "ndrz", + "sort": "p3", + "comment(s)": "Dragon Roost bronze", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ndrz", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bronzedragonroost", + "unitClass": "Neutral09", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndrz", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndrz", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrz", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nbzw,nbzk,nbzd", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBronzeDragonRoost.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDragonRoost.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "OLAR", + "skinnableID": "ndrz", + "file": "buildings\\other\\DragonRoost\\DragonRoost", + "portrait:sd": "buildings\\other\\DragonRoost\\DragonRoost", + "portrait:hd": "buildings\\other\\DragonRoost\\DragonRoost_portrait", + "unitSound": "DragonRoost", + "blend": "0.15", + "scale": "6.6", + "legacyScale": "6.6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.5", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nfh0": { + "unitID": "nfh0", + "sort": "p3", + "comment(s)": "Forest Troll Hut 0", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfh0", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttrollhut0", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfh0", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfh0", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfh0", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNForestTrollHut1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfh0", + "file": "buildings\\other\\ForestTrollHut0\\ForestTrollHut0", + "portrait:sd": "buildings\\other\\ForestTrollHut0\\ForestTrollHut0", + "portrait:hd": "buildings\\other\\ForestTrollHut0\\ForestTrollHut0_portrait", + "unitSound": "ForestTrollHut0", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfh1": { + "unitID": "nfh1", + "sort": "p3", + "comment(s)": "Forest Troll Hut 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfh1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "foresttrollhut1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfh1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfh1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfh1", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNForestTrollHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfh1", + "file": "buildings\\other\\ForestTrollHut1\\ForestTrollHut1", + "portrait:sd": "buildings\\other\\ForestTrollHut1\\ForestTrollHut1", + "portrait:hd": "buildings\\other\\ForestTrollHut1\\ForestTrollHut1_portrait", + "unitSound": "ForestTrollHut1", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfoh": { + "unitID": "nfoh", + "sort": "p3", + "comment(s)": "Fountain of Health", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfoh", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "fountainofhealth", + "unitClass": "Neutral03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfoh", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfoh", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfoh", + "sortAbil": "p3", + "auto": "_", + "abilList": "Avul,ACnr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFountainOfLife.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul,ACnr", + "uberSplat": "OMED", + "skinnableID": "nfoh", + "file": "buildings\\other\\FountainOfLife\\FountainOfHealth", + "portrait:sd": "buildings\\other\\FountainOfLife\\FountainOfHealth", + "portrait:hd": "buildings\\other\\FountainOfLife\\FountainOfHealth_portrait", + "unitSound": "FountainOfLife", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nfr1": { + "unitID": "nfr1", + "sort": "p3", + "comment(s)": "Furbolg Hut 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfr1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolghut1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfr1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfr1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfr1", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFurbolgHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfr1", + "file": "buildings\\other\\FurbolgHut\\FurbolgHut", + "portrait:sd": "buildings\\other\\FurbolgHut\\FurbolgHut", + "portrait:hd": "buildings\\other\\FurbolgHut\\FurbolgHut_portrait", + "unitSound": "FurbolgHut", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfr2": { + "unitID": "nfr2", + "sort": "p3", + "comment(s)": "Furbolg Hut 2", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nfr2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furbolghut2", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfr2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A,C", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfr2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfr2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFurbolgHut1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfr2", + "file": "buildings\\other\\FurbolgHut2\\FurbolgHut2", + "portrait:sd": "buildings\\other\\FurbolgHut2\\FurbolgHut2", + "portrait:hd": "buildings\\other\\FurbolgHut2\\FurbolgHut2_portrait", + "unitSound": "FurbolgHut", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ngad": { + "unitID": "ngad", + "sort": "p3", + "comment(s)": "Goblin Ammo Dump", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngad", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinammodump", + "unitClass": "Neutral05", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ngad", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngad", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngad", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Andt,Avul", + "Sellunits": "ngsp,nzep,ngir", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmmoDump.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Andt,Avul", + "abilSkinList:melee,V0": "Aneu,Andt,Avul", + "abilSkinList:custom,V0": "Aneu,Andt,Avul", + "uberSplat": "HMED", + "skinnableID": "ngad", + "file": "buildings\\other\\AmmoDump\\AmmoDump", + "portrait:sd": "buildings\\other\\AmmoDump\\AmmoDump", + "portrait:hd": "buildings\\other\\AmmoDump\\AmmoDump_portrait", + "unitSound": "AmmoDump", + "blend": "0.15", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ngme": { + "unitID": "ngme", + "sort": "p3", + "comment(s)": "goblin merchant", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngme", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinmerchant", + "unitClass": "Neutral02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ngme", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngme", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngme", + "sortAbil": "p3", + "auto": "_", + "abilList": "Aneu,Avul,Apit", + "Sellitems": "stwp,bspd,dust,tret,prvt,cnob,stel,pnvl,shea,spro,pinv", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMerchant.blp", + "buildingShadow": "ShadowGoblinMerchant", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aneu,Avul,Apit", + "uberSplat": "HMED", + "skinnableID": "ngme", + "file": "buildings\\other\\Merchant\\Merchant", + "portrait:sd": "buildings\\other\\Merchant\\Merchant", + "portrait:hd": "buildings\\other\\Merchant\\Merchant_portrait", + "unitSound": "Merchant", + "blend": "0.15", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ngnh": { + "unitID": "ngnh", + "sort": "p3", + "comment(s)": "Gnoll Hut", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngnh", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollhut", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ngnh", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngnh", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngnh", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGnollHut1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ngnh", + "file": "buildings\\other\\GnollHut\\GnollHut", + "portrait:sd": "buildings\\other\\GnollHut\\GnollHut", + "portrait:hd": "buildings\\other\\GnollHut\\GnollHut_portrait", + "unitSound": "GnollHut", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ngni": { + "unitID": "ngni", + "sort": "p3", + "comment(s)": "Infected Granary", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ngni", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "granaryinfected", + "unitClass": "UBuilding17", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ngni", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngni", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngni", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNInfectedGranary.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ngni", + "file": "buildings\\other\\GranaryInfected\\GranaryInfected", + "portrait:sd": "buildings\\other\\GranaryInfected\\GranaryInfected", + "portrait:hd": "buildings\\other\\GranaryInfected\\GranaryInfected_portrait", + "unitSound": "GranaryInfected", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "140", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ngol": { + "unitID": "ngol", + "sort": "p3", + "comment(s)": "GoldMine", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Goldmine.tga", + "fatLOS": 0, + "points": 100, + "buffType": "resource", + "buffRadius": 7, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 1, + "InBeta": 1, + "version": 0, + "unitUIID": "ngol", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goldmine", + "unitClass": "Neutral01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngol", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 0, + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngol", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngol", + "sortAbil": "p3", + "auto": "_", + "abilList": "Agld,Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoldMine.blp", + "buildingShadow": "BuildingShadowLarge", + "skinType": "unit", + "abilSkinList": "Agld,Avul", + "uberSplat": "NGOL", + "skinnableID": "ngol", + "file": "buildings\\other\\GoldMine\\GoldMine", + "portrait:sd": "buildings\\other\\GoldMine\\GoldMine", + "portrait:hd": "buildings\\other\\GoldMine\\GoldMine_portrait", + "unitSound": "GoldMine", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ngt2": { + "unitID": "ngt2", + "sort": "p3", + "comment(s)": "Gnoll Hut", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ngt2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollhut2", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ngt2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngt2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngt2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGnollHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ngt2", + "file": "buildings\\other\\GnollHut2\\GnollHut2", + "portrait:sd": "buildings\\other\\GnollHut2\\GnollHut2", + "portrait:hd": "buildings\\other\\GnollHut2\\GnollHut2_portrait", + "unitSound": "GnollHut", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ngwr": { + "unitID": "ngwr", + "sort": "p3", + "comment(s)": "grain warehouse", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\CityBuilding6-8.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ngwr", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "grainwarehouse", + "unitClass": "GrainWarehouse", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "128", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ngwr", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 600, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngwr", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngwr", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGrainWareHouse.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericHumanBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "ngwr", + "file": "buildings\\other\\GrainWarehouse\\GrainWarehouse", + "portrait:sd": "buildings\\other\\GrainWarehouse\\GrainWarehouse", + "portrait:hd": "buildings\\other\\GrainWarehouse\\GrainWarehouse_portrait", + "unitSound": "GrainWarehouse", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "200", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nhns": { + "unitID": "nhns", + "sort": "p3", + "comment(s)": "harpy nest", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nhns", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "harpynest", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhns", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nhns", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhns", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHarpyNest1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nhns", + "file": "buildings\\other\\HarpyNest\\HarpyNest", + "portrait:sd": "buildings\\other\\HarpyNest\\HarpyNest", + "portrait:hd": "buildings\\other\\HarpyNest\\HarpyNest_portrait", + "unitSound": "HarpyNest", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nmer": { + "unitID": "nmer", + "sort": "p3", + "comment(s)": "MercenaryCamp L", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmer", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampl", + "unitClass": "Neutral10", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "0", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmer", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmer", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmer", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nftb,nfsp,ngrk,nogm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmer", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmg0": { + "unitID": "nmg0", + "sort": "p3", + "comment(s)": "Murloc Hut 0", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmg0", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulhut0", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmg0", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmg0", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmg0", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurgulHut1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nmg0", + "file:hd": "buildings\\other\\MurgulHut0\\MurgulHut0", + "file:sd": "buildings\\other\\MurlocHut0\\MurlocHut0", + "portrait:sd": "buildings\\other\\MurlocHut0\\MurlocHut0", + "portrait:hd": "buildings\\other\\MurgulHut0\\MurgulHut0_portrait", + "unitSound": "MurlocHut0", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nmg1": { + "unitID": "nmg1", + "sort": "p3", + "comment(s)": "Murloc Hut 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmg1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulhut1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmg1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmg1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmg1", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurgulHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nmg1", + "file:hd": "buildings\\other\\MurgulHut1\\MurgulHut1", + "file:sd": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:sd": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:hd": "buildings\\other\\MurgulHut1\\MurgulHut1_portrait", + "unitSound": "MurlocHut1", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nmh0": { + "unitID": "nmh0", + "sort": "p3", + "comment(s)": "Murloc Hut 0", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmh0", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murlochut0", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmh0", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,B,A,C,N", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmh0", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmh0", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurlocHut1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nmh0", + "file": "buildings\\other\\MurlocHut0\\MurlocHut0", + "portrait:sd": "buildings\\other\\MurlocHut0\\MurlocHut0", + "portrait:hd": "buildings\\other\\MurlocHut0\\MurlocHut0_portrait", + "unitSound": "MurlocHut0", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nmh1": { + "unitID": "nmh1", + "sort": "p3", + "comment(s)": "Murloc Hut 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmh1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murlochut1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmh1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,B,A,C,N", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmh1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmh1", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurlocHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nmh1", + "file": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:sd": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:hd": "buildings\\other\\MurlocHut1\\MurlocHut1_portrait", + "unitSound": "MurlocHut1", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nmoo": { + "unitID": "nmoo", + "sort": "p3", + "comment(s)": "Fountain of Life", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmoo", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "fountainofmana", + "unitClass": "Neutral04", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmoo", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmoo", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmoo", + "sortAbil": "p3", + "auto": "_", + "abilList": "Avul,ANre", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFountainOfMana.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFountainOfLife.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul,ANre", + "uberSplat": "OMED", + "skinnableID": "nmoo", + "file": "buildings\\other\\FountainOfMana\\FountainOfMana", + "portrait:sd": "buildings\\other\\FountainOfMana\\FountainOfMana", + "portrait:hd": "buildings\\other\\FountainOfMana\\FountainOfMana_portrait", + "unitSound": "FountainOfLife", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr0": { + "unitID": "nmr0", + "sort": "p3", + "comment(s)": "MercenaryCamp V", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr0", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampv", + "unitClass": "Neutral19", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "5", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr0", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "V,Q", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr0", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr0", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nkot,nass,nkog,nkol", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr0", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr2": { + "unitID": "nmr2", + "sort": "p3", + "comment(s)": "MercenaryCamp F", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampf", + "unitClass": "Neutral11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "12", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "F", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr2", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "ngnb,ngnw,ngrk,nomg", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr2", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr3": { + "unitID": "nmr3", + "sort": "p3", + "comment(s)": "MercenaryCamp W", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr3", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampw", + "unitClass": "Neutral12", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr3", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "W", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr3", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr3", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nitp,nits,ngrk,nogm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr3", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr4": { + "unitID": "nmr4", + "sort": "p3", + "comment(s)": "MercenaryCamp B", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr4", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampb", + "unitClass": "Neutral13", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "11", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr4", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr4", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr4", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "ncea,ncen,nqbh,nhrw", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr4", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr5": { + "unitID": "nmr5", + "sort": "p3", + "comment(s)": "MercenaryCamp A", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr5", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampa", + "unitClass": "Neutral14", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "10", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr5", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "A", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr5", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr5", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "ndtp,ndtb,nwlg,nsts", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr5", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr6": { + "unitID": "nmr6", + "sort": "p3", + "comment(s)": "MercenaryCamp C", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr6", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampc", + "unitClass": "Neutral15", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "6", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr6", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "C", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr6", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr6", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nmfs,nssp,nsln,nsts", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr6", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr7": { + "unitID": "nmr7", + "sort": "p3", + "comment(s)": "MercenaryCamp N", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr7", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampn", + "unitClass": "Neutral16", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "3", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr7", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr7", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr7", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nnwa,nits,nrvs,nnwr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr7", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr8": { + "unitID": "nmr8", + "sort": "p3", + "comment(s)": "MercenaryCamp Y", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr8", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampy", + "unitClass": "Neutral17", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "9", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr8", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr8", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr8", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nrog,nass,nkog,nfsh", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr8", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmr9": { + "unitID": "nmr9", + "sort": "p3", + "comment(s)": "MercenaryCamp X", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmr9", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampx", + "unitClass": "Neutral18", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "8", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmr9", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "X,J", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmr9", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmr9", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nrog,nass,nkog,nfsh", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmr9", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmra": { + "unitID": "nmra", + "sort": "p3", + "comment(s)": "MercenaryCamp D", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmra", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampd", + "unitClass": "Neutral20", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "0", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmra", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "D", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmra", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmra", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nskf,nkog,nowb,nrvs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmra", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmrb": { + "unitID": "nmrb", + "sort": "p3", + "comment(s)": "MercenaryCamp G", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nmrb", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampg", + "unitClass": "Neutral21", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "0", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmrb", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "G", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmrb", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrb", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nskf,nkog,nowb,nrvs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "abilSkinList:melee,V0": "Aneu,Avul", + "abilSkinList:custom,V0": "Aneu,Avul", + "uberSplat": "HMED", + "skinnableID": "nmrb", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmrc": { + "unitID": "nmrc", + "sort": "p3", + "comment(s)": "MercenaryCamp Z", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmrc", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampz", + "unitClass": "Neutral27", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmrc", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmrc", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrc", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nmbg,nsrh,nmsn,nsog", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "uberSplat": "HMED", + "skinnableID": "nmrc", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmrd": { + "unitID": "nmrd", + "sort": "p3", + "comment(s)": "MercenaryCamp I", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmrd", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampi", + "unitClass": "Neutral28", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "9", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmrd", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmrd", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrd", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "ntkh,nits,nbdw,nubw", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "uberSplat": "HMED", + "skinnableID": "nmrd", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmre": { + "unitID": "nmre", + "sort": "p3", + "comment(s)": "MercenaryCamp O", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmre", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampo", + "unitClass": "Neutral29", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "12", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmre", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmre", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmre", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "ndrm,nfgb,nvdw,nsog", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "uberSplat": "HMED", + "skinnableID": "nmre", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmrf": { + "unitID": "nmrf", + "sort": "p3", + "comment(s)": "MercenaryCamp K", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmrf", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mercenarycampk", + "unitClass": "Neutral30", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "3", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmrf", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "K", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmrf", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrf", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "ndrm,nfgb,nvdw,nsog", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMercenaryCamp.blp", + "buildingShadow": "ShadowMercenaryCamp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "uberSplat": "HMED", + "skinnableID": "nmrf", + "file": "buildings\\other\\Mercenary\\Mercenary", + "portrait:sd": "buildings\\other\\Mercenary\\Mercenary", + "portrait:hd": "buildings\\other\\Mercenary\\Mercenary_portrait", + "unitSound": "Mercenary", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmrk": { + "unitID": "nmrk", + "sort": "p3", + "comment(s)": "Marketplace", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nmrk", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "marketplace", + "unitClass": "Neutral26", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "0", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmrk", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmrk", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmrk", + "sortAbil": "p3", + "auto": "_", + "abilList": "Aneu,Asid,Avul,Asud,Apit", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlackMarket.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aneu,Asid,Avul,Asud,Apit", + "uberSplat": "HMED", + "skinnableID": "nmrk", + "file": "buildings\\other\\Marketplace\\Marketplace", + "portrait:sd": "buildings\\other\\Marketplace\\Marketplace", + "portrait:hd": "buildings\\other\\Marketplace\\Marketplace_portrait", + "unitSound": "Marketplace", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nnzg": { + "unitID": "nnzg", + "sort": "p3", + "comment(s)": "nerubian ziggurat", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nnzg", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nerubianziggurat", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nnzg", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I,N", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nnzg", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnzg", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNerubianZiggurat.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "USMA", + "skinnableID": "nnzg", + "file": "buildings\\other\\NerubianZiggurat\\NerubianZiggurat", + "portrait:sd": "buildings\\other\\NerubianZiggurat\\NerubianZiggurat", + "portrait:hd": "buildings\\other\\NerubianZiggurat\\NerubianZiggurat_portrait", + "unitSound": "NerubianZiggurat", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.25", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nshp": { + "unitID": "nshp", + "sort": "p3", + "comment(s)": "Goblin Shipyard", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 384, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nshp", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinshipyard", + "unitClass": "Neutral29", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nshp", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nshp", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nshp", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul", + "Sellunits": "nbot", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinShipyard.blp", + "buildingShadow": "ShadowGoblinShipyard", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul", + "uberSplat": "HMED", + "skinnableID": "nshp", + "file": "buildings\\other\\GoblinShipyard\\GoblinShipyard", + "portrait:sd": "buildings\\other\\GoblinShipyard\\GoblinShipyard", + "portrait:hd": "buildings\\other\\GoblinShipyard\\GoblinShipyard_portrait", + "unitSound": "GoblinShipyard", + "blend": "0.15", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "100", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ntav": { + "unitID": "ntav", + "sort": "p3", + "comment(s)": "Tavern", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntav", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cantina", + "unitClass": "Neutral25", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "0", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ntav", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 1, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ntav", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntav", + "sortAbil": "p3", + "auto": "_", + "abilList": "Ane2,Avul,Aawa", + "Sellunits": "Nalc,Ntin,Nfir,Nngs,Nbrn,Npbm,Nplh,Nbst", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTavern.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ane2,Avul,Aawa", + "uberSplat": "HMED", + "skinnableID": "ntav", + "file": "buildings\\other\\Tavern\\Tavern", + "portrait:sd": "buildings\\other\\Tavern\\Tavern", + "portrait:hd": "buildings\\other\\Tavern\\Tavern_portrait", + "unitSound": "Cantina", + "blend": "0.15", + "scale": "6", + "legacyScale": "6", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nten": { + "unitID": "nten", + "sort": "p3", + "comment(s)": "Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nten", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tent", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nten", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 75, + "realHP": 75, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nten", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nten", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTent1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nten", + "file": "buildings\\other\\Tent\\Tent", + "portrait:sd": "buildings\\other\\Tent\\Tent", + "portrait:hd": "buildings\\other\\Tent\\Tent_portrait", + "unitSound": "Tent", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nth0": { + "unitID": "nth0", + "sort": "p3", + "comment(s)": "Ice Troll Hut 0", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nth0", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetrollhut0", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nth0", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nth0", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nth0", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIceTrollHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "nth0", + "file": "buildings\\other\\IceTrollHut0\\IceTrollHut0", + "portrait:sd": "buildings\\other\\IceTrollHut0\\IceTrollHut0", + "portrait:hd": "buildings\\other\\IceTrollHut0\\IceTrollHut0_portrait", + "unitSound": "IceTrollHut0", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nth1": { + "unitID": "nth1", + "sort": "p3", + "comment(s)": "Ice Troll Hut 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nth1", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icetrollhut1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nth1", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nth1", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nth1", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIceTrollHut1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "nth1", + "file": "buildings\\other\\IceTrollHut1\\IceTrollHut1", + "portrait:sd": "buildings\\other\\IceTrollHut1\\IceTrollHut1", + "portrait:hd": "buildings\\other\\IceTrollHut1\\IceTrollHut1_portrait", + "unitSound": "IceTrollHut1", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ntn2": { + "unitID": "ntn2", + "sort": "p3", + "comment(s)": "Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ntn2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tent2", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ntn2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 75, + "realHP": 75, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ntn2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntn2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTent2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ntn2", + "file": "buildings\\other\\Tent1\\Tent1", + "portrait:sd": "buildings\\other\\Tent1\\Tent1", + "portrait:hd": "buildings\\other\\Tent1\\Tent1_portrait", + "unitSound": "Tent", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ntnt": { + "unitID": "ntnt", + "sort": "p3", + "comment(s)": "Tauren Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ntnt", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "taurentent", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ntnt", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ntnt", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntnt", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTaurenHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ntnt", + "file": "buildings\\other\\TaurenTent\\TaurenTent", + "portrait:sd": "buildings\\other\\TaurenTent\\TaurenTent", + "portrait:hd": "buildings\\other\\TaurenTent\\TaurenTent_portrait", + "unitSound": "TaurenTent", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ntt2": { + "unitID": "ntt2", + "sort": "p3", + "comment(s)": "Tauren Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "ntt2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "taurentent2", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ntt2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ntt2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntt2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTaurenHut2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTaurenHut.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ntt2", + "file": "buildings\\other\\TaurenTent2\\TaurenTent2", + "portrait:sd": "buildings\\other\\TaurenTent2\\TaurenTent2", + "portrait:hd": "buildings\\other\\TaurenTent2\\TaurenTent2_portrait", + "unitSound": "TaurenTent2", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nwgt": { + "unitID": "nwgt", + "sort": "p3", + "comment(s)": "WayGate", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\Waygate.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 0, + "unitUIID": "nwgt", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "waygate", + "unitClass": "Neutral08", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "1", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwgt", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral,standon", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": 0, + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nwgt", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwgt", + "sortAbil": "p3", + "auto": "_", + "abilList": "Awrp,Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWaygate.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Awrp,Avul", + "uberSplat": "HMED", + "skinnableID": "nwgt", + "file": "buildings\\other\\Waygate\\Waygate", + "portrait:sd": "buildings\\other\\Waygate\\Waygate", + "portrait:hd": "buildings\\other\\Waygate\\Waygate_portrait", + "unitSound": "Waygate", + "blend": "0.15", + "scale:hd": "5", + "scale:sd": "4", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "Ecen": { + "unitID": "Ecen", + "sort": "z1", + "comment(s)": "cenarius", + "race": "nightelf", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Ecen", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cenarius", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ecen", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 2675, + "realHP": 3100, + "regenHP": 3, + "regenType": "always", + "manaN": 55, + "realM": 325, + "mana0": 200, + "regenMana": 2, + "def": 0, + "defUp": 0, + "realdef": 2.5, + "defType": "divine", + "spd": 400, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 17, + "INT": 18, + "AGI": 15, + "STRplus": 4, + "INTplus": 5, + "AGIplus": 0.6, + "abilTest": 9.6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Ecen", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 1000, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 1000, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 8, + "sides1": 8, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 76, + "maxdmg1": 104, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 2, + "DPS": 38, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.4, + "backSw2": 0.77, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ecen", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,SCc1", + "heroAbilList": "AEer,AEfn,AEah,AEtq", + "Missileart": "Abilities\\Weapons\\KeeperGroveMissile\\KeeperGroveMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "1300", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-keeperofthegrove.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCenarius.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNKeeperOfTheGrove.blp", + "skinType": "unit", + "heroAbilSkinList": "AEer,AEfn,AEah,AEtq", + "abilSkinList": "AInv,SCc1", + "abilSkinList:melee,V0": "SCc1,AInv,Ault", + "abilSkinList:custom,V0": "SCc1,AInv,Ault", + "modelScale:hd": "0.95", + "modelScale:sd": "1.4", + "skinnableID": "Ecen", + "file:hd": "Units\\NightElf\\Cenarius\\Cenarius", + "file:sd": "units\\nightelf\\HeroKeeperoftheGrove\\HeroKeeperoftheGrove", + "unitSound": "HeroKeeperoftheGrove", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "400", + "run:sd": "200", + "run:hd": "400", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\nightelf\\HeroKeeperoftheGrove\\HeroKeeperoftheGrove_portrait", + "portrait:hd": "Units\\NightElf\\Cenarius\\Cenarius_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Eevi": { + "unitID": "Eevi", + "sort": "z1", + "comment(s)": "evil illidan", + "race": "nightelf", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 4.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Eevi", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "evilillidan", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "Eevi", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 625, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.6, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 21, + "INT": 16, + "AGI": 22, + "STRplus": 2.4, + "INTplus": 2.1, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Eevi", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.7, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.3, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.64705882352941, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.26, + "backSw2": 0.64, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Eevi", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault,ANcl", + "heroAbilList": "AEmb,AEim,AEev,AEvi", + "DependencyOr": "Eevm", + "Missileart": "Abilities\\Weapons\\IllidanMissile\\IllidanMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-demonhunter.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEvilIllidan.blp", + "skinType": "unit", + "heroAbilSkinList": "AEmb,AEim,AEev,AEvi", + "abilSkinList": "AInv,Ault,ANcl", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Eevi", + "file": "units\\nightelf\\EvilIllidan\\IllidanEvil", + "unitSound": "EvilIllidan", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "125", + "impactZ": "125", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "125", + "showUI1": "1", + "showUI2": "1", + "launchZ": "125", + "addon": "Heroes" + }, + "Eevm": { + "unitID": "Eevm", + "sort": "z1", + "comment(s)": "evil illidan demon form", + "race": "nightelf", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.77, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Eevm", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "evilillidandemonform", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "Eevm", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 750, + "regenHP": 1, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 26, + "INT": 16, + "AGI": 20, + "STRplus": 2.4, + "INTplus": 2.1, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Eevm", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 25, + "maxdmg1": 36, + "dmgpt1": 0.26, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 41, + "DPS": 15.625, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.26, + "backSw2": 0.64, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Eevm", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault,ANcl", + "heroAbilList": "AEmb,AEim,AEev,AEvi", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Attachmentlinkprops": "alternate", + "Animprops": "alternateex", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-demonhunter.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "skinType": "unit", + "heroAbilSkinList": "AEmb,AEim,AEev,AEvi", + "abilSkinList": "AInv,Ault,ANcl", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Eevm", + "file": "units\\nightelf\\EvilIllidan\\IllidanEvil", + "unitSound": "EvilIllidanMorphed", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "350", + "walk:hd": "320", + "run:sd": "350", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "125", + "impactZ": "125", + "launchSwimZ": "160", + "showUI1": "1", + "showUI2": "1", + "launchZ": "160", + "addon": "Heroes" + }, + "Efur": { + "unitID": "Efur", + "sort": "z1", + "comment(s)": "furion", + "race": "nightelf", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Efur", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "furion", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Efur", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 0, + "goldRep": 425, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 525, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 2, + "realdef": 4.5, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 17, + "INT": 18, + "AGI": 15, + "STRplus": 1.8, + "INTplus": 2.7, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Efur", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.17, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.18, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.29357798165138, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.4, + "backSw2": 0.77, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Efur", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEer,AEfn,AEah,AEtq", + "Missileart": "Abilities\\Weapons\\KeeperGroveMissile\\KeeperGroveMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-furion.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurion.blp", + "skinType": "unit", + "heroAbilSkinList": "AEer,AEfn,AEah,AEtq", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "0.95", + "modelScale:sd": "1.1", + "skinnableID": "Efur", + "file": "units\\nightelf\\MalFurion\\MalFurion", + "unitSound": "Furion", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Eidm": { + "unitID": "Eidm", + "sort": "z1", + "comment(s)": "illidan demon form", + "race": "nightelf", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Eidm", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "illidandemonform", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Eidm", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 750, + "regenHP": 1, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 26, + "INT": 16, + "AGI": 20, + "STRplus": 2.4, + "INTplus": 2.1, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Eidm", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 25, + "maxdmg1": 36, + "dmgpt1": 0.26, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 41, + "DPS": 15.625, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.26, + "backSw2": 0.64, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Eidm", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEmb,AEim,AEev", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Attachmentlinkprops": "alternate", + "Animprops": "alternate,alternateex", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-demonhunter.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIllidanDemonForm.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDemonHunter.blp", + "skinType": "unit", + "heroAbilSkinList": "AEmb,AEim,AEev", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Eidm", + "file:hd": "Units\\NightElf\\Illidan\\Illidan", + "file:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter", + "unitSound": "IllidanMorphed", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "350", + "walk:hd": "320", + "run:sd": "350", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter_portrait", + "portrait:hd": "Units\\NightElf\\Illidan\\Illidan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "160", + "addon": "Heroes" + }, + "Eill": { + "unitID": "Eill", + "sort": "z1", + "comment(s)": "illidan", + "race": "nightelf", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Eill", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "illidan", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Eill", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 625, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.6, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 21, + "INT": 16, + "AGI": 22, + "STRplus": 2.4, + "INTplus": 2.1, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Eill", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.7, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.3, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.64705882352941, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Eill", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEmb,AEim,AEev,AEIl", + "DependencyOr": "Eilm", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-demonhunter.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIllidan.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDemonHunter.blp", + "skinType": "unit", + "heroAbilSkinList": "AEmb,AEim,AEev,AEIl", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "skinnableID": "Eill", + "file:hd": "Units\\NightElf\\Illidan\\Illidan", + "file:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter", + "unitSound": "Illidan", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter_portrait", + "portrait:hd": "Units\\NightElf\\Illidan\\Illidan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Eilm": { + "unitID": "Eilm", + "sort": "z1", + "comment(s)": "illidanmorphed", + "race": "nightelf", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Eilm", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "illidanmorphed", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Eilm", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 750, + "regenHP": 1, + "regenType": "night", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 26, + "INT": 16, + "AGI": 20, + "STRplus": 2.4, + "INTplus": 2.1, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Eilm", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.6, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 25, + "maxdmg1": 36, + "dmgpt1": 0.26, + "backSw1": 0.64, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 41, + "DPS": 15.625, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.26, + "backSw2": 0.64, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Eilm", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEmb,AEim,AEev,AEIl", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Attachmentlinkprops": "alternate", + "Animprops": "alternateex", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-demonhunter.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNIllidanDemonForm.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDemonHunter.blp", + "skinType": "unit", + "heroAbilSkinList": "AEmb,AEim,AEev,AEIl", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "skinnableID": "Eilm", + "file:hd": "Units\\NightElf\\Illidan\\Illidan", + "file:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter", + "unitSound": "IllidanMorphed", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "350", + "walk:hd": "320", + "run:sd": "350", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter_portrait", + "portrait:hd": "Units\\NightElf\\Illidan\\Illidan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "160", + "addon": "Heroes" + }, + "Ekgg": { + "unitID": "Ekgg", + "sort": "z1", + "comment(s)": "HeroKeeperoftheGrove ghost", + "race": "nightelf", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Ekgg", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "keeperofthegroveghost", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ekgg", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 500, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.5, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 900, + "STR": 16, + "INT": 18, + "AGI": 15, + "STRplus": 1.8, + "INTplus": 2.7, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ekgg", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.7, + "castbsw": 0.8, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.18, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.29357798165138, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.4, + "backSw2": 0.77, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ekgg", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEer,AEfn,AEah,AEtq", + "Missileart": "Abilities\\Weapons\\KeeperGroveMissile\\KeeperGroveMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "1300", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-keeperofthegrove.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKeeperGhostBlue.blp", + "skinType": "unit", + "heroAbilSkinList": "AEer,AEfn,AEah,AEtq", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Ekgg", + "file": "units\\nightelf\\HeroKeeperoftheGroveGhost\\HeroKeeperoftheGroveGhost", + "unitSound": "HeroKeeperoftheGrove", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Emfr": { + "unitID": "Emfr", + "sort": "z1", + "comment(s)": "Mal'furion", + "race": "nightelf", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.167, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Emfr", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "malfurion", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Emfr", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 0, + "goldRep": 425, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 525, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 2, + "realdef": 4.5, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 17, + "INT": 18, + "AGI": 15, + "STRplus": 1.8, + "INTplus": 2.7, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Emfr", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.17, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.18, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.29357798165138, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.4, + "backSw2": 0.77, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Emfr", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEer,AEfn,AEah,AEtq", + "Missileart": "Abilities\\Weapons\\KeeperGroveMissile\\KeeperGroveMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-furion.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMalFurionWithoutStag.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFurion.blp", + "skinType": "unit", + "heroAbilSkinList": "AEer,AEfn,AEah,AEtq", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "0.95", + "modelScale:sd": "1.2", + "skinnableID": "Emfr", + "file": "units\\nightelf\\MalFurion\\MalFurion", + "unitSound": "MalFurion", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Emns": { + "unitID": "Emns", + "sort": "z1", + "comment(s)": "Mal'furion no stag", + "race": "nightelf", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 4.33, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Emns", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "malfurionnostag", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Emns", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 525, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 2, + "realdef": 4.5, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 17, + "INT": 18, + "AGI": 15, + "STRplus": 1.8, + "INTplus": 2.7, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Emns", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.17, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.18, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.4, + "backSw1": 0.77, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.29357798165138, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.4, + "backSw2": 0.77, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Emns", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AEer,AEfn,AEah,AEtq", + "Missileart": "Abilities\\Weapons\\KeeperGroveMissile\\KeeperGroveMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-furion.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMalFurionWithoutStag.blp", + "skinType": "unit", + "heroAbilSkinList": "AEer,AEfn,AEah,AEtq", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "0.95", + "modelScale:sd": "1.2", + "skinnableID": "Emns", + "file": "units\\nightelf\\MalFurion\\MalFurion", + "unitSound": "Furion", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk": "270", + "run": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "55", + "shadowY": "55", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Etyr": { + "unitID": "Etyr", + "sort": "z1", + "comment(s)": "Tyrande", + "race": "nightelf", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Etyr", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tyrande", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Etyr", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 225, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.7, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 15, + "AGI": 19, + "STRplus": 1.9, + "INTplus": 2.6, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Etyr", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.46, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.84552845528455, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Etyr", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ashm,Ault", + "heroAbilList": "AHfa,AEst,AEar,AEsf", + "Missileart": "Abilities\\Weapons\\MoonPriestessMissile\\MoonPriestessMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-priestessofthemoon.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTyrande.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPriestessOfTheMoon.blp", + "skinType": "unit", + "heroAbilSkinList": "AHfa,AEst,AEar,AEsf", + "abilSkinList": "AInv,Ashm,Ault", + "abilSkinList:melee,V0": "Ashm,AInv,Ault", + "abilSkinList:custom,V0": "Ashm,AInv,Ault", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Etyr", + "file:hd": "Units\\NightElf\\Tyrande\\Tyrande", + "file:sd": "units\\nightelf\\HeroMoonPriestess\\HeroMoonPriestess", + "unitSound": "Tyrande", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "85", + "shadowY": "85", + "portrait:sd": "units\\nightelf\\HeroMoonPriestess\\HeroMoonPriestess_portrait", + "portrait:hd": "Units\\NightElf\\Tyrande\\Tyrande_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "100", + "addon": "Heroes" + }, + "Ewrd": { + "unitID": "Ewrd", + "sort": "z1", + "comment(s)": "Maiev", + "race": "nightelf", + "prio": 13, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Ewrd", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "maiev", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ewrd", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 15, + "AGI": 20, + "STRplus": 2.4, + "INTplus": 2, + "AGIplus": 1.6, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ewrd", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 11, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 12, + "maxdmg1": 22, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 5.85365853658537, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ewrd", + "sortAbil": "z1", + "auto": "_", + "abilList": "Ashm,AInv,Ault", + "heroAbilList": "AEbl,AEfk,AEsh,AEsv", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\WardenMissile\\WardenMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-warden.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarden2.blp", + "skinType": "unit", + "heroAbilSkinList": "AEbl,AEfk,AEsh,AEsv", + "abilSkinList": "Ashm,AInv,Ault", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Ewrd", + "file": "units\\nightelf\\Maiev\\Maiev", + "unitSound": "Maiev", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "85", + "shadowY": "85", + "impactSwimZ": "0", + "impactZ": "80", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "80", + "addon": "Heroes" + }, + "Hant": { + "unitID": "Hant", + "sort": "z1", + "comment(s)": "antonidus", + "race": "human", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.8, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Hant", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "antonidus", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hant", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.1, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 19, + "AGI": 17, + "STRplus": 1.8, + "INTplus": 3.2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hant", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.13, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.34741784037559, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.85, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hant", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHbz,AHab,AHwe,AHmt", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "MovementSoundLabel": "HumanHeroArchMageMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-archmage.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAntonidas.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroArchMage.blp", + "skinType": "unit", + "heroAbilSkinList": "AHbz,AHab,AHwe,AHmt", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Hant", + "file:hd": "Units\\Human\\Antonidas\\Antonidas", + "file:sd": "units\\human\\HeroArchMage\\HeroArchMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "units\\human\\HeroArchMage\\HeroArchMage_portrait", + "portrait:hd": "Units\\Human\\Antonidas\\Antonidas_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "addon": "Heroes" + }, + "Hapm": { + "unitID": "Hapm", + "sort": "z1", + "comment(s)": "Admiral Proudmoore", + "race": "human", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hapm", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "admiralproudmoore", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hapm", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hapm", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 29, + "maxdmg1": 34, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.1818181818182, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.567, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hapm", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNProudMoore.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1.1", + "skinnableID": "Hapm", + "file": "units\\other\\Proudmoore\\Proudmoore", + "unitSound": "Proudmoore", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Harf": { + "unitID": "Harf", + "sort": "z1", + "comment(s)": "arthas w/ frostmourne", + "race": "human", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Harf", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "arthaswithfrostmourne", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Harf", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Harf", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 29, + "maxdmg1": 34, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.1818181818182, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.567, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Harf", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-arthas.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNArthasFrost.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNArthas.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.3", + "modelScale:sd": "1.1", + "skinnableID": "Harf", + "file": "units\\human\\ArthaswithSword\\ArthaswithSword", + "unitSound": "ArthasWithFrostmourne", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hart": { + "unitID": "Hart", + "sort": "z1", + "comment(s)": "arthas", + "race": "human", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Hart", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "arthas", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hart", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hart", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.567, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hart", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-arthas.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArthas.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.3", + "modelScale:sd": "1.1", + "skinnableID": "Hart", + "file": "units\\human\\Arthas\\Arthas", + "unitSound": "Arthas", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hdgo": { + "unitID": "Hdgo", + "sort": "z1", + "comment(s)": "Dagren the Orcslayer", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hdgo", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dagren", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hdgo", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hdgo", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.433, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hdgo", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDagrenTheOrcSlayer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Hdgo", + "file:hd": "Units\\Human\\HeroDagren\\HeroDagren", + "file:sd": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2", + "unitSound": "HeroPaladin", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2_portrait", + "portrait:hd": "Units\\Human\\HeroDagren\\HeroDagren_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "weapType1:hd": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hgam": { + "unitID": "Hgam", + "sort": "z1", + "comment(s)": "ghostly archmage", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.8, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hgam", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ghostlyarchmage", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hgam", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 450, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.1, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 14, + "INT": 19, + "AGI": 17, + "STRplus": 1.8, + "INTplus": 3.2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hgam", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.13, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.34741784037559, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.85, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hgam", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHbz,AHab,AHwe,AHmt", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-archmage.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhostMage.blp", + "skinType": "unit", + "heroAbilSkinList": "AHbz,AHab,AHwe,AHmt", + "abilSkinList": "AInv", + "skinnableID": "Hgam", + "file": "units\\other\\HeroArchMageGhost\\HeroArchMageGhost", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "addon": "Heroes" + }, + "Hhkl": { + "unitID": "Hhkl", + "sort": "z1", + "comment(s)": "Halahk the Lifebringer", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hhkl", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "halahk", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hhkl", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hhkl", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.433, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hhkl", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHalahkTheLifeBringer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Hhkl", + "file:hd": "Units\\Human\\HeroHalahk\\HeroHalahk", + "file:sd": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss", + "unitSound": "HeroPaladin", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss_portrait", + "portrait:hd": "Units\\Human\\HeroHalahk\\HeroHalahk_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "weapType1:hd": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hjai": { + "unitID": "Hjai", + "sort": "z1", + "comment(s)": "jaina", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.8, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Hjai", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "jaina", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hjai", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.1, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 19, + "AGI": 17, + "STRplus": 1.8, + "INTplus": 3.2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hjai", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.13, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.55, + "backSw1": 0.4, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.34741784037559, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.4, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hjai", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHbz,AHab,AHwe,AHmt", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-jaina.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNJaina.blp", + "skinType": "unit", + "heroAbilSkinList": "AHbz,AHab,AHwe,AHmt", + "abilSkinList": "AInv", + "skinnableID": "Hjai", + "file": "units\\human\\Jaina\\Jaina", + "unitSound": "Jaina", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "5", + "maxRoll": "5", + "elevRad": "20", + "walk:sd": "400", + "walk:hd": "270", + "run:sd": "400", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "addon": "Heroes" + }, + "Hkal": { + "unitID": "Hkal", + "sort": "z1", + "comment(s)": "Kael", + "race": "human", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hkal", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kael", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hkal", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.5, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 16, + "INT": 19, + "AGI": 15, + "STRplus": 2, + "INTplus": 3, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hkal", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.13, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.34741784037559, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.85, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hkal", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Asph", + "heroAbilList": "AHfs,AHbn,AHdr,AHpx", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\BloodElfMissile\\BloodElfMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-sorceror.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodMage2.blp", + "skinType": "unit", + "heroAbilSkinList": "AHfs,AHbn,AHdr,AHpx", + "abilSkinList": "AInv,Asph", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Hkal", + "file": "units\\human\\Kael\\Kael", + "unitSound": "Kael", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "65", + "shadowY": "65", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "addon": "Heroes" + }, + "Hlgr": { + "unitID": "Hlgr", + "sort": "z1", + "comment(s)": "Lord Garithos", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 5.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hlgr", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lordgarithos", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hlgr", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 120, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 100, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hlgr", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.567, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hlgr", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANsh,AHhb,AHad,ANav", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-garithos.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGarithos.blp", + "skinType": "unit", + "heroAbilSkinList": "ANsh,AHhb,AHad,ANav", + "abilSkinList": "AInv", + "modelScale:hd": "1.0", + "modelScale:sd": "1.2", + "skinnableID": "Hlgr", + "file": "units\\creeps\\LordGarithos\\LordGarithos", + "unitSound": "Garithos", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "380", + "walk:hd": "270", + "run:sd": "380", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hmbr": { + "unitID": "Hmbr", + "sort": "z1", + "comment(s)": "muradin bronzebeard", + "race": "human", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Hmbr", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "muradinbronzebeard", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hmbr", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 225, + "mana0": 200, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2.3, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 24, + "INT": 15, + "AGI": 11, + "STRplus": 3, + "INTplus": 1.5, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hmbr", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.22, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.633, + "backSw1": 0.366, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.15315315315315, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.633, + "backSw2": 0.366, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hmbr", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHtc,AHtb,AHbh,AHav", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-mountainking.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMuradinBronzeBeard.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroMountainKing.blp", + "skinType": "unit", + "heroAbilSkinList": "AHtc,AHtb,AHbh,AHav", + "abilSkinList": "AInv", + "modelScale:hd": "1.0", + "modelScale:sd": "1", + "skinnableID": "Hmbr", + "file": "units\\human\\Muradin\\Muradin", + "unitSound": "Muradin", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hmgd": { + "unitID": "Hmgd", + "sort": "z1", + "comment(s)": "Magroth the Defender", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hmgd", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "margoth", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hmgd", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hmgd", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.433, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hmgd", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMagrothTheDefender.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Hmgd", + "file:hd": "Units\\Human\\HeroMagroth\\HeroMagroth", + "file:sd": "units\\human\\HeroPaladin\\HeroPaladin", + "unitSound": "HeroPaladin", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\human\\HeroPaladin\\HeroPaladin_portrait", + "portrait:hd": "Units\\Human\\HeroMagroth\\HeroMagroth_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hpb1": { + "unitID": "Hpb1", + "sort": "z1", + "comment(s)": "paladin boss 1", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Hpb1", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "paladinboss1", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hpb1", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hpb1", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.433, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hpb1", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLordNicholasBuzan.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Hpb1", + "file": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss", + "unitSound": "HeroPaladin", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "weapType1:hd": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hpb2": { + "unitID": "Hpb2", + "sort": "z1", + "comment(s)": "paladin boss 2", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Hpb2", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "paladinboss2", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hpb2", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hpb2", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.433, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hpb2", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSirGregoryEdmunson.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Hpb2", + "file": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2", + "unitSound": "HeroPaladin", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "weapType1:hd": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Huth": { + "unitID": "Huth", + "sort": "z1", + "comment(s)": "uther", + "race": "human", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Huth", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "uther", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Huth", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Huth", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.18181818181818, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.433, + "backSw2": 0.567, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Huth", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHhb,AHds,AHre,AHad", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNUther.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "skinType": "unit", + "heroAbilSkinList": "AHhb,AHds,AHre,AHad", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1.1", + "skinnableID": "Huth", + "file": "units\\human\\Uther\\Uther", + "unitSound": "Uther", + "blend": "0.15", + "scale": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hvsh": { + "unitID": "Hvsh", + "sort": "z1", + "comment(s)": "Lady Vashj", + "race": "naga", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hvsh", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ladyvashj", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "Hvsh", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 300, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 20, + "AGI": 14, + "STRplus": 2, + "INTplus": 3.4, + "AGIplus": 1, + "abilTest": 6.4, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hvsh", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.73, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.63157894736842, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hvsh", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANfl,ANfa,ANms,ANto", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\NagaArrowMissile\\NagaArrowMissile.mdl", + "Missilearc": "0.08", + "Missilespeed": "1200", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-seawitch.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLadyVashj.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNagaSeaWitch.blp", + "skinType": "unit", + "heroAbilSkinList": "ANfl,ANfa,ANms,ANto", + "abilSkinList": "AInv", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "Hvsh", + "file": "units\\naga\\LadyVashj\\LadyVashj", + "unitSound": "SeaWitch", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "110", + "impactZ:hd": "120", + "projectileVisOffsetY:hd": "40", + "addon": "Heroes" + }, + "Hvwd": { + "unitID": "Hvwd", + "sort": "z1", + "comment(s)": "sylvanas windrunner", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Hvwd", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sylvanuswindrunner", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hvwd", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 225, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.7, + "defType": "hero", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 15, + "AGI": 19, + "STRplus": 1.9, + "INTplus": 2.6, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hvwd", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward,wall", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.46, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.7, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.84552845528455, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.7, + "backSw2": 0.58, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hvwd", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AHca,AEst,AEar,AEsf", + "Missileart": "Abilities\\Weapons\\MoonPriestessMissile\\MoonPriestessMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-sylvanus.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSylvanusWindrunner.blp", + "skinType": "unit", + "heroAbilSkinList": "AHca,AEst,AEar,AEsf", + "abilSkinList": "AInv,Ault", + "abilSkinList:melee,V0": "AInv", + "abilSkinList:custom,V0": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1.1", + "skinnableID": "Hvwd", + "file": "units\\creeps\\SylvanusWindrunner\\SylvanusWindrunner", + "unitSound": "Sylvanus", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "110", + "impactZ:hd": "95", + "projectileVisOffsetX:hd": "-6", + "projectileVisOffsetY:hd": "50", + "addon": "Heroes" + }, + "Naka": { + "unitID": "Naka", + "sort": "z1", + "comment(s)": "Akama", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Naka", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "akama", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Naka", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 2, + "realdef": 5, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 19, + "AGI": 20, + "STRplus": 2, + "INTplus": 2.8, + "AGIplus": 1.2, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "Naka", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 8, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 9, + "maxdmg1": 16, + "dmgpt1": 0.59, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Naka", + "sortAbil": "z2", + "auto": "_", + "abilList": "AInv,Apiv,Ahid", + "heroAbilList": "ACs7,AOcl,AEsh,ANr2", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-akama.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDranaiAkama.blp", + "skinType": "unit", + "heroAbilSkinList": "ACs7,AOcl,AEsh,ANr2", + "abilSkinList": "AInv,Apiv,Ahid", + "skinnableID": "Naka", + "file": "units\\other\\DranaiAkama\\DranaiAkama", + "unitSound": "Akama", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "320", + "run:sd": "210", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "150", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "150", + "addon": "Heroes" + }, + "Nbbc": { + "unitID": "Nbbc", + "sort": "z1", + "comment(s)": "blackrock blademaster", + "race": "orc", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Nbbc", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "blackrockblademaster", + "unitClass": "OHero04", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nbbc", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 575, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.9, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 19, + "INT": 16, + "AGI": 23, + "STRplus": 2, + "INTplus": 2.25, + "AGIplus": 1.75, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nbbc", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.77, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.33, + "backSw1": 0.84, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.34463276836158, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.33, + "backSw2": 0.84, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nbbc", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOwk,AOcr,AOmi,AOww", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-chaosblademaster.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosBlademaster.blp", + "skinType": "unit", + "heroAbilSkinList": "AOwk,AOcr,AOmi,AOww", + "abilSkinList": "AInv", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Nbbc", + "file": "units\\demon\\HeroChaosBladeMaster\\HeroChaosBladeMaster", + "unitSound": "HeroBladeMaster", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nkjx": { + "unitID": "Nkjx", + "sort": "z1", + "comment(s)": "Kiljaeden - cinematic only", + "race": "undead", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Nkjx", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kiljaedencinematic", + "unitClass": "zzdemon", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nkjx", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 4.5, + "AGIplus": 1, + "abilTest": 8, + "Primary": "STR", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nkjx", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nkjx", + "sortAbil": "z1", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-archimonde.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKiljaedin.blp", + "skinType": "unit", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Nkjx", + "file": "units\\other\\KiljaedenCinema\\KiljaedenCinema", + "UnitSound": "Tichondrius", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "portrait:sd": "units\\other\\KiljaedenCinema\\KiljaedenCinema", + "portrait:hd": "units\\other\\KiljaedenCinema\\KiljaedenCinema_portrait", + "impactSwimZ": "0", + "impactZ": "70", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "70", + "addon": "Heroes" + }, + "Nklj": { + "unitID": "Nklj", + "sort": "z1", + "comment(s)": "Kiljaeden", + "race": "undead", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Nklj", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kiljaeden", + "unitClass": "zzdemon", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nklj", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 4.5, + "AGIplus": 1, + "abilTest": 8, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nklj", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nklj", + "sortAbil": "z1", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-archimonde.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKiljaedin.blp", + "skinType": "unit", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Nklj", + "file": "units\\demon\\Kiljaeden\\Kiljaeden", + "unitSound": "Tichondrius", + "blend": "0.15", + "scale": "1.7", + "legacyScale": "1.7", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "70", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "70", + "addon": "Heroes" + }, + "Nmag": { + "unitID": "Nmag", + "sort": "z1", + "comment(s)": "Magtheridon", + "race": "undead", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Nmag", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "magtheridon", + "unitClass": "zzdemon", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nmag", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 725, + "regenHP": 0.5, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 1.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 16, + "AGI": 13, + "STRplus": 3, + "INTplus": 1.8, + "AGIplus": 1.2, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Nmag", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 200, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.8, + "backSw1": 0.7, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.41463414634146, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.8, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nmag", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANrf,ANht,ANca,ANdo", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-pitlord.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMagtheridon.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPitLord.blp", + "skinType": "unit", + "heroAbilSkinList": "ANrf,ANht,ANca,ANdo", + "abilSkinList": "AInv", + "modelScale:hd": "1.35", + "modelScale:sd": "1.35", + "skinnableID": "Nmag", + "file:hd": "Units\\Demon\\Magtheridon\\Magtheridon", + "file:sd": "units\\demon\\HeroPitLord\\HeroPitLord", + "unitSound:hd": "Magtheridon", + "unitSound:sd": "PitLord", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk": "125", + "run": "350", + "selZ": "0", + "armor": "Stone", + "legacyModelScale": "1.35", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "portrait:sd": "units\\demon\\HeroPitLord\\HeroPitLord_portrait", + "portrait:hd": "Units\\Demon\\Magtheridon\\Magtheridon_portrait", + "impactSwimZ": "0", + "impactZ": "90", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nman": { + "unitID": "Nman", + "sort": "z1", + "comment(s)": "mannoroth", + "race": "undead", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Nman", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mannoroth", + "unitClass": "UUnit15", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nman", + "sortBalance": "z1", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 4250, + "realHP": 5000, + "regenHP": 1, + "regenType": "always", + "manaN": 0, + "realM": 300, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 2, + "realdef": 3.1, + "defType": "hero", + "spd": 250, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1800, + "nsight": 800, + "STR": 30, + "INT": 20, + "AGI": 17, + "STRplus": 3, + "INTplus": 2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Nman", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 200, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "normal", + "cool1": 1.3, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 14, + "dmgUp1": "-", + "mindmg1": 15, + "avgdmg1": 18.5, + "maxdmg1": 22, + "dmgpt1": 0.833, + "backSw1": 0.45, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 14.2307692307692, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.833, + "backSw2": 0.45, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nman", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOsh,AHtc,AOeq,ANrn", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-mannaroth.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMannoroth.blp", + "skinType": "unit", + "heroAbilSkinList": "AOsh,AHtc,AOeq,ANrn", + "abilSkinList": "AInv", + "skinnableID": "Nman", + "file": "units\\demon\\Mannoroth\\Mannoroth", + "unitSound": "Mannoroth", + "blend:hd": "0.3", + "blend:sd": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "90", + "walk:hd": "250", + "run:sd": "90", + "run:hd": "250", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.4", + "modelScale:sd": "1.7", + "legacyModelScale": "1.7", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "90", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Npld": { + "unitID": "Npld", + "sort": "z1", + "comment(s)": "pit lord", + "race": "undead", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 6, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Npld", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "oldpitlord", + "unitClass": "zzdemon", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Npld", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 100, + "realHP": 850, + "regenHP": 1, + "regenType": "always", + "manaN": 0, + "realM": 300, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 2, + "realdef": 3.1, + "defType": "hero", + "spd": 250, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 30, + "INT": 20, + "AGI": 17, + "STRplus": 3, + "INTplus": 2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "C", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "Npld", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.75, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 17, + "maxdmg1": 22, + "dmgpt1": 0.8, + "backSw1": 0.7, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 22, + "DPS": 8.29268292682927, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.05, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.8, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Npld", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOsh,AHtc,AOeq,ANrn", + "Attachmentanimprops": "large", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-pitlord.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAzgalor.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPitLord.blp", + "skinType": "unit", + "heroAbilSkinList": "AOsh,AHtc,AOeq,ANrn", + "abilSkinList": "AInv", + "modelScale:hd": "1.05", + "modelScale:sd": "1.35", + "skinnableID": "Npld", + "file": "units\\demon\\PitLord\\PitLord", + "unitSound": "PitLord", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "250", + "run:sd": "210", + "run:hd": "250", + "selZ": "0", + "armor": "Stone", + "legacyModelScale": "1.35", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Nsjs": { + "unitID": "Nsjs", + "sort": "z1", + "comment(s)": "Chen Stormstout", + "race": "orc", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Nsjs", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sinjostormstout", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nsjs", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 105, + "HP": 100, + "realHP": 675, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2.6, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 23, + "INT": 15, + "AGI": 12, + "STRplus": 3, + "INTplus": 1.5, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nsjs", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.22, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.35, + "backSw1": 0.65, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.15315315315315, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.35, + "backSw2": 0.65, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nsjs", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANcf,Acdh,Acdb,Acef,Aamk", + "Missileart": "Abilities\\Weapons\\BrewmasterMissile\\BrewmasterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Buttonpos": "1,1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-pandarenbrewmaster.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNChenStormstout.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPandarenBrewmaster.blp", + "skinType": "unit", + "heroAbilSkinList": "ANcf,Acdh,Acdb,Acef,Aamk", + "abilSkinList": "AInv", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "skinnableID": "Nsjs", + "file:hd": "Units\\Creeps\\ChenStormstout\\ChenStormstout", + "file:sd": "Units\\Creeps\\PandarenBrewmaster\\PandarenBrewmaster", + "unitSound": "PandarenBrewmaster", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\PandarenBrewmaster\\PandarenBrewmaster_portrait", + "portrait:hd": "Units\\Creeps\\ChenStormstout\\ChenStormstout_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Ocb2": { + "unitID": "Ocb2", + "sort": "z1", + "comment(s)": "cairne bloodhoof", + "race": "orc", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Ocb2", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cairnebloodhoofexp", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ocb2", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 210, + "mana0": 200, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2, + "defType": "hero", + "spd": 250, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 14, + "AGI": 10, + "STRplus": 3.2, + "INTplus": 1.3, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Ocb2", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.8, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.36, + "backSw1": 0.97, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.41463414634146, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.36, + "backSw2": 0.97, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ocb2", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOs2,AOr2,AOr3,AOw2,Aamk", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-taurenchieftain.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCairneBloodhoof.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroTaurenChieftain.blp", + "skinType": "unit", + "heroAbilSkinList": "AOs2,AOr2,AOr3,AOw2,Aamk", + "abilSkinList": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Ocb2", + "file": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN", + "unitSound": "Cairne", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "250", + "run:sd": "200", + "run:hd": "250", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\orc\\HeroTaurenChieftain\\HeroTaurenChieftainCIN_portrait", + "portrait:hd": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Ocbh": { + "unitID": "Ocbh", + "sort": "z1", + "comment(s)": "cairne bloodhoof", + "race": "orc", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Ocbh", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cairnebloodhoof", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ocbh", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 210, + "mana0": 200, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2, + "defType": "hero", + "spd": 250, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 14, + "AGI": 10, + "STRplus": 3.2, + "INTplus": 1.3, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Ocbh", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.8, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.36, + "backSw1": 0.97, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.41463414634146, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.36, + "backSw2": 0.97, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ocbh", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOsh,AOae,AOre,AOws", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-taurenchieftain.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCairneBloodhoof.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroTaurenChieftain.blp", + "skinType": "unit", + "heroAbilSkinList": "AOsh,AOae,AOre,AOws", + "abilSkinList": "AInv", + "abilSkinList:custom,V1": "AInv,Asa2", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Ocbh", + "file": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN", + "unitSound": "Cairne", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "250", + "run:sd": "200", + "run:hd": "250", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\orc\\HeroTaurenChieftain\\HeroTaurenChieftainCIN_portrait", + "portrait:hd": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Odrt": { + "unitID": "Odrt", + "sort": "z1", + "comment(s)": "Drek'Thar", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Odrt", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "drekthar", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Odrt", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 120, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 19, + "AGI": 18, + "STRplus": 2, + "INTplus": 3, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Odrt", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.07, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.28, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.19298245614035, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Odrt", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOfs,AOsf,AOcl,AOeq", + "Buttonpos": "1,2", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-farseer.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDrekThar.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroFarseer.blp", + "skinType": "unit", + "heroAbilSkinList": "AOfs,AOsf,AOcl,AOeq", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Odrt", + "file:hd": "Units\\Orc\\DrekThar\\DrekThar", + "file:sd": "units\\orc\\HeroFarSeer\\HeroFarSeer", + "unitSound": "DrekThar", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\orc\\HeroFarSeer\\HeroFarSeer_portrait", + "portrait:hd": "Units\\Orc\\DrekThar\\DrekThar_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Ogld": { + "unitID": "Ogld", + "sort": "z1", + "comment(s)": "Gul'Dan", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Ogld", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "guldan", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ogld", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 120, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 100, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ogld", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 1500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 1500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 2.28, + "mincool1": "-", + "dice1": 4, + "sides1": 20, + "dmgplus1": 80, + "dmgUp1": "-", + "mindmg1": 84, + "avgdmg1": 122, + "maxdmg1": 160, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 46, + "DPS": 53.5087719298246, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ogld", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\SerpentWardMissile\\SerpentWardMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGuldan.blp", + "skinType": "unit", + "abilSkinList": "AInv", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "Ogld", + "file": "units\\orc\\OrcWarlockGuldan\\OrcWarlockGuldan", + "unitSound": "PitLord", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "380", + "walk:hd": "270", + "run:sd": "380", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetX:hd": "-30", + "projectileVisOffsetY:hd": "55", + "addon": "Heroes" + }, + "Ogrh": { + "unitID": "Ogrh", + "sort": "z1", + "comment(s)": "grom hellscream", + "race": "orc", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Ogrh", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gromhellscream", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ogrh", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 575, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.9, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 19, + "INT": 16, + "AGI": 23, + "STRplus": 2, + "INTplus": 2.25, + "AGIplus": 1.75, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ogrh", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.77, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.34463276836158, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ogrh", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOwk,AOcr,AOmi,AOww", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-grom.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHellScream.blp", + "skinType": "unit", + "heroAbilSkinList": "AOwk,AOcr,AOmi,AOww", + "abilSkinList": "AInv", + "abilSkinList:custom,V1": "AInv,Asa2", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Ogrh", + "file": "units\\orc\\Hellscream\\Hellscream", + "unitSound": "Grom", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Opgh": { + "unitID": "Opgh", + "sort": "z1", + "comment(s)": "possessed grom hellscream", + "race": "orc", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Opgh", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "possessedgromhellscream", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Opgh", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 575, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.9, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 19, + "INT": 16, + "AGI": 23, + "STRplus": 2, + "INTplus": 2.25, + "AGIplus": 1.75, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Opgh", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.77, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 12, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 25, + "maxdmg1": 36, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 41, + "DPS": 14.1242937853107, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Opgh", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOwk,AOcr,AOmi,AOww", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-chaosgrom.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosGrom.blp", + "skinType": "unit", + "heroAbilSkinList": "AOwk,AOcr,AOmi,AOww", + "abilSkinList": "AInv", + "abilSkinList:custom,V1": "AInv,Asa2", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "skinnableID": "Opgh", + "file": "units\\demon\\ChaosHellscream\\ChaosHellscream", + "unitSound": "Grom", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Orex": { + "unitID": "Orex", + "sort": "z1", + "comment(s)": "Rexxar", + "race": "orc", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Orex", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rexxar", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Orex", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 0, + "stockStart": 135, + "HP": 100, + "realHP": 725, + "regenHP": 0.5, + "regenType": "always", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 3.2, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 18, + "AGI": 14, + "STRplus": 2.9, + "INTplus": 2, + "AGIplus": 1.3, + "abilTest": 6.2, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Orex", + "sortWeap": "z1", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 17, + "maxdmg1": 22, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 22, + "DPS": 8.29268292682927, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.3, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Orex", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "Arsg,Arsq,ANsb,Arsp,Aamk", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\RexxarMissile\\RexxarMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-beastmaster.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRexxar.blp", + "skinType": "unit", + "heroAbilSkinList": "Arsg,Arsq,ANsb,Arsp,Aamk", + "abilSkinList": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Orex", + "file": "Units\\Other\\Rexxar\\Rexxar", + "unitSound": "Beastmaster", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "90", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Orkn": { + "unitID": "Orkn", + "sort": "z1", + "comment(s)": "Rokhan", + "race": "orc", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Orkn", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rokhan", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Orkn", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 475, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 270, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 15, + "INT": 18, + "AGI": 20, + "STRplus": 2, + "INTplus": 2.5, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Orkn", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.07, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.28, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.19298245614035, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Orkn", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANhw,ANhx,Arsw,AOls,Aamk", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\ShadowHunterMissile\\ShadowHunterMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-shadowhunter.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRokhan.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNShadowHunter.blp", + "skinType": "unit", + "heroAbilSkinList": "ANhw,ANhx,Arsw,AOls,Aamk", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Orkn", + "file:hd": "Units\\Orc\\Rokhan\\Rokhan", + "file:sd": "units\\orc\\HeroShadowHunter\\HeroShadowHunter", + "unitSound": "Rokhan", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "85", + "shadowY": "85", + "portrait:sd": "units\\orc\\HeroShadowHunter\\HeroShadowHunter_portrait", + "portrait:hd": "Units\\Orc\\Rokhan\\Rokhan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "70", + "projectileVisOffsetX:hd": "-50", + "projectileVisOffsetY:hd": "150", + "addon": "Heroes" + }, + "Osam": { + "unitID": "Osam", + "sort": "z1", + "comment(s)": "Samuro", + "race": "orc", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Osam", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "samuro", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Osam", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.9, + "defType": "hero", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 16, + "AGI": 23, + "STRplus": 2, + "INTplus": 2.25, + "AGIplus": 1.75, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Osam", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.77, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.33, + "backSw1": 0.84, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.34463276836158, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.33, + "backSw2": 0.84, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Osam", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOwk,AOcr,AOmi,AOww", + "Buttonpos": "0,2", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-blademaster.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSamuro.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroBlademaster.blp", + "skinType": "unit", + "heroAbilSkinList": "AOwk,AOcr,AOmi,AOww", + "abilSkinList": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "Osam", + "file:hd": "Units\\Orc\\Samuro\\Samuro", + "file:sd": "units\\orc\\HeroBladeMaster\\HeroBladeMaster", + "unitSound": "HeroBladeMaster", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "290", + "walk:hd": "300", + "run:sd": "290", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\orc\\HeroBladeMaster\\HeroBladeMaster_portrait", + "portrait:hd": "Units\\Orc\\Samuro\\Samuro_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "50", + "addon": "Heroes" + }, + "Otcc": { + "unitID": "Otcc", + "sort": "z1", + "comment(s)": "cairne bloodhoof cinematic", + "race": "orc", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Otcc", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "cairnebloodhoofcinematic", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Otcc", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 725, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 210, + "mana0": 200, + "regenMana": 0.01, + "def": 1, + "defUp": 0, + "realdef": 2, + "defType": "hero", + "spd": 250, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 25, + "INT": 14, + "AGI": 10, + "STRplus": 3.2, + "INTplus": 1.3, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Otcc", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.8, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.05, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.36, + "backSw1": 0.97, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.41463414634146, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.36, + "backSw2": 0.97, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Otcc", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOsh,AOae,AOre,AOws", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-taurenchieftain.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCairneBloodhoof.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroTaurenChieftain.blp", + "skinType": "unit", + "heroAbilSkinList": "AOsh,AOae,AOre,AOws", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Otcc", + "file": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN", + "unitSound": "Cairne", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "250", + "run:sd": "200", + "run:hd": "250", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "100", + "shadowY": "100", + "portrait:sd": "units\\orc\\HeroTaurenChieftain\\HeroTaurenChieftainCIN_portrait", + "portrait:hd": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Othr": { + "unitID": "Othr", + "sort": "z1", + "comment(s)": "thrall", + "race": "orc", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Othr", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "thrall", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Othr", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 16, + "INT": 19, + "AGI": 18, + "STRplus": 2, + "INTplus": 3, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Othr", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.6, + "castbsw": 1, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.28, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.19298245614035, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Othr", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOfs,AOsf,AOcl,AOeq", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-thrall.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThrall.blp", + "skinType": "unit", + "heroAbilSkinList": "AOfs,AOsf,AOcl,AOeq", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Othr", + "file": "units\\orc\\Thrall\\Thrall", + "unitSound": "Thrall", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "165", + "projectileVisOffsetY:hd": "10", + "addon": "Heroes" + }, + "Oths": { + "unitID": "Oths", + "sort": "z1", + "comment(s)": "thrall unmounted", + "race": "orc", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Oths", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "thrall unmounted", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Oths", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.4, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 16, + "INT": 19, + "AGI": 18, + "STRplus": 2, + "INTplus": 3, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Oths", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.6, + "castbsw": 1, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.28, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.19298245614035, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Oths", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOfs,AOsf,AOcl,AOeq", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-thrall.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThrall.blp", + "skinType": "unit", + "heroAbilSkinList": "AOfs,AOsf,AOcl,AOeq", + "abilSkinList": "AInv", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "skinnableID": "Oths", + "file": "units\\orc\\ThrallMountless\\ThrallMountless", + "unitSound": "Thrall", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Uanb": { + "unitID": "Uanb", + "sort": "z1", + "comment(s)": "anub'arak", + "race": "undead", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Uanb", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "anubarak", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Uanb", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 25, + "realHP": 675, + "regenHP": 2, + "regenType": "blight", + "manaN": 0, + "realM": 210, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 26, + "INT": 14, + "AGI": 14, + "STRplus": 3.2, + "INTplus": 1.6, + "AGIplus": 1.2, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Uanb", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.4, + "castbsw": 1.1, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.46, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.63157894736842, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Uanb", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUim,AUts,AUcb,AUls", + "Buttonpos": "0,1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-cryptlord.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAnubarak.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroCryptLord.blp", + "skinType": "unit", + "heroAbilSkinList": "AUim,AUts,AUcb,AUls", + "abilSkinList": "AInv", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Uanb", + "file": "units\\undead\\Anubarak\\Anubarak", + "unitSound": "HeroCryptLord", + "blend": "0.15", + "scale": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "30", + "maxRoll": "30", + "elevRad": "100", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "280", + "shadowH": "280", + "shadowX": "112", + "shadowY": "112", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "addon": "Heroes" + }, + "Ubal": { + "unitID": "Ubal", + "sort": "z1", + "comment(s)": "balnazzar", + "race": "undead", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Ubal", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "balnazzar", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Ubal", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 4.5, + "AGIplus": 1, + "abilTest": 8, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Ubal", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 1.53, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Ubal", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUsl,AUav,ANr3,AOeq,ACf3", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-tichondrius.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBalnazzar.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTichondrius.blp", + "skinType": "unit", + "heroAbilSkinList": "AUsl,AUav,ANr3,AOeq,ACf3", + "abilSkinList": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1.6", + "skinnableID": "Ubal", + "file:hd": "Units\\Undead\\Balnazzar\\Balnazzar", + "file:sd": "units\\undead\\Tichondrius\\Tichondrius", + "unitSound": "HeroDreadLord", + "blend": "0.15", + "scale": "1.9", + "legacyScale": "1.9", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.6", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\Tichondrius\\Tichondrius_portrait", + "portrait:hd": "Units\\Undead\\Balnazzar\\Balnazzar_portrait", + "impactSwimZ": "0", + "impactZ": "200", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "140", + "addon": "Heroes" + }, + "Uclc": { + "unitID": "Uclc", + "sort": "z1", + "comment(s)": "kelthuzadlich cinematic", + "race": "undead", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Uclc", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kelthuzadlichcinematic", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Uclc", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 450, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 300, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 14, + "INT": 20, + "AGI": 14, + "STRplus": 1.6, + "INTplus": 3.4, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Uclc", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 1.1, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.46, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.63157894736842, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Uclc", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUfn,AUfu,AUdr,AUdd", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-lich.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNKelThuzadCin.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLichVersion2.blp", + "skinType": "unit", + "heroAbilSkinList": "AUfn,AUfu,AUdr,AUdd", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Uclc", + "file": "units\\undead\\HeroLichCIN\\HeroLichCIN", + "unitSound": "KelThuzadLich", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\HeroLichCIN\\HeroLichCIN", + "portrait:hd": "units\\undead\\HeroLichCIN\\HeroLichCIN_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "impactZ:hd": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "130", + "projectileVisOffsetY:hd": "100", + "addon": "Heroes" + }, + "Udth": { + "unitID": "Udth", + "sort": "z1", + "comment(s)": "dethecus", + "race": "undead", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Udth", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "detheroc", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Udth", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 4.5, + "AGIplus": 1, + "abilTest": 8, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Udth", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.9, + "castbsw": 1.1, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Udth", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUsl,AEsh,AUcs,AUdd", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-dreadlord.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDetheroc.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDreadlord.blp", + "skinType": "unit", + "heroAbilSkinList": "AUsl,AEsh,AUcs,AUdd", + "abilSkinList": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1.4", + "skinnableID": "Udth", + "file:hd": "Units\\Undead\\Detheroc\\Detheroc", + "file:sd": "units\\undead\\HeroDreadLord\\HeroDreadLord", + "unitSound": "HeroDreadLord", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\HeroDreadLord\\HeroDreadLord_portrait", + "portrait:hd": "Units\\Undead\\Detheroc\\Detheroc_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "150", + "projectileVisOffsetX:hd": "-50", + "projectileVisOffsetY:hd": "150", + "addon": "Heroes" + }, + "Uear": { + "unitID": "Uear", + "sort": "z1", + "comment(s)": "evil arthas", + "race": "undead", + "prio": 13, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Uear", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "evilarthas", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Uear", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 675, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 255, + "mana0": 200, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.6, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 23, + "INT": 17, + "AGI": 12, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Uear", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.452, + "castbsw": 1.008, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2.33, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.56, + "backSw1": 0.41, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.00429184549356, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.56, + "backSw2": 0.41, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Uear", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUdc,AUdp,AUau,AUa2", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-deathknight.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNArthasEvil.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDeathKnight.blp", + "skinType": "unit", + "heroAbilSkinList": "AUdc,AUdp,AUau,AUa2", + "abilSkinList": "AInv", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "skinnableID": "Uear", + "file": "units\\undead\\EvilArthas\\UndeadArthas", + "unitSound": "EvilArthas", + "blend": "0.15", + "scale": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "380", + "walk:hd": "320", + "run:sd": "380", + "run:hd": "320", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavySlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Uktl": { + "unitID": "Uktl", + "sort": "z1", + "comment(s)": "kelthuzadlich", + "race": "undead", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Uktl", + "sortUI": "z1", + "fileVerFlags": 2, + "tilesetSpecific": "0", + "name": "kelthuzadlich", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Uktl", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 450, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 300, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.2, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 14, + "INT": 20, + "AGI": 14, + "STRplus": 1.6, + "INTplus": 3.4, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Uktl", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.4, + "castbsw": 1.1, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.46, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.63157894736842, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Uktl", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUfn,AUfu,AUdr,AUdd", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-lich.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLichVersion2.blp", + "skinType": "unit", + "heroAbilSkinList": "AUfn,AUfu,AUdr,AUdd", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Uktl", + "file:hd": "Units\\undead\\HeroLichCIN\\HeroLichCIN", + "file:sd": "units\\undead\\HeroLich\\HeroLich", + "fileVerFlags:hd": "0", + "fileVerFlags:sd": "2", + "unitSound": "KelThuzadLich", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\HeroLich\\HeroLich_portrait", + "portrait:hd": "Units\\undead\\HeroLichCIN\\HeroLichCIN_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Umal": { + "unitID": "Umal", + "sort": "z1", + "comment(s)": "malganis", + "race": "undead", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Umal", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "malganis", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Umal", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 2.5, + "AGIplus": 1, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Umal", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.9, + "castbsw": 1.1, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Umal", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUsl,AUcs,ANsl,ANdc", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-dreadlord.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMalGanis.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDreadlord.blp", + "skinType": "unit", + "heroAbilSkinList": "AUsl,AUcs,ANsl,ANdc", + "abilSkinList": "AInv", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Umal", + "file:hd": "Units\\Undead\\MalGanis\\MalGanis", + "file:sd": "units\\undead\\HeroDreadLord\\HeroDreadLord", + "unitSound": "HeroDreadLord", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\HeroDreadLord\\HeroDreadLord_Portrait", + "portrait:hd": "units\\undead\\MalGanis\\MalGanis_Portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Usyl": { + "unitID": "Usyl", + "sort": "z1", + "comment(s)": "Evil Sylvanas", + "race": "undead", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Usyl", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "evilsylvanas", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Usyl", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.5, + "regenType": "night", + "manaN": 0, + "realM": 225, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.7, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 15, + "AGI": 19, + "STRplus": 1.9, + "INTplus": 2.6, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Usyl", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.4, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.46, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.84552845528455, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.3, + "backSw2": 0.7, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Usyl", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANsi,ANba,ANdr,ANch", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-bansheeranger.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSylvanas.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBansheeRanger.blp", + "skinType": "unit", + "heroAbilSkinList": "ANsi,ANba,ANdr,ANch", + "abilSkinList": "AInv", + "modelScale:hd": "1", + "modelScale:sd": "1", + "skinnableID": "Usyl", + "file": "Units\\Undead\\EvilSylvanas\\EvilSylvanas", + "unitSound": "EvilSylvanas", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Utic": { + "unitID": "Utic", + "sort": "z1", + "comment(s)": "tichondrius", + "race": "undead", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Utic", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tichondrius", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Utic", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "divine", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 4.5, + "AGIplus": 1, + "abilTest": 8, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Utic", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.9, + "castbsw": 1.1, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Utic", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUsl,AUcs,ANrc,ANfd", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-tichondrius.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTichondrius.blp", + "skinType": "unit", + "heroAbilSkinList": "AUsl,AUcs,ANrc,ANfd", + "heroAbilSkinList:custom,V0": "AUsl,AUcs,ANrc,ANfd,AUin", + "abilSkinList": "AInv", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "skinnableID": "Utic", + "file": "units\\undead\\Tichondrius\\Tichondrius", + "unitSound": "Tichondrius", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Uvar": { + "unitID": "Uvar", + "sort": "z1", + "comment(s)": "varimathras", + "race": "undead", + "prio": 11, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Uvar", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "varimathras", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Uvar", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 4.5, + "AGIplus": 1, + "abilTest": 8, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Uvar", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.9, + "castbsw": 1.1, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Uvar", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUsl,AUav,ANrf,ANdo", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-dreadlord.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNVarimathras.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDreadlord.blp", + "skinType": "unit", + "heroAbilSkinList": "AUsl,AUav,ANrf,ANdo", + "abilSkinList": "AInv", + "modelScale:hd": "1.1", + "modelScale:sd": "1.2", + "skinnableID": "Uvar", + "file:hd": "Units\\Undead\\Varimathras\\Varimathras", + "file:sd": "units\\undead\\Tichondrius\\Tichondrius", + "unitSound": "Varimathras", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\Tichondrius\\Tichondrius_portrait", + "portrait:hd": "Units\\Undead\\Varimathras\\Varimathras_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Uvng": { + "unitID": "Uvng", + "sort": "z1", + "comment(s)": "vengyr", + "race": "undead", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Uvng", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "vengyr", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Uvng", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "undead", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 600, + "regenHP": 1, + "regenType": "blight", + "manaN": 0, + "realM": 270, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 2.8, + "defType": "hero", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 20, + "INT": 18, + "AGI": 16, + "STRplus": 2.5, + "INTplus": 4.5, + "AGIplus": 1, + "abilTest": 8, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Uvng", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.9, + "castbsw": 1.1, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.8, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.55, + "backSw1": 0.55, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.88888888888889, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Uvng", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AUav,AUsl,AUcs,AUin", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-dreadlord.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDalvengyr.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDreadlord.blp", + "skinType": "unit", + "heroAbilSkinList": "AUav,AUsl,AUcs,AUin", + "abilSkinList": "AInv", + "modelScale:hd": "1.15", + "modelScale:sd": "1.15", + "skinnableID": "Uvng", + "file:hd": "Units\\Undead\\Dalvengyr\\Dalvengyr", + "file:sd": "units\\undead\\HeroDreadLord\\HeroDreadLord", + "unitSound": "HeroDreadLord", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\undead\\HeroDreadLord\\HeroDreadLord_portrait", + "portrait:hd": "Units\\Undead\\Dalvengyr\\Dalvengyr_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Uwar": { + "unitID": "Uwar", + "sort": "z1", + "comment(s)": "archimonde", + "race": "undead", + "prio": 12, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "Uwar", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "archimonde", + "unitClass": "UUnit16", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Uwar", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": 0, + "HP": 2000, + "realHP": 2525, + "regenHP": 3, + "regenType": "always", + "manaN": 0, + "realM": 300, + "mana0": 200, + "regenMana": 2, + "def": 0, + "defUp": 2, + "realdef": 3.1, + "defType": "divine", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 21, + "INT": 20, + "AGI": 17, + "STRplus": 3, + "INTplus": 4, + "AGIplus": 3, + "abilTest": 10, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "Uwar", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 2, + "mincool1": "-", + "dice1": 6, + "sides1": 20, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 6, + "avgdmg1": 63, + "maxdmg1": 120, + "dmgpt1": 0.5, + "backSw1": 0.6, + "Farea1": 50, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,air,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 31.5, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.5, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Uwar", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,ACm2", + "heroAbilList": "ANrc,ANdp,ANfd,AHbh", + "Missileart": "Abilities\\Weapons\\DemonHunterMissile\\DemonHunterMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-archimonde.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArchimonde.blp", + "skinType": "unit", + "heroAbilSkinList": "ANrc,ANdp,ANfd,AHbh", + "abilSkinList": "AInv,ACm2", + "abilSkinList:melee,V0": "ACm2,AInv", + "abilSkinList:custom,V0": "ACm2,AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1.4", + "skinnableID": "Uwar", + "file": "units\\demon\\Warlock\\Warlock", + "unitSound": "Tichondrius", + "blend": "0.15", + "scale": "2.1", + "legacyScale": "2.1", + "scaleBull": "1", + "maxPitch": "5", + "maxRoll": "5", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "100", + "shadowY": "100", + "impactSwimZ": "0", + "impactZ": "90", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "120", + "addon": "Heroes" + }, + "eilw": { + "unitID": "eilw", + "sort": "z2", + "comment(s)": "illidan wagon", + "race": "nightelf", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.83, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "eilw", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "illidanwagon", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eilw", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 195, + "lumbercost": 35, + "goldRep": 195, + "lumberRep": 35, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 330, + "realHP": 330, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 180, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "eilw", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eilw", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCagedIllidan.blp", + "skinType": "unit", + "skinnableID": "eilw", + "file": "units\\other\\IllidanEvilCaged\\IllidanEvilCaged", + "unitSound": "PrisonWagon", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "180", + "run:sd": "200", + "run:hd": "180", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "enec": { + "unitID": "enec", + "sort": "z2", + "comment(s)": "night elf courier", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "enec", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nightelfrunner", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "enec", + "sortBalance": "z2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 10, + "reptm": 10, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "enec", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "enec", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfRunner.blp", + "skinType": "unit", + "skinnableID": "enec", + "file": "units\\nightelf\\Runner\\Runner", + "unitSound": "Runner", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "190", + "run:sd": "200", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ensh": { + "unitID": "ensh", + "sort": "z2", + "comment(s)": "Naisha", + "race": "nightelf", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ensh", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "naisha", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ensh", + "sortBalance": "z2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 20, + "goldRep": 195, + "lumberRep": 20, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": 1.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resm,Rema,Resc,Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ensh", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.4, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 225, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "mbounce", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 29, + "maxdmg1": 31, + "dmgpt1": 0.46, + "backSw1": 0.54, + "Farea1": 400, + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "ground,structure,debris,item,ward,enemy", + "targCount1": 5, + "damageLoss1": 0.5, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 16.1111111111111, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ensh", + "sortAbil": "z2", + "auto": "_", + "abilList": "Aesr,Ashm,Amgr", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\SentinelMissile\\SentinelMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNaisha.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHuntress.blp", + "skinType": "unit", + "abilSkinList": "Aesr,Ashm,Amgr", + "skinnableID": "ensh", + "file:hd": "Units\\NightElf\\Naisha\\Naisha", + "file:sd": "units\\nightelf\\Huntress\\Huntress", + "unitSound": "Naisha", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "125", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\nightelf\\Huntress\\Huntress_portrait", + "portrait:hd": "Units\\NightElf\\Naisha\\Naisha_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "eshd": { + "unitID": "eshd", + "sort": "z2", + "comment(s)": "shandris", + "race": "nightelf", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "eshd", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "shandris", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "eshd", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 450, + "realHP": 450, + "regenHP": 1, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resm,Rema,Reib,Remk,Reuv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "eshd", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.3, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 26, + "dmgUp1": "-", + "mindmg1": 27, + "avgdmg1": 29.5, + "maxdmg1": 32, + "dmgpt1": 0.72, + "backSw1": 0.28, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 22.6923076923077, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "eshd", + "sortAbil": "z2", + "auto": "_", + "abilList": "Ashm", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShandris.blp", + "skinType": "unit", + "abilSkinList": "Ashm", + "skinnableID": "eshd", + "file": "units\\nightelf\\Shandris\\Shandris", + "unitSound": "Shandris", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "290", + "walk:hd": "270", + "run:sd": "290", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "71", + "addon": "Heroes" + }, + "etrs": { + "unitID": "etrs", + "sort": "z2", + "comment(s)": "night elf transport ship", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3.73, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "etrs", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nightelftransportship", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "etrs", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "Mechanical", + "goldcost": 170, + "lumbercost": 50, + "goldRep": 170, + "lumberRep": 50, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "etrs", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "etrs", + "sortAbil": "z2", + "auto": "_", + "abilList": "Sch5,Slo3,Sdro", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfTransport.blp", + "skinType": "unit", + "abilSkinList": "Sch5,Slo3,Sdro", + "skinnableID": "etrs", + "file": "units\\nightelf\\NightElfTransportShip\\NightElfTransportShip", + "portrait:sd": "units\\nightelf\\NightElfTransportShip\\NightElfTransportShip", + "portrait:hd": "units\\nightelf\\NightElfTransportShip\\NightElfTransportShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "320", + "run:sd": "240", + "run:hd": "320", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hbew": { + "unitID": "hbew", + "sort": "z2", + "comment(s)": "blood elf wagon", + "race": "human", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.83, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "hbew", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bloodelfwagon", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hbew", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 195, + "lumbercost": 35, + "goldRep": 195, + "lumberRep": 35, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 180, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "hbew", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hbew", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodElfSupplyWagon.blp", + "skinType": "unit", + "skinnableID": "hbew", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "file": "units\\other\\BloodElfWagon\\BloodElfWagon", + "portrait:sd": "units\\other\\BloodElfWagon\\BloodElfWagon", + "portrait:hd": "units\\other\\BloodElfWagon\\BloodElfWagon_portrait", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "180", + "run:sd": "200", + "run:hd": "180", + "selZ": "0", + "armor": "Wood", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hcth": { + "unitID": "hcth", + "sort": "z2", + "comment(s)": "the captain", + "race": "human", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.04, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "hcth", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "thecaptain", + "unitClass": " ", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hcth", + "sortBalance": "z2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 130, + "lumbercost": 0, + "goldRep": 130, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 600, + "realHP": 600, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhme", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "hcth", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 20, + "avgdmg1": 20.5, + "maxdmg1": 21, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 20.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hcth", + "sortAbil": "z2", + "auto": "_", + "abilList": "Adef", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTheCaptain.blp", + "skinType": "unit", + "abilSkinList": "Adef", + "skinnableID": "hcth", + "file": "units\\human\\TheCaptain\\TheCaptain", + "unitSound": "Captain", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hhdl": { + "unitID": "hhdl", + "sort": "z2", + "comment(s)": "headless rider", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 5.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "hhdl", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "riderlesshorse", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hhdl", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 240, + "lumbercost": 40, + "goldRep": 240, + "lumberRep": 40, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 100, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhan", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hhdl", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hhdl", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRiderlessHorse.blp", + "skinType": "unit", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "hhdl", + "file": "units\\human\\KnightNoRider\\KnightNoRider", + "unitSound": "KnightNoRider", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hhes": { + "unitID": "hhes", + "sort": "z2", + "comment(s)": "high elven swordsman", + "race": "human", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.04, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "hhes", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "highelvenswordsman", + "unitClass": " ", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hhes", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 135, + "lumbercost": 0, + "goldRep": 135, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 420, + "realHP": 420, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhme,Rhde,Rhpm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "hhes", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hhes", + "sortAbil": "z2", + "auto": "_", + "abilList": "Adef", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSwordsman.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTheCaptain.blp", + "skinType": "unit", + "abilSkinList": "Adef", + "skinnableID": "hhes", + "file:hd": "Units\\Human\\HighElfSwordsman\\HighElfSwordsman", + "file:sd": "units\\human\\TheCaptain\\TheCaptain", + "unitSound": "HighElfSwordsman", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "180", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\human\\TheCaptain\\TheCaptain_portrait", + "portrait:hd": "Units\\Human\\HighElfSwordsman\\HighElfSwordsman_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hprt": { + "unitID": "hprt", + "sort": "z2", + "comment(s)": "portal unit", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "hprt", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "shimmeringportal", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hprt", + "sortBalance": "z2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 100, + "realHP": 100, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "hprt", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.5, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hprt", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPortal.blp", + "skinType": "unit", + "skinnableID": "hprt", + "file": "doodads\\cinematic\\ShimmeringPortal\\ShimmeringPortal", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "25", + "maxRoll": "25", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Ethereal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "hrdh": { + "unitID": "hrdh", + "sort": "z2", + "comment(s)": "pack horse", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 5.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 5, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "hrdh", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "packhorse", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hrdh", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 240, + "lumbercost": 40, + "goldRep": 240, + "lumberRep": 40, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 100, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "hrdh", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hrdh", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNPackHorse.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRiderlessHorse.blp", + "skinType": "unit", + "skinnableID": "hrdh", + "file": "units\\critters\\PackHorse\\PackHorse", + "unitSound": "KnightNoRider", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbee": { + "unitID": "nbee", + "sort": "z2", + "comment(s)": "blood elf engineer", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbee", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bloodelfengineer", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbee", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "Peon", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 220, + "realHP": 220, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhlh,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nbee", + "sortWeap": "z2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 3, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 7.5, + "maxdmg1": 8, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 2.5, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbee", + "sortAbil": "z2", + "auto": "_", + "abilList": "Ahar,Ahrp", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodElfPeasant.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Ahrp", + "skinnableID": "nbee", + "file:hd": "Units\\Critters\\BloodElfEngineer\\BloodElfEngineer", + "file:sd": "units\\critters\\HighElfPeasant\\HighElfPeasant", + "unitSound": "BloodElfEngineer", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "units\\critters\\HighElfPeasant\\HighElfPeasant_portrait", + "portrait:hd": "Units\\Critters\\BloodElfEngineer\\BloodElfEngineer_portrait", + "impactSwimZ": "0", + "impactZ": "45", + "weapType1": "MetalLightChop", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbel": { + "unitID": "nbel", + "sort": "z2", + "comment(s)": "blood elf lieutenant", + "race": "human", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbel", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bloodelflieutenant", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbel", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 155, + "lumbercost": 20, + "goldRep": 155, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 750, + "realHP": 750, + "regenHP": 0.25, + "regenType": "always", + "manaN": 250, + "realM": 250, + "mana0": 100, + "regenMana": 0.625, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nbel", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 200, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 37, + "avgdmg1": 42, + "maxdmg1": 47, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.1052631578947, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbel", + "sortAbil": "z2", + "auto": "Asps", + "abilList": "Asps,Amim,Aiun", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\BloodElfSpellThiefMISSILE\\BloodElfSpellThiefMISSILE.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBloodElfLieutenant.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpellBreaker.blp", + "skinType": "unit", + "abilSkinList": "Asps,Amim,Aiun", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "nbel", + "file": "units\\other\\BloodElfLieutenant\\BloodElfLieutenant", + "unitSound": "SpellBreaker", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "300", + "walk:hd": "270", + "run:sd": "300", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nbsp": { + "unitID": "nbsp", + "sort": "z2", + "comment(s)": "battleship", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.1, + "propWin": 15, + "orientInterp": 3, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nbsp", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "battleship", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbsp", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 45, + "lumberRep": 50, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "N", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 2, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "nbsp", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbsp", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShip.blp", + "skinType": "unit", + "skinnableID": "nbsp", + "file": "doodads\\northrend\\water\\Battleship\\Battleship", + "portrait:sd": "doodads\\northrend\\water\\Battleship\\Battleship", + "portrait:hd": "doodads\\northrend\\water\\Battleship\\Battleship_portrait", + "unitSound": "boat", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "40", + "run:sd": "250", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nchg": { + "unitID": "nchg", + "sort": "z2", + "comment(s)": "chaos grunt", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nchg", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaosgrunt", + "unitClass": "OUnit20", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nchg", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 200, + "lumbercost": 0, + "goldRep": 200, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 780, + "realHP": 780, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Robs,Ropg", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nchg", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.2, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 20.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nchg", + "sortAbil": "z2", + "auto": "_", + "abilList": "Asal", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosGrunt.blp", + "skinType": "unit", + "abilSkinList": "Asal", + "abilSkinList:melee,V0": "Absk,Asal", + "abilSkinList:custom,V0": "Absk,Asal", + "skinnableID": "nchg", + "file": "units\\demon\\ChaosGrunt\\ChaosGrunt", + "unitSound": "ChaosGrunt", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nchr": { + "unitID": "nchr", + "sort": "z2", + "comment(s)": "ChaosWolfRider", + "race": "orc", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.87, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nchr", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaoswolfrider", + "unitClass": "OUnit21", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nchr", + "sortBalance": "z2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 180, + "lumbercost": 40, + "goldRep": 180, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 690, + "realHP": 690, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Roen,Ropg", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nchr", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.65, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 15.1515151515152, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nchr", + "sortAbil": "z2", + "auto": "_", + "abilList": "Aens,Asal", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosWolfRider.blp", + "skinType": "unit", + "abilSkinList": "Aens,Asal", + "skinnableID": "nchr", + "file": "units\\demon\\ChaosWolfRider\\ChaosWolfRider", + "unitSound": "WolfRider", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "360", + "walk:hd": "350", + "run:sd": "360", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nchw": { + "unitID": "nchw", + "sort": "z2", + "comment(s)": "ChaosWarlock", + "race": "orc", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.334, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nchw", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaoswarlock", + "unitClass": "OUnit19", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nchw", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 220, + "lumbercost": 0, + "goldRep": 220, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 360, + "realHP": 360, + "regenHP": 1, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 75, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nchw", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.43, + "backSw1": 0.74, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 14.2857142857143, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nchw", + "sortAbil": "z2", + "auto": "_", + "abilList": "Awfb,Suhf,Scri", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1100", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosWarlock.blp", + "skinType": "unit", + "abilSkinList": "Awfb,Suhf,Scri", + "skinnableID": "nchw", + "file": "units\\demon\\ChaosWarlock\\ChaosWarlock", + "unitSound": "Shaman", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "150", + "shadowH": "150", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nckb": { + "unitID": "nckb", + "sort": "z2", + "comment(s)": "Chaos Kodo Beast", + "race": "orc", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 2, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nckb", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaoskotobeast", + "unitClass": "OUnit22", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nckb", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 255, + "lumbercost": 60, + "goldRep": 255, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": 1, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "small", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rwdm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "nckb", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.2, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 18, + "maxdmg1": 20, + "dmgpt1": 0.85, + "backSw1": 0.32, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 15, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nckb", + "sortAbil": "z2", + "auto": "_", + "abilList": "Aakb,Advc,Adev", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\Axe\\AxeMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosKotoBeast.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Aakb,Advc,Adev", + "skinnableID": "nckb", + "file": "units\\demon\\ChaosKotoBeast\\ChaosKotoBeast", + "unitSound": "KotoBeast", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "79", + "run:sd": "240", + "run:hd": "230", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "310", + "shadowH": "280", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ncpn": { + "unitID": "ncpn", + "sort": "z2", + "comment(s)": "Chaos Peon", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ncpn", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaospeon", + "unitClass": "OUnit23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncpn", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "Peon", + "goldcost": 70, + "lumbercost": 0, + "goldRep": 70, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 320, + "realHP": 320, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ropg", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ncpn", + "sortWeap": "z2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 3, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 7.5, + "maxdmg1": 8, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 2.5, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncpn", + "sortAbil": "z2", + "auto": "_", + "abilList": "Ahar,Arep,Asal", + "Builds": "ogre,otrb,obar,ofor,oalt,obea,osld,otto,owtw", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosPeon.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Arep,Asal", + "skinnableID": "ncpn", + "file": "units\\demon\\ChaosPeon\\ChaosPeon", + "unitSound": "Peon", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "190", + "run:sd": "180", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "45", + "weapType1": "MetalLightChop", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndmu": { + "unitID": "ndmu", + "sort": "z2", + "comment(s)": "dalaran mutant", + "race": "creeps", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.67, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndmu", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dalaranmutant", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndmu", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 120, + "lumbercost": 0, + "goldRep": 120, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 330, + "realHP": 330, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 18, + "reptm": 18, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ndmu", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.3, + "mincool1": "-", + "dice1": 2, + "sides1": 2, + "dmgplus1": 10, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 13, + "maxdmg1": 14, + "dmgpt1": 0.39, + "backSw1": 0.44, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 10, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndmu", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDalaranMutant.blp", + "skinType": "unit", + "skinnableID": "ndmu", + "file": "units\\other\\DalaranMutant\\DalaranMutant", + "unitSound": "Zombie", + "blend": "0.15", + "scale:hd": "1.45", + "scale:sd": "1.1", + "legacyScale": "1.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrd": { + "unitID": "ndrd", + "sort": "z2", + "comment(s)": "draenei darkslayer", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrd", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneidarkslayer", + "unitClass": "draenei", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrd", + "sortBalance": "z2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 260, + "lumbercost": 40, + "goldRep": 260, + "lumberRep": 40, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 210, + "stockStart": 330, + "HP": 525, + "realHP": 525, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 150, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndrd", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 18, + "dmgUp1": "-", + "mindmg1": 19, + "avgdmg1": 20, + "maxdmg1": 21, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 15, + "DPS": 14.8148148148148, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrd", + "sortAbil": "z2", + "auto": "_", + "abilList": "ACim", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiDarkSlayer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranai.blp", + "skinType": "unit", + "abilSkinList": "ACim", + "skinnableID": "ndrd", + "file:hd": "Units\\Other\\DranaiDarkslayer\\DranaiDarkslayer", + "file:sd": "units\\other\\DranaiWhite\\DranaiWhite", + "unitSound": "Draenei", + "blend": "0.15", + "scale:hd": "1.4", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "320", + "run:sd": "210", + "run:hd": "320", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.95", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\DranaiWhite\\DranaiWhite_portrait", + "portrait:hd": "Units\\Other\\DranaiDarkslayer\\DranaiDarkslayer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrf": { + "unitID": "ndrf", + "sort": "z2", + "comment(s)": "draenei guardian", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrf", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneiguardian", + "unitClass": "draenei", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrf", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 85, + "lumbercost": 0, + "goldRep": 85, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 50, + "stockStart": 0, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ndrf", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrf", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDranai.blp", + "skinType": "unit", + "skinnableID": "ndrf", + "file:hd": "Units\\Other\\DranaiGuardian\\DranaiGuardian", + "file:sd": "units\\other\\Dranai\\Dranai", + "unitSound": "Draenei", + "blend": "0.15", + "scale": "0.85", + "legacyScale": "0.85", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.82", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "165", + "blue:hd": "255", + "blue:sd": "165", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\Dranai\\Dranai_portrait", + "portrait:hd": "Units\\Other\\DranaiGuardian\\DranaiGuardian_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrh": { + "unitID": "ndrh", + "sort": "z2", + "comment(s)": "draenei harbinger", + "race": "creeps", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrh", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneiharbinger", + "unitClass": "draenei", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrh", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 165, + "lumbercost": 20, + "goldRep": 165, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 170, + "stockStart": 0, + "HP": 450, + "realHP": 450, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 200, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndrh", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.67, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31.5, + "maxdmg1": 34, + "dmgpt1": 0.59, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 26, + "DPS": 17.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrh", + "sortAbil": "z2", + "auto": "Ablo", + "abilList": "Ache,ACbb", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiHarbinger.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranaiMage.blp", + "skinType": "unit", + "abilSkinList": "Ache,ACbb", + "skinnableID": "ndrh", + "file:hd": "Units\\Other\\DranaiHarbinger\\DranaiHarbinger", + "file:sd": "units\\other\\DranaiMage\\DranaiMage", + "unitSound": "Draenei", + "blend": "0.15", + "scale:hd": "1.8", + "scale:sd": "1.05", + "legacyScale": "1.05", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "185", + "walk:hd": "270", + "run:sd": "185", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.92", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "140", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\DranaiMage\\DranaiMage_portrait", + "portrait:hd": "Units\\Other\\DranaiHarbinger\\DranaiHarbinger_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "65", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "ndrj": { + "unitID": "ndrj", + "sort": "z2", + "comment(s)": "dalaran reject", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.03, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrj", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dalaranreject", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrj", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 85, + "lumbercost": 0, + "goldRep": 85, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "ndrj", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 7.77777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrj", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDalaranReject.blp", + "skinType": "unit", + "skinnableID": "ndrj", + "file": "units\\other\\DalaranReject\\DalaranReject", + "unitSound": "Zombie", + "blend": "0.15", + "scale:hd": "1.95", + "scale:sd": "1.45", + "legacyScale": "1.45", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\DalaranReject\\DalaranReject", + "portrait:hd": "units\\other\\DalaranReject\\DalaranReject_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrl": { + "unitID": "ndrl", + "sort": "z2", + "comment(s)": "draenei laborer", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrl", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneilaborer", + "unitClass": "draenei", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrl", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "Peon", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 280, + "realHP": 280, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 200, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ropg", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ndrl", + "sortWeap": "z2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 5, + "dmgUp1": "-", + "mindmg1": 6, + "avgdmg1": 6.5, + "maxdmg1": 7, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 3.25, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrl", + "sortAbil": "z2", + "auto": "_", + "abilList": "Ahar,Arep", + "Builds": "ndh2,ndh3,ndh4,nbt2", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiLaborer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranai.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Arep", + "skinnableID": "ndrl", + "file": "units\\other\\Dranai\\Dranai", + "unitSound": "Draenei", + "blend": "0.15", + "scale:hd": "1.2", + "scale:sd": "0.8", + "legacyScale": "0.8", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "200", + "run:sd": "180", + "run:hd": "200", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.82", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "210", + "green:hd": "255", + "green:sd": "210", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "45", + "weapType1": "MetalLightChop", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrm": { + "unitID": "ndrm", + "sort": "z2", + "comment(s)": "draenei disciple", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrm", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneidisciple", + "unitClass": "draenei", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrm", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 195, + "lumbercost": 10, + "goldRep": 195, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 110, + "stockStart": 120, + "HP": 280, + "realHP": 280, + "regenHP": 0.5, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.8, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ndrm", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.67, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 21, + "dmgUp1": "-", + "mindmg1": 22, + "avgdmg1": 24, + "maxdmg1": 26, + "dmgpt1": 0.59, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 22, + "DPS": 13.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrm", + "sortAbil": "z2", + "auto": "Anhe", + "abilList": "Anh1", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDranaiMage.blp", + "skinType": "unit", + "abilSkinList": "Anh1", + "skinnableID": "ndrm", + "file": "units\\other\\DranaiMage\\DranaiMage", + "unitSound": "Draenei", + "blend": "0.15", + "scale": "0.85", + "legacyScale": "0.85", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "185", + "walk:hd": "270", + "run:sd": "185", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.82", + "modelScale:sd": "0.8", + "legacyModelScale": "0.8", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "140", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "60", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "40", + "addon": "Units" + }, + "ndrn": { + "unitID": "ndrn", + "sort": "z2", + "comment(s)": "draenei vindicator", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrn", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneivindicator", + "unitClass": "draenei", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrn", + "sortBalance": "z2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 225, + "lumbercost": 15, + "goldRep": 225, + "lumberRep": 15, + "fmade": " - ", + "fused": 4, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 130, + "stockStart": 0, + "HP": 900, + "realHP": 900, + "regenHP": 1.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 4, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndrn", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.962962962963, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrn", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "2,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiVindicator.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranai.blp", + "skinType": "unit", + "skinnableID": "ndrn", + "file:hd": "Units\\Other\\DranaiVindicator\\DranaiVindicator", + "file:sd": "units\\other\\DranaiWhite\\DranaiWhite", + "unitSound": "Draenei", + "blend": "0.15", + "scale:hd": "1.3", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "1.1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\DranaiWhite\\DranaiWhite_portrait", + "portrait:hd": "Units\\Other\\DranaiVindicator\\DranaiVindicator_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrp": { + "unitID": "ndrp", + "sort": "z2", + "comment(s)": "draenei protector", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrp", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneiprotector", + "unitClass": "draenei", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrp", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 135, + "lumbercost": 0, + "goldRep": 135, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 5, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "HP": 325, + "realHP": 325, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ndrp", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 11, + "dmgUp1": "-", + "mindmg1": 12, + "avgdmg1": 12.5, + "maxdmg1": 13, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.25925925925926, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrp", + "sortAbil": "z2", + "auto": "_", + "abilList": "ACen", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiProtocter.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranai.blp", + "skinType": "unit", + "abilSkinList": "ACen", + "skinnableID": "ndrp", + "file": "units\\other\\DranaiWhite\\DranaiWhite", + "unitSound": "Draenei", + "blend": "0.15", + "scale:hd": "1.05", + "scale:sd": "0.95", + "legacyScale": "0.95", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.85", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "165", + "green:hd": "255", + "green:sd": "165", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrs": { + "unitID": "ndrs", + "sort": "z2", + "comment(s)": "draenei seer", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrs", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneiseer", + "unitClass": "draenei", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrs", + "sortBalance": "z2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 210, + "lumbercost": 30, + "goldRep": 210, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 250, + "stockStart": 0, + "HP": 775, + "realHP": 775, + "regenHP": 1, + "regenType": "always", + "manaN": 500, + "realM": 500, + "mana0": 250, + "regenMana": 1.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 28, + "sight": 1400, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndrs", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.67, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 35, + "dmgUp1": "-", + "mindmg1": 36, + "avgdmg1": 39, + "maxdmg1": 42, + "dmgpt1": 0.59, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 21.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrs", + "sortAbil": "z2", + "auto": "Aslo", + "abilList": "ACsw,ACba,AChv", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiSeer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranaiMage.blp", + "skinType": "unit", + "abilSkinList": "ACsw,ACba,AChv", + "abilSkinList:custom,V1": "Aslo,ACba,AChv", + "skinnableID": "ndrs", + "file:hd": "Units\\Other\\DranaiSeer\\DranaiSeer", + "file:sd": "units\\other\\DranaiMage\\DranaiMage", + "unitSound": "Draenei", + "blend": "0.15", + "scale:hd": "2.25", + "scale:sd": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "185", + "walk:hd": "270", + "run:sd": "185", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\DranaiMage\\DranaiMage_portrait", + "portrait:hd": "Units\\Other\\DranaiSeer\\DranaiSeer_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "70", + "projectileVisOffsetX:hd": "0", + "projectileVisOffsetY:hd": "50", + "addon": "Units" + }, + "ndrt": { + "unitID": "ndrt", + "sort": "z2", + "comment(s)": "draenei stalker", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrt", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneistalker", + "unitClass": "draenei", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrt", + "sortBalance": "z2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 270, + "lumbercost": 30, + "goldRep": 270, + "lumberRep": 30, + "fmade": " - ", + "fused": 4, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 130, + "stockStart": 0, + "HP": 465, + "realHP": 465, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndrt", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1, + "mincool1": "-", + "dice1": 5, + "sides1": 3, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 32, + "avgdmg1": 37, + "maxdmg1": 42, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 7, + "DPS": 37, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrt", + "sortAbil": "z2", + "auto": "_", + "abilList": "Apiv,ACev,ACen", + "Buttonpos": "2,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiStalker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranai.blp", + "skinType": "unit", + "abilSkinList": "Apiv,ACev,ACen", + "skinnableID": "ndrt", + "file:hd": "Units\\Other\\DranaiStalker\\DranaiStalker", + "file:sd": "units\\other\\Dranai\\Dranai", + "unitSound": "Draenei", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\Dranai\\Dranai_portrait", + "portrait:hd": "Units\\Other\\DranaiStalker\\DranaiStalker_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndrw": { + "unitID": "ndrw", + "sort": "z2", + "comment(s)": "draenei watcher", + "race": "creeps", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndrw", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneiwatcher", + "unitClass": "draenei", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndrw", + "sortBalance": "z2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 135, + "lumbercost": 0, + "goldRep": 135, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 130, + "stockStart": 0, + "HP": 400, + "realHP": 400, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ndrw", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 13, + "dmgUp1": "-", + "mindmg1": 14, + "avgdmg1": 14.5, + "maxdmg1": 15, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 11, + "DPS": 10.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrw", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDranaiWatcher.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNDranai.blp", + "skinType": "unit", + "skinnableID": "ndrw", + "file:hd": "Units\\Other\\DranaiWatcher\\DranaiWatcher", + "file:sd": "units\\other\\Dranai\\Dranai", + "unitSound": "Draenei", + "blend": "0.15", + "scale:hd": "1.1", + "scale:sd": "1.05", + "legacyScale": "1.05", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.92", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\other\\Dranai\\Dranai_portrait", + "portrait:hd": "Units\\Other\\DranaiWatcher\\DranaiWatcher_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ndsa": { + "unitID": "ndsa", + "sort": "z2", + "comment(s)": "draenei salamander", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 1, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndsa", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "draeneisalamander", + "unitClass": "salamander", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndsa", + "sortBalance": "z2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 40, + "goldRep": 215, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 250, + "stockStart": 440, + "HP": 625, + "realHP": 625, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O,K", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ndsa", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 32, + "dmgUp1": "-", + "mindmg1": 33, + "avgdmg1": 36.5, + "maxdmg1": 40, + "dmgpt1": 0.5, + "backSw1": 0.56, + "Farea1": 25, + "Harea1": 125, + "Qarea1": 200, + "Hfact1": 0.2, + "Qfact1": 0.05, + "splashTargs1": "ground,air,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 33, + "DPS": 18.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndsa", + "sortAbil": "z2", + "auto": "_", + "abilList": "Alit", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNThunderSalamanderVizier.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNThunderLizardVizier.blp", + "skinType": "unit", + "abilSkinList": "Alit", + "skinnableID": "ndsa", + "file": "units\\creeps\\ThunderLizardVizier\\ThunderLizardVizier", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale:hd": "3.2", + "scale:sd": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "81", + "run:sd": "240", + "run:hd": "296", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "190", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "20", + "addon": "Units" + }, + "negz": { + "unitID": "negz", + "sort": "z2", + "comment(s)": "engineer gazlowe", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": 2, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "negz", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "engineergazlowe", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "negz", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "Sapper", + "goldcost": 215, + "lumbercost": 100, + "goldRep": 215, + "lumberRep": 100, + "fmade": " - ", + "fused": 2, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 45, + "stockStart": 440, + "HP": 100, + "realHP": 100, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "negz", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "negz", + "sortAbil": "z2", + "auto": "_", + "abilList": "Asds", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEngineerGazlowe.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGoblinSapper.blp", + "skinType": "unit", + "abilSkinList": "Asds", + "skinnableID": "negz", + "file:hd": "Units\\Creeps\\HeroTinkerGazlowe\\HeroTinkerGazlowe", + "file:sd": "units\\creeps\\GoblinSapper\\GoblinSapper", + "unitSound:sd": "GoblinSapper", + "unitSound:hd": "HeroTinker", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\GoblinSapper\\GoblinSapper_portrait", + "portrait:hd": "Units\\Creeps\\HeroTinkerGazlowe\\HeroTinkerGazlowe_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nemi": { + "unitID": "nemi", + "sort": "z2", + "comment(s)": "emissary", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nemi", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "emissary", + "unitClass": "HUnit16", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nemi", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 205, + "lumbercost": 0, + "goldRep": 205, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 220, + "realHP": 220, + "regenHP": 0.25, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhpt", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nemi", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 7, + "dmgUp1": "-", + "mindmg1": 8, + "avgdmg1": 10.5, + "maxdmg1": 13, + "dmgpt1": 0.59, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 26, + "DPS": 5.25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nemi", + "sortAbil": "z2", + "auto": "Ahea", + "abilList": "Ahea,Ainf,Adis", + "Missileart": "Abilities\\Weapons\\PriestMissile\\PriestMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-priest.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEmissary.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "abilSkinList": "Ahea,Ainf,Adis", + "skinnableID": "nemi", + "file:hd": "Units\\Creeps\\Emissary\\Emissary", + "file:sd": "units\\creeps\\HumanMage\\HumanMage", + "unitSound": "ElfWizard", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "units\\creeps\\HumanMage\\HumanMage_portrait", + "portrait:hd": "Units\\Creeps\\Emissary\\Emissary_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nfgl": { + "unitID": "nfgl", + "sort": "z2", + "comment(s)": "flesh golem", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfgl", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "fleshgolem", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfgl", + "sortBalance": "z2", + "sort2": "zz", + "level": 11, + "type": "_", + "goldcost": 500, + "lumbercost": 150, + "goldRep": 500, + "lumberRep": 150, + "fmade": " - ", + "fused": 5, + "bountydice": 10, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 5600, + "realHP": 5600, + "regenHP": 3, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nfgl", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 3, + "sides1": 8, + "dmgplus1": 36, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 49.5, + "maxdmg1": 60, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 24, + "DPS": 36.6666666666667, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfgl", + "sortAbil": "z2", + "auto": "_", + "abilList": "ACsh,ACcr", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFleshGolem.blp", + "skinType": "unit", + "abilSkinList": "ACsh,ACcr", + "skinnableID": "nfgl", + "file": "units\\other\\FleshGolem\\FleshGolem", + "portrait:sd": "units\\other\\FleshGolem\\FleshGolem", + "portrait:hd": "units\\other\\FleshGolem\\FleshGolem_portrait", + "unitSound": "Abomination", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.75", + "legacyModelScale": "1.75", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "180", + "shadowH": "180", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngbl": { + "unitID": "ngbl", + "sort": "z2", + "comment(s)": "goblin blaster", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ngbl", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "goblinblaster", + "unitClass": "goblin", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngbl", + "sortBalance": "z2", + "sort2": "zz", + "level": 6, + "type": "Mechanical", + "goldcost": 375, + "lumbercost": 100, + "goldRep": 375, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 85, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 440, + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ngbl", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 200, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.4, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 31, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 47.5, + "maxdmg1": 61, + "dmgpt1": 0.3, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 33.9285714285714, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngbl", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Missileart": "Abilities\\Weapons\\FragDriller\\FragDriller.mdl", + "Missilespeed": "1900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNJunkGolem.blp", + "skinType": "unit", + "skinnableID": "ngbl", + "file:hd": "units\\creeps\\GoblinBlaster\\GoblinBlaster", + "file:sd": "units\\creeps\\IronGolem\\IronGolem", + "unitSound": "IronGolem", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Metal", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "portrait:sd": "units\\creeps\\IronGolem\\IronGolem_portrait", + "portrait:hd": "units\\creeps\\GoblinBlaster\\GoblinBlaster_portrait", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nhea": { + "unitID": "nhea", + "sort": "z2", + "comment(s)": "high elven archer", + "race": "human", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nhea", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "highelvenarcher", + "unitClass": "HUnit20", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhea", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 130, + "lumbercost": 10, + "goldRep": 130, + "lumberRep": 10, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 310, + "realHP": 310, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Resm,Rema,Reib,Remk,Reuv,Repm", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nhea", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 800, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 3, + "dmgplus1": 15, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 17, + "maxdmg1": 18, + "dmgpt1": 0.72, + "backSw1": 0.28, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 11.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhea", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\Arrow\\ArrowMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHighElvenArcher.blp", + "skinType": "unit", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "skinnableID": "nhea", + "file": "units\\creeps\\HighElfArcher\\HighElfArcher", + "unitSound": "Archer", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "71", + "addon": "Units" + }, + "nhef": { + "unitID": "nhef", + "sort": "z2", + "comment(s)": "high elven female", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 5, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nhef", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "highelvenfemale", + "unitClass": "HUnit17", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhef", + "sortBalance": "z2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 10, + "reptm": 10, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nhef", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhef", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFemaleElfVillager.blp", + "skinType": "unit", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "skinnableID": "nhef", + "file": "units\\critters\\ElfVillagerWoman\\ElfVillagerWoman", + "unitSound": "VillagerWoman", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "190", + "run:sd": "200", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nhem": { + "unitID": "nhem", + "sort": "z2", + "comment(s)": "high elven male", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nhem", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "highelvenmale", + "unitClass": "HUnit19", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhem", + "sortBalance": "z2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 10, + "reptm": 10, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nhem", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhem", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNElfVillager.blp", + "skinType": "unit", + "skinnableID": "nhem", + "file:hd": "Units\\Critters\\ElfVillagerMan\\ElfVillagerMan", + "file:sd": "units\\critters\\HighElfPeasant\\HighElfPeasant", + "unitSound": "VillagerMan", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "190", + "run:sd": "200", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "units\\critters\\HighElfPeasant\\HighElfPeasant_portrait", + "portrait:hd": "Units\\Critters\\ElfVillagerMan\\ElfVillagerMan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nhew": { + "unitID": "nhew", + "sort": "z2", + "comment(s)": "high elven male", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nhew", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bloodelfworker", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhew", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "Peon", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 220, + "realHP": 220, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhlh,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nhew", + "sortWeap": "z2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 3, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 7.5, + "maxdmg1": 8, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 2.5, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhew", + "sortAbil": "z2", + "auto": "_", + "abilList": "Ahar,Ahrp", + "Builds": "htow,hhou,hbar,hbla,hwtw,halt,nnsg,hars,hlum,nnsa,hvlt", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBloodElfWorker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElfVillager.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Ahrp", + "skinnableID": "nhew", + "file": "units\\critters\\HighElfPeasant\\HighElfPeasant", + "unitSound": "BloodElfWorker", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "190", + "run:sd": "200", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "impactSwimZ": "0", + "impactZ": "45", + "weapType1": "MetalLightChop", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "njks": { + "unitID": "njks", + "sort": "z2", + "comment(s)": "jailor kassan", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "njks", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "jailorkassan", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "njks", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 85, + "lumbercost": 0, + "goldRep": 85, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 3, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 240, + "realHP": 240, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "njks", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 39, + "avgdmg1": 41.5, + "maxdmg1": 44, + "dmgpt1": 0.5, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 26, + "DPS": 30.7407407407407, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "njks", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNJailorKassan.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBandit.blp", + "skinType": "unit", + "skinnableID": "njks", + "file:hd": "Units\\Creeps\\JailorKassan\\JailorKassan", + "file:sd": "units\\creeps\\Bandit\\Bandit", + "unitSound": "Bandit", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\Bandit\\Bandit_portrait", + "portrait:hd": "Units\\Creeps\\JailorKassan\\JailorKassan_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmdm": { + "unitID": "nmdm", + "sort": "z2", + "comment(s)": "medivh morphed", + "race": "human", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nmdm", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "medivhmorphed", + "unitClass": "HUnit23", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmdm", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 185, + "lumbercost": 0, + "goldRep": 185, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 280, + "realHP": 280, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nmdm", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.1, + "mincool1": "-", + "dice1": 1, + "sides1": 16, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 16.5, + "maxdmg1": 24, + "dmgpt1": 0.6, + "backSw1": 0.49, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 62, + "DPS": 15, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmdm", + "sortAbil": "z2", + "auto": "_", + "abilList": "Amrf", + "Missileart": "Abilities\\Weapons\\DruidoftheTalonMissile\\DruidoftheTalonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentlinkprops": "alternate", + "Animprops": "alternateex", + "Boneprops": "alternate", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMedivhRavenForm.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Amrf", + "skinnableID": "nmdm", + "file": "units\\creeps\\Medivh\\Medivh", + "unitSound": "Medivh", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nmed": { + "unitID": "nmed", + "sort": "z2", + "comment(s)": "medivh", + "race": "human", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nmed", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "medivh", + "unitClass": "HUnit22", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmed", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 185, + "lumbercost": 0, + "goldRep": 185, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 280, + "realHP": 280, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 22, + "reptm": 22, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nmed", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.1, + "mincool1": "-", + "dice1": 1, + "sides1": 16, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 16.5, + "maxdmg1": 24, + "dmgpt1": 0.6, + "backSw1": 0.49, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 62, + "DPS": 15, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmed", + "sortAbil": "z2", + "auto": "_", + "abilList": "Amrf", + "Missileart": "Abilities\\Weapons\\DruidoftheTalonMissile\\DruidoftheTalonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMedivh.blp", + "skinType": "unit", + "abilSkinList": "Amrf", + "skinnableID": "nmed", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "file": "units\\creeps\\Medivh\\Medivh", + "unitSound": "Medivh", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nmpe": { + "unitID": "nmpe", + "sort": "z2", + "comment(s)": "naga peon", + "race": "naga", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "amph", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmpe", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulslave", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "nmpe", + "sortBalance": "z2", + "sort2": "zzn", + "level": 1, + "type": "Peon", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 250, + "realHP": 250, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "nmpe", + "sortWeap": "z2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 3, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 6, + "dmgUp1": "-", + "mindmg1": 7, + "avgdmg1": 7.5, + "maxdmg1": 8, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 2.5, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmpe", + "sortAbil": "z2", + "auto": "_", + "abilList": "ANha,Arep", + "Builds": "nnfm,nntg,nntt,nnsg,nnsa,nnad", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgalSlave.blp", + "skinType": "unit", + "abilSkinList": "ANha,Arep", + "skinnableID": "nmpe", + "file": "units\\creeps\\MurgulSlave\\MurgulSlave", + "unitSound": "murloc", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "180", + "walk:hd": "190", + "run:sd": "180", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "45", + "weapType1": "MetalLightChop", + "weapType2": "AxeMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nmsh": { + "unitID": "nmsh", + "sort": "z2", + "comment(s)": "misha the bear", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmsh", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "misha", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmsh", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "_", + "goldcost": 155, + "lumbercost": 0, + "goldRep": 155, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 2, + "bountysides": 3, + "bountyplus": 9, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 475, + "realHP": 475, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nmsh", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.55, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 23, + "maxdmg1": 25, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 17.037037037037, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmsh", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMisha.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "skinType": "unit", + "skinnableID": "nmsh", + "file:hd": "Units\\Creeps\\MishaLvl1\\MishaLvl1", + "file:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear", + "unitSound": "GrizzlyBear", + "blend": "0.15", + "scale": "1.4", + "legacyScale": "1.4", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\GrizzlyBear\\GrizzlyBear_portrait", + "portrait:hd": "Units\\Creeps\\MishaLvl1\\MishaLvl1_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nser": { + "unitID": "nser", + "sort": "z2", + "comment(s)": "searinox", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nser", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "searinox", + "unitClass": "HUnit24", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nser", + "sortBalance": "z2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 510, + "lumbercost": 120, + "goldRep": 510, + "lumberRep": 120, + "fmade": " - ", + "fused": 6, + "bountydice": 12, + "bountysides": 3, + "bountyplus": 50, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1250, + "realHP": 1250, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 280, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nser", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.1, + "mincool1": 1.5, + "dice1": 5, + "sides1": 16, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 25, + "avgdmg1": 62.5, + "maxdmg1": 100, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 28, + "DPS": 56.8181818181818, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nser", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSearinox.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBlackDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nser", + "file:hd": "Units\\Creeps\\Searinox\\Searinox", + "file:sd": "units\\creeps\\BlackDragon\\BlackDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "280", + "run:sd": "200", + "run:hd": "280", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1.1", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "ShadowFlyer", + "shadowW": "220", + "shadowH": "220", + "shadowX": "110", + "shadowY": "110", + "portrait:sd": "units\\creeps\\BlackDragon\\BlackDragon_portrait", + "portrait:hd": "Units\\Creeps\\Searinox\\Searinox_portrait", + "impactSwimZ": "0", + "impactZ": "40", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "addon": "Units" + }, + "nspc": { + "unitID": "nspc", + "sort": "z2", + "comment(s)": "support column", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nspc", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "supportcolumn", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nspc", + "sortBalance": "z2", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 50, + "realHP": 50, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "nspc", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nspc", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSupportBeam.blp", + "skinType": "unit", + "skinnableID": "nspc", + "file": "doodads\\underground\\terrain\\SupportBeam\\SupportBeam", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "70", + "shadowY": "70", + "portrait:sd": "doodads\\underground\\terrain\\SupportBeam\\SupportBeam", + "portrait:hd": "doodads\\underground\\terrain\\SupportBeam\\SupportBeam_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nssn": { + "unitID": "nssn", + "sort": "z2", + "comment(s)": "night elf assassin", + "race": "nightelf", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nssn", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nightelfassassin", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nssn", + "sortBalance": "z2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 20, + "goldRep": 195, + "lumberRep": 20, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 550, + "realHP": 550, + "regenHP": 0.5, + "regenType": "always", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "large", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nssn", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 650, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 12.5, + "maxdmg1": 16, + "dmgpt1": 0.3, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 33, + "DPS": 12.5, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nssn", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\KeeperGroveMissile\\KeeperGroveMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAssassin.blp", + "skinType": "unit", + "skinnableID": "nssn", + "file": "units\\creeps\\assassin\\assassin", + "unitSound": "Assassin", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "290", + "walk:hd": "300", + "run:sd": "290", + "run:hd": "300", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "71", + "addon": "Units" + }, + "nthr": { + "unitID": "nthr", + "sort": "z2", + "comment(s)": "tharifas", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 1, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nthr", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tharifas", + "unitClass": "EUnit14", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nthr", + "sortBalance": "z2", + "sort2": "zz", + "level": 8, + "type": "_", + "goldcost": 510, + "lumbercost": 150, + "goldRep": 510, + "lumberRep": 150, + "fmade": " - ", + "fused": 6, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 140, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 800, + "realHP": 800, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "small", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nthr", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 14, + "dmgplus1": 51, + "dmgUp1": "-", + "mindmg1": 54, + "avgdmg1": 73.5, + "maxdmg1": 93, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 40, + "DPS": 49, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nthr", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\GreenDragonMissile\\GreenDragonMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1500", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTharifas.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGreenDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "nthr", + "file:hd": "Units\\Creeps\\Tharifas\\Tharifas", + "file:sd": "units\\creeps\\GreenDragon\\GreenDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.25", + "legacyScale": "2.25", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "1.4", + "modelScale:sd": "1.4", + "legacyModelScale": "1.4", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "portrait:sd": "units\\creeps\\GreenDragon\\GreenDragon_portrait", + "portrait:hd": "Units\\Creeps\\Tharifas\\Tharifas_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "addon": "Units" + }, + "nw2w": { + "unitID": "nw2w", + "sort": "z2", + "comment(s)": "War2Warlock", + "race": "orc", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.334, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nw2w", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "war2warlock", + "unitClass": "OUnit18", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nw2w", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 215, + "lumbercost": 0, + "goldRep": 215, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 250, + "realHP": 250, + "regenHP": 0.25, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 75, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rost", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nw2w", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 2, + "sides1": 3, + "dmgplus1": 14, + "dmgUp1": "-", + "mindmg1": 16, + "avgdmg1": 18, + "maxdmg1": 20, + "dmgpt1": 0.43, + "backSw1": 0.74, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 13, + "DPS": 10.2857142857143, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nw2w", + "sortAbil": "z2", + "auto": "_", + "abilList": "ACfb,ACuf,ACcr", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1100", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-shaman.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosWarlockGreen.blp", + "skinType": "unit", + "abilSkinList": "ACfb,ACuf,ACcr", + "skinnableID": "nw2w", + "file": "units\\creeps\\ChaosWarlockGreen\\ChaosWarlockGreen", + "unitSound": "Shaman", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "150", + "shadowH": "150", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwat": { + "unitID": "nwat", + "sort": "z2", + "comment(s)": "watcher", + "race": "nightelf", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nwat", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "watcher", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwat", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 140, + "lumbercost": 0, + "goldRep": 140, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 300, + "realHP": 300, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 75, + "regenMana": 0.5, + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 280, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "nwat", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 10.5, + "maxdmg1": 11, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 6.5625, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwat", + "sortAbil": "z2", + "auto": "Ablo", + "abilList": "ACbl", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NightElfLargeDeathExplode\\NightElfLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSentry.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHuntress.blp", + "skinType": "unit", + "abilSkinList": "ACbl", + "skinnableID": "nwat", + "file": "units\\creeps\\watcher\\watcher", + "unitSound": "Watcher", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "290", + "walk:hd": "280", + "run:sd": "290", + "run:hd": "280", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nzlc": { + "unitID": "nzlc", + "sort": "z2", + "comment(s)": "cinematic lich king", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.94, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nzlc", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "lichking", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nzlc", + "sortBalance": "z2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 100, + "realHP": 100, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 600, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": "-", + "unitWeaponID": "nzlc", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nzlc", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLichKingCin.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "unit", + "skinnableID": "nzlc", + "file": "doodads\\cinematic\\lichking\\lichking", + "portrait:sd": "doodads\\cinematic\\lichking\\lichking", + "portrait:hd": "doodads\\cinematic\\lichking\\lichking_portrait", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk": "240", + "run": "240", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "odkt": { + "unitID": "odkt", + "sort": "z2", + "comment(s)": "Drak'Thul", + "race": "orc", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.5, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "odkt", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "drakthul", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "odkt", + "sortBalance": "z2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 145, + "lumbercost": 20, + "goldRep": 145, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 440, + "HP": 675, + "realHP": 675, + "regenHP": 0.5, + "regenType": "always", + "manaN": 350, + "realM": 350, + "mana0": 350, + "regenMana": 0.875, + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 900, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "odkt", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 27, + "dmgUp1": "-", + "mindmg1": 28, + "avgdmg1": 32.5, + "maxdmg1": 37, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 40, + "DPS": 18.0555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "odkt", + "sortAbil": "z2", + "auto": "_", + "abilList": "ACmo,ACad", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-guldan.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcWarlockRed.blp", + "skinType": "unit", + "abilSkinList": "ACmo,ACad", + "skinnableID": "odkt", + "file": "units\\creeps\\OrcWarlockRed\\OrcWarlockRed", + "unitSound": "ShamanX", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "legacyModelScale": "1.2", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "220", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ogrk": { + "unitID": "ogrk", + "sort": "z2", + "comment(s)": "Gar'thok", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.75, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ogrk", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "garthok", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ogrk", + "sortBalance": "z2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 200, + "lumbercost": 0, + "goldRep": 200, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 2, + "realdef": 1, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Robs,Ropg,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ogrk", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.6, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 17, + "dmgUp1": "-", + "mindmg1": 18, + "avgdmg1": 19.5, + "maxdmg1": 21, + "dmgpt1": 0.33, + "backSw1": 0.64, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 18, + "DPS": 12.1875, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ogrk", + "sortAbil": "z2", + "auto": "_", + "abilList": "Asal,Aion", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGarthok.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGrunt.blp", + "skinType": "unit", + "abilSkinList": "Asal,Aion", + "skinnableID": "ogrk", + "file:hd": "Units\\Orc\\GarThok\\GarThok", + "file:sd": "units\\orc\\Grunt\\Grunt", + "unitSound": "Grunt", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.1", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\orc\\Grunt\\Grunt_portrait", + "portrait:hd": "Units\\Orc\\GarThok\\GarThok_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "ojgn": { + "unitID": "ojgn", + "sort": "z2", + "comment(s)": "actual orc juggernaut unit", + "race": "orc", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.733, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.1, + "propWin": 15, + "orientInterp": 3, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ojgn", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "juggernaut", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ojgn", + "sortBalance": "z2", + "sort2": "zz", + "level": 6, + "type": "Mechanical", + "goldcost": 500, + "lumbercost": 200, + "goldRep": 500, + "lumberRep": 200, + "fmade": " - ", + "fused": 0, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1000, + "realHP": 1000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1600, + "nsight": 1200, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 2, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ojgn", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 900, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 900, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 2, + "mincool1": "-", + "dice1": 3, + "sides1": 10, + "dmgplus1": 75, + "dmgUp1": "-", + "mindmg1": 78, + "avgdmg1": 91.5, + "maxdmg1": 105, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 100, + "Harea1": 150, + "Qarea1": 250, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 29, + "DPS": 45.75, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ojgn", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNJuggernaut.blp", + "skinType": "unit", + "skinnableID": "ojgn", + "file": "Units\\Critters\\OrcJuggernaught\\OrcJuggernaught", + "portrait:sd": "Units\\Critters\\OrcJuggernaught\\OrcJuggernaught", + "portrait:hd": "Units\\Critters\\OrcJuggernaught\\OrcJuggernaught_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "omtg": { + "unitID": "omtg", + "sort": "z2", + "comment(s)": "mathog", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "omtg", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "mathog", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "omtg", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 130, + "lumbercost": 0, + "goldRep": 130, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 340, + "realHP": 340, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "omtg", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.1, + "mincool1": "-", + "dice1": 2, + "sides1": 8, + "dmgplus1": 2, + "dmgUp1": "-", + "mindmg1": 4, + "avgdmg1": 11, + "maxdmg1": 18, + "dmgpt1": 0.5, + "backSw1": 0.468, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 29, + "DPS": 10, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "omtg", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMathog.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNChaosWarlord.blp", + "skinType": "unit", + "skinnableID": "omtg", + "file:hd": "Units\\Demon\\Mathog\\Mathog", + "file:sd": "units\\demon\\ChaosWarlord\\ChaosWarlord", + "unitSound": "ChaosWarlord", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk": "240", + "run": "240", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\demon\\ChaosWarlord\\ChaosWarlord_portrait", + "portrait:hd": "Units\\Demon\\Mathog\\Mathog_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "onzg": { + "unitID": "onzg", + "sort": "z2", + "comment(s)": "nazgrel", + "race": "orc", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.87, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "onzg", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "nazgrel", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "onzg", + "sortBalance": "z2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 180, + "lumbercost": 40, + "goldRep": 180, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 610, + "realHP": 610, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Roen,Ropg,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "onzg", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "normal", + "cool1": 1.85, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.5135135135135, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "onzg", + "sortAbil": "z2", + "auto": "_", + "abilList": "Aens,Asal,Aion", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNazgrel.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRaider.blp", + "skinType": "unit", + "abilSkinList": "Aens,Asal,Aion", + "skinnableID": "onzg", + "file:hd": "Units\\Orc\\Nazgrel\\Nazgrel", + "file:sd": "units\\orc\\WolfRider\\WolfRider", + "unitSound": "Nazgrel", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "360", + "walk:hd": "350", + "run:sd": "360", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\orc\\WolfRider\\WolfRider_portrait", + "portrait:hd": "Units\\Orc\\Nazgrel\\Nazgrel_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "oosc": { + "unitID": "oosc", + "sort": "z2", + "comment(s)": "kodo beast (riderless)", + "race": "orc", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 1, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "oosc", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kotobeastnorider", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "oosc", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "_", + "goldcost": 195, + "lumbercost": 35, + "goldRep": 195, + "lumberRep": 35, + "fmade": " - ", + "fused": "-", + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 330, + "realHP": 330, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 180, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "oosc", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "oosc", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRiderlessKodo.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "oosc", + "file": "units\\orc\\KotoBeastNoRider\\KotoBeastNoRider", + "unitSound": "KotoBeastNoRider", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "115", + "run:sd": "200", + "run:hd": "230", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "oswy": { + "unitID": "oswy", + "sort": "z2", + "comment(s)": "spirit wyvern", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "oswy", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritwyvern", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "oswy", + "sortBalance": "z2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 130, + "lumbercost": 0, + "goldRep": 130, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 520, + "realHP": 520, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "oswy", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "oswy", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWyvern.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "oswy", + "file": "units\\orc\\SpiritWyvern\\SpiritWyvern", + "portrait:sd": "units\\orc\\SpiritWyvern\\SpiritWyvern", + "portrait:hd": "units\\orc\\SpiritWyvern\\SpiritWyvern_portrait", + "unitSound": "Hippogryph", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Ethereal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ovlj": { + "unitID": "ovlj", + "sort": "z2", + "comment(s)": "vol'jin", + "race": "orc", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.97, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ovlj", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "voljin", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ovlj", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 145, + "lumbercost": 25, + "goldRep": 145, + "lumberRep": 25, + "fmade": " - ", + "fused": 2, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 315, + "realHP": 315, + "regenHP": 0.25, + "regenType": "always", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rowd,Rotr,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "ovlj", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.35, + "castbsw": 0.52, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 9, + "dmgUp1": "-", + "mindmg1": 10, + "avgdmg1": 12, + "maxdmg1": 14, + "dmgpt1": 0.73, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 22, + "DPS": 6.85714285714286, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ovlj", + "sortAbil": "z2", + "auto": "_", + "abilList": "Aeye,Ahwd,Asta,Aion", + "Buttonpos": "1,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\WitchDoctorMissile\\WitchDoctorMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-witchdoctor.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNVoljin.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNWitchDoctor.blp", + "skinType": "unit", + "abilSkinList": "Aeye,Ahwd,Asta,Aion", + "skinnableID": "ovlj", + "file:hd": "Units\\Orc\\VolJin\\VolJin", + "file:sd": "units\\orc\\WitchDoctor\\WitchDoctor", + "unitSound": "WitchDoctor", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\orc\\WitchDoctor\\WitchDoctor_portrait", + "portrait:hd": "Units\\Orc\\VolJin\\VolJin_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "projectileVisOffsetY:hd": "200", + "addon": "Units" + }, + "owar": { + "unitID": "owar", + "sort": "z2", + "comment(s)": "orc warchief", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "owar", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaoswarlord", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "owar", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "_", + "goldcost": 130, + "lumbercost": 0, + "goldRep": 130, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 340, + "realHP": 340, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "owar", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.1, + "mincool1": "-", + "dice1": 2, + "sides1": 8, + "dmgplus1": 2, + "dmgUp1": "-", + "mindmg1": 4, + "avgdmg1": 11, + "maxdmg1": 18, + "dmgpt1": 0.5, + "backSw1": 0.468, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 29, + "DPS": 10, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "owar", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosWarlord.blp", + "skinType": "unit", + "skinnableID": "owar", + "file": "units\\demon\\ChaosWarlord\\ChaosWarlord", + "unitSound": "ChaosWarlord", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk": "240", + "run": "240", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ownr": { + "unitID": "ownr", + "sort": "z2", + "comment(s)": "wyvern", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 240, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 1, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ownr", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "riderlesswyvern", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ownr", + "sortBalance": "z2", + "sort2": "zz", + "level": 5, + "type": "_", + "goldcost": 130, + "lumbercost": 0, + "goldRep": 130, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 520, + "realHP": 520, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ownr", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.2, + "mincool1": "-", + "dice1": 2, + "sides1": 3, + "dmgplus1": 36, + "dmgUp1": "-", + "mindmg1": 38, + "avgdmg1": 40, + "maxdmg1": 42, + "dmgpt1": 0.6, + "backSw1": 0.37, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 13, + "DPS": 33.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ownr", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWyvern.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "ownr", + "file": "units\\orc\\RiderlessWyvern\\RiderlessWyvern", + "unitSound": "Hippogryph", + "blend": "0.15", + "scale": "1.75", + "legacyScale": "1.75", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "180", + "shadowH": "180", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "uabc": { + "unitID": "uabc", + "sort": "z2", + "comment(s)": "Abomination cinematic", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2.17, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "uabc", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "abominationcinematic", + "special": "1", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uabc", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "undead", + "goldcost": 240, + "lumbercost": 70, + "goldRep": 240, + "lumberRep": 70, + "fmade": " - ", + "fused": 4, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1080, + "realHP": 1080, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Ruar,Rume,Rupc", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "uabc", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.9, + "mincool1": "-", + "dice1": 1, + "sides1": 7, + "dmgplus1": 32, + "dmgUp1": "-", + "mindmg1": 33, + "avgdmg1": 36, + "maxdmg1": 39, + "dmgpt1": 0.5, + "backSw1": 1.17, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 29, + "DPS": 18.9473684210526, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uabc", + "sortAbil": "z2", + "auto": "_", + "abilList": "Aap1", + "Requires": "unp2", + "Buttonpos": "1,0", + "Specialart": "Units\\Undead\\Abomination\\AbominationExplosion.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAbomination.blp", + "skinType": "unit", + "abilSkinList": "Aap1", + "skinnableID": "uabc", + "file": "units\\undead\\AbominationCIN\\AbominationCIN", + "unitSound": "Abomination", + "blend": "0.3", + "scale": "2.1", + "legacyScale": "2.1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "210", + "walk:hd": "270", + "run:sd": "210", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "uarb": { + "unitID": "uarb", + "sort": "z2", + "comment(s)": "air barge", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 280, + "moveFloor": 90, + "turnRate": 0.5, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "uarb", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "airbarge", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uarb", + "sortBalance": "z2", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 240, + "lumbercost": 60, + "goldRep": 240, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 1, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 30, + "stockStart": 440, + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "uarb", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uarb", + "sortAbil": "z2", + "auto": "_", + "abilList": "Sch3,Achd,Aloa,Adro", + "Buttonpos": "0,0", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadAirBarge.blp", + "elevPts": "2", + "skinType": "unit", + "abilSkinList": "Sch3,Achd,Aloa,Adro", + "skinnableID": "uarb", + "file": "units\\undead\\UndeadAirBarge\\UndeadAirBarge", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "230", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "160", + "shadowH": "160", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ubdd": { + "unitID": "ubdd", + "sort": "z2", + "comment(s)": "dead azurelore", + "race": "undead", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 2, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.4, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ubdd", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "azurelordfrostwyrm", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ubdd", + "sortBalance": "z2", + "sort2": "zz", + "level": 6, + "type": "undead", + "goldcost": 385, + "lumbercost": 120, + "goldRep": 385, + "lumberRep": 120, + "fmade": " - ", + "fused": 7, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1100, + "realHP": 1100, + "regenHP": 2, + "regenType": "blight", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 1600, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ubdd", + "sortWeap": "z2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.4, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 3, + "mincool1": "-", + "dice1": 2, + "sides1": 11, + "dmgplus1": 83, + "dmgUp1": "-", + "mindmg1": 85, + "avgdmg1": 95, + "maxdmg1": 105, + "dmgpt1": 0.5, + "backSw1": 0.55, + "Farea1": 25, + "Harea1": 50, + "Qarea1": 200, + "Hfact1": 0.2, + "Qfact1": 0.1, + "splashTargs1": "ground,air,structure,debris,enemy,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 38, + "DPS": 31.6666666666667, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "msplash", + "cool2": 3, + "mincool2": "-", + "dice2": 1, + "sides2": 11, + "dmgplus2": 83, + "dmgUp2": "-", + "mindmg2": 84, + "avgdmg2": 89, + "maxdmg2": 94, + "dmgpt2": 0.5, + "backSw2": 0.55, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ubdd", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl", + "Missilearc": "0.1", + "Missilespeed": "800", + "MissileHoming": "1", + "Attachmentanimprops": "large", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSapphironUndead.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFrostWyrm.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "ubdd", + "file:hd": "Units\\Undead\\SapphironUndead\\SapphironUndead", + "file:sd": "units\\undead\\FrostWyrm\\FrostWyrm", + "unitSound": "FrostWyrm", + "blend": "0.4", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "2", + "legacyModelScale": "2", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "350", + "shadowH": "350", + "shadowX": "175", + "shadowY": "175", + "portrait:sd": "units\\undead\\FrostWyrm\\FrostWyrm_portrait", + "portrait:hd": "Units\\Undead\\SapphironUndead\\SapphironUndead_portrait", + "impactSwimZ": "0", + "impactZ": "0", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-60", + "addon": "Units" + }, + "ubdr": { + "unitID": "ubdr", + "sort": "z2", + "comment(s)": "azurelore", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "fly", + "moveHeight": 325, + "moveFloor": 90, + "turnRate": 0.1, + "propWin": 61, + "orientInterp": 3, + "formation": 2, + "targType": "air", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ubdr", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "azureloredragon", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ubdr", + "sortBalance": "z2", + "sort2": "zz", + "level": 10, + "type": "_", + "goldcost": 595, + "lumbercost": 200, + "goldRep": 595, + "lumberRep": 200, + "fmade": " - ", + "fused": 8, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 150, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 920, + "HP": 1800, + "realHP": 1800, + "regenHP": 2, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 6, + "defUp": 2, + "realdef": 6, + "defType": "small", + "spd": 300, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 100, + "reptm": 100, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ubdr", + "sortWeap": "z2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 12, + "dmgplus1": 45, + "dmgUp1": "-", + "mindmg1": 48, + "avgdmg1": 64.5, + "maxdmg1": 81, + "dmgpt1": 0.94, + "backSw1": 0.56, + "Farea1": 75, + "Harea1": 150, + "Qarea1": 225, + "Hfact1": 0.5, + "Qfact1": 0.25, + "splashTargs1": "ground", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 35, + "DPS": 43, + "targs2": "air", + "rangeN2": 300, + "RngTst2": "#REF!", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "msplash", + "cool2": 1.5, + "mincool2": "-", + "dice2": 3, + "sides2": 9, + "dmgplus2": 45, + "dmgUp2": "-", + "mindmg2": 48, + "avgdmg2": 60, + "maxdmg2": 72, + "dmgpt2": 0.94, + "backSw2": 0.56, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ubdr", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl", + "Missilearc": "0.1", + "Missilespeed": "800", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSapphironLiving.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNAzureDragon.blp", + "elevPts": "2", + "skinType": "unit", + "skinnableID": "ubdr", + "file:hd": "Units\\Creeps\\Sapphiron\\Sapphiron", + "file:sd": "units\\creeps\\AzureDragon\\AzureDragon", + "unitSound": "AzureDragon", + "blend": "0.15", + "scale": "2.7", + "legacyScale": "2.7", + "scaleBull": "1", + "maxPitch": "33", + "maxRoll": "25", + "elevRad": "100", + "walk:sd": "200", + "walk:hd": "300", + "run:sd": "200", + "run:hd": "300", + "selZ": "230", + "armor": "Flesh", + "modelScale:hd": "0.8", + "modelScale:sd": "2.25", + "legacyModelScale": "2.25", + "red:hd": "255", + "red:sd": "200", + "green:hd": "255", + "green:sd": "180", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "400", + "shadowH": "400", + "shadowX": "200", + "shadowY": "200", + "portrait:sd": "units\\creeps\\AzureDragon\\AzureDragon_portrait", + "portrait:hd": "Units\\Creeps\\Sapphiron\\Sapphiron_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-20", + "addon": "Units" + }, + "ubot": { + "unitID": "ubot", + "sort": "z2", + "comment(s)": "undead transport", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.733, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ubot", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "undeadtransportship", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "ubot", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "Mechanical", + "goldcost": 170, + "lumbercost": 50, + "goldRep": 170, + "lumberRep": 50, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 25, + "reptm": 25, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "ubot", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ubot", + "sortAbil": "z2", + "auto": "_", + "abilList": "Sch5,Slo3,Sdro", + "Attachmentanimprops": "large", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadTransport.blp", + "skinType": "unit", + "abilSkinList": "Sch5,Slo3,Sdro", + "skinnableID": "ubot", + "file": "units\\creeps\\UndeadTransportShip\\UndeadTransportShip", + "portrait:sd": "units\\creeps\\UndeadTransportShip\\UndeadTransportShip", + "portrait:hd": "units\\creeps\\UndeadTransportShip\\UndeadTransportShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "320", + "run:sd": "200", + "run:hd": "320", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "udes": { + "unitID": "udes", + "sort": "z2", + "comment(s)": "undead destroyer", + "race": "undead", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3.733, + "canSleep": 0, + "cargoSize": "-", + "movetp": "float", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.2, + "propWin": 15, + "orientInterp": 3, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "udes", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "undeaddestroyer", + "unitClass": "boat", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "1", + "occH": "0", + "unitBalanceID": "udes", + "sortBalance": "z2", + "sort2": "zz", + "level": 4, + "type": "Mechanical", + "goldcost": 250, + "lumbercost": 100, + "goldRep": 250, + "lumberRep": 100, + "fmade": " - ", + "fused": 0, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 60, + "stockStart": 0, + "HP": 575, + "realHP": 575, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1500, + "nsight": 1000, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 1, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "udes", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "msplash", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 15, + "dmgplus1": 54, + "dmgUp1": "-", + "mindmg1": 55, + "avgdmg1": 62, + "maxdmg1": 69, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 25, + "Harea1": 35, + "Qarea1": 50, + "Hfact1": 0.3, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,enemy,neutral,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 59, + "DPS": 41.3333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "udes", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\BoatMissile\\BoatMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "900", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadDestroyer.blp", + "skinType": "unit", + "skinnableID": "udes", + "file": "units\\creeps\\UndeadDestroyerShip\\UndeadDestroyerShip", + "portrait:sd": "units\\creeps\\UndeadDestroyerShip\\UndeadDestroyerShip", + "portrait:hd": "units\\creeps\\UndeadDestroyerShip\\UndeadDestroyerShip_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "350", + "run:sd": "240", + "run:hd": "350", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "90", + "shadowY": "90", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "0", + "addon": "Units" + }, + "uktg": { + "unitID": "uktg", + "sort": "z2", + "comment(s)": "kelthuzadghost", + "race": "undead", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "uktg", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kelthuzadghost", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uktg", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "undead", + "goldcost": 195, + "lumbercost": 0, + "goldRep": 195, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 280, + "realHP": 280, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "uktg", + "sortWeap": "z2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uktg", + "sortAbil": "z2", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhostOfKelThuzad.blp", + "skinType": "unit", + "skinnableID": "uktg", + "file": "units\\undead\\KelThuzadGhost\\KelThuzadGhost", + "unitSound": "KelThuzadLich", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "125", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "uktn": { + "unitID": "uktn", + "sort": "z2", + "comment(s)": "kelthuzadnecro", + "race": "undead", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "uktn", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "kelthuzadnecro", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uktn", + "sortBalance": "z2", + "sort2": "zz", + "level": 2, + "type": "undead", + "goldcost": 195, + "lumbercost": 0, + "goldRep": 195, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 280, + "realHP": 280, + "regenHP": 0.5, + "regenType": "night", + "manaN": 200, + "realM": 200, + "mana0": 75, + "regenMana": 0.5, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "large", + "spd": 240, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": "-", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "uktn", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.5, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 8, + "dmgUp1": "-", + "mindmg1": 9, + "avgdmg1": 10.5, + "maxdmg1": 12, + "dmgpt1": 0.53, + "backSw1": 0.47, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 18, + "DPS": 5.83333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uktn", + "sortAbil": "z2", + "auto": "_", + "abilList": "Acri,Arai,Auhf", + "Missileart": "Abilities\\Weapons\\NecromancerMissile\\NecromancerMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKelThuzad.blp", + "skinType": "unit", + "abilSkinList": "Acri,Arai,Auhf", + "skinnableID": "uktn", + "file": "units\\undead\\Kelthuzad\\Kelthuzad", + "unitSound": "KelThuzadNecro", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "240", + "run:sd": "200", + "run:hd": "240", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red:hd": "255", + "red:sd": "125", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "200", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "uswb": { + "unitID": "uswb", + "sort": "z2", + "comment(s)": "sylvanus banshee", + "race": "undead", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.17, + "canSleep": 0, + "cargoSize": 1, + "movetp": "hover", + "moveHeight": 50, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 61, + "orientInterp": 2, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "uswb", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sylvanusbanshee", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "uswb", + "sortBalance": "z2", + "sort2": "zz", + "level": 3, + "type": "undead", + "goldcost": 225, + "lumbercost": 0, + "goldRep": 225, + "lumberRep": 0, + "fmade": " - ", + "fused": 3, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 400, + "realHP": 400, + "regenHP": 1, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 75, + "regenMana": 0.8, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 35, + "reptm": 35, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "uswb", + "sortWeap": "z2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.83, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 500, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "missile", + "cool1": 1.4, + "mincool1": "-", + "dice1": 1, + "sides1": 9, + "dmgplus1": 20, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.56, + "backSw1": 0.51, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 37, + "DPS": 17.8571428571429, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "uswb", + "sortAbil": "z2", + "auto": "Acrs", + "abilList": "ACam,Acrs", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\BansheeMissile\\BansheeMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSylvanasGhost.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGhost.blp", + "skinType": "unit", + "abilSkinList": "ACam,Acrs", + "skinnableID": "uswb", + "file:hd": "Units\\Undead\\SylvanasBanshee\\SylvanasBanshee", + "file:sd": "units\\creeps\\BansheeGhost\\BansheeGhost", + "unitSound": "EvilSylvanas", + "blend": "0.15", + "scale": "1.3", + "legacyScale": "1.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Ethereal", + "modelScale:hd": "1", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red:hd": "255", + "red:sd": "120", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "ShadowFlyer", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "units\\creeps\\BansheeGhost\\BansheeGhost_portrait", + "portrait:hd": "Units\\Undead\\SylvanasBanshee\\SylvanasBanshee_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "haro": { + "unitID": "haro", + "sort": "z3", + "comment(s)": "Arcane Observatory", + "race": "human", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6.66, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\ArcaneObservatoryPath.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "haro", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "arcaneobservatory", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "haro", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 240, + "lumbercost": 100, + "goldRep": 240, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 5, + "defUp": 0, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 600, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 176, + "stockInitial": "-", + "unitWeaponID": "haro", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": "-", + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": "-", + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "haro", + "sortAbil": "z3", + "auto": "_", + "abilList": "Abds", + "Buttonpos": "1,2", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Attachmentanimprops": "large", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcaneObservatory.blp", + "buildingShadow": "ShadowArcaneObservatory", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "EMDB", + "skinnableID": "haro", + "file": "buildings\\other\\ArcaneObservatory\\ArcaneObservatory", + "portrait:sd": "buildings\\other\\ArcaneObservatory\\ArcaneObservatory", + "portrait:hd": "buildings\\other\\ArcaneObservatory\\ArcaneObservatory_portrait", + "unitSound": "ArcaneObservatory", + "blend": "0.15", + "scale": "6.3", + "legacyScale": "6.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "100", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nbfl": { + "unitID": "nbfl", + "sort": "z3", + "comment(s)": "Fountain of Blood", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nbfl", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bloodfountain", + "unitClass": "OBuilding14", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbfl", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nbfl", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbfl", + "sortAbil": "z3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFountainOfLifeBlood.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "uberSplat": "OMED", + "skinnableID": "nbfl", + "file": "buildings\\other\\FountainOfLifeBlood\\FountainOfLifeBlood", + "portrait:sd": "buildings\\other\\FountainOfLifeBlood\\FountainOfLifeBlood", + "portrait:hd": "buildings\\other\\FountainOfLifeBlood\\FountainOfLifeBlood_portrait", + "unitSound": "FountainOfLife", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nbse": { + "unitID": "nbse", + "sort": "z3", + "comment(s)": "bindstone southeast", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbse", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bindstonese", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nbse", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nbse", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbse", + "sortAbil": "z3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResStone.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "uberSplat": "OSMA", + "skinnableID": "nbse", + "file": "Doodads\\Cinematic\\RessurectionStoneSE\\RessurectionStoneSE", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "portrait:sd": "Doodads\\Cinematic\\RessurectionStoneSE\\RessurectionStoneSE", + "portrait:hd": "Doodads\\Cinematic\\RessurectionStoneSE\\RessurectionStoneSE_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nbsm": { + "unitID": "nbsm", + "sort": "z3", + "comment(s)": "book of summoning pedestal", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nbsm", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bookofsummoning", + "unitClass": "UBuilding19", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbsm", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 50, + "realHP": 50, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nbsm", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbsm", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBookOfSummoning.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "nbsm", + "file": "buildings\\other\\BookOfSummoning\\BookOfSummoning", + "portrait:sd": "buildings\\other\\BookOfSummoning\\BookOfSummoning", + "portrait:hd": "buildings\\other\\BookOfSummoning\\BookOfSummoning_portrait", + "unitSound": "BookOfSummoning", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nbsw": { + "unitID": "nbsw", + "sort": "z3", + "comment(s)": "bindstone southwest", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbsw", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bindstonesw", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nbsw", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nbsw", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbsw", + "sortAbil": "z3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResStone.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "uberSplat": "OSMA", + "skinnableID": "nbsw", + "file": "Doodads\\Cinematic\\RessurectionStoneSW\\RessurectionStoneSW", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "portrait:sd": "Doodads\\Cinematic\\RessurectionStoneSW\\RessurectionStoneSW", + "portrait:hd": "Doodads\\Cinematic\\RessurectionStoneSW\\RessurectionStoneSW_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nbt1": { + "unitID": "nbt1", + "sort": "z3", + "comment(s)": "boulder tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbt1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bouldertower", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbt1", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "nbt1", + "sortWeap": "z3", + "weapsOn": 3, + "acquire": 800, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,debris,tree,wall,ward,item", + "rangeN1": 800, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 22, + "dmgplus1": 89, + "dmgUp1": "-", + "mindmg1": 90, + "avgdmg1": 100.5, + "maxdmg1": 111, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 50, + "Harea1": 100, + "Qarea1": 125, + "Hfact1": 0.5, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,notself,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 84, + "DPS": 40.2, + "targs2": "structure", + "rangeN2": 800, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 22, + "dmgplus2": 89, + "dmgUp2": "-", + "mindmg2": 90, + "avgdmg2": 100.5, + "maxdmg2": 111, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbt1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Upgrade": "nbt2", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "second", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRockTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "nbt1", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "110", + "addon": "Buildings" + }, + "nbt2": { + "unitID": "nbt2", + "sort": "z3", + "comment(s)": "boulder tower upgraded", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nbt2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "bouldertowerupgrade", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbt2", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "nbt2", + "sortWeap": "z3", + "weapsOn": 3, + "acquire": 800, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,debris,tree,wall,ward,item", + "rangeN1": 800, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "artillery", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 22, + "dmgplus1": 89, + "dmgUp1": "-", + "mindmg1": 90, + "avgdmg1": 100.5, + "maxdmg1": 111, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": 50, + "Harea1": 100, + "Qarea1": 125, + "Hfact1": 0.5, + "Qfact1": 0.1, + "splashTargs1": "ground,structure,debris,tree,wall,notself,ward", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": 84, + "DPS": 40.2, + "targs2": "structure", + "rangeN2": 800, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "missile", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 22, + "dmgplus2": 89, + "dmgUp2": "-", + "mindmg2": 90, + "avgdmg2": 100.5, + "maxdmg2": 111, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbt2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,2", + "Missileart": "abilities\\weapons\\catapult\\catapultmissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "upgrade,second", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAdvancedRockTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "nbt2", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "135", + "addon": "Buildings" + }, + "nbwd": { + "unitID": "nbwd", + "sort": "z3", + "comment(s)": "barrow den", + "race": "nightelf", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nbwd", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "barrowden", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nbwd", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 210, + "lumbercost": 100, + "goldRep": 210, + "lumberRep": 100, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1100, + "realHP": 1100, + "regenHP": "-", + "regenType": "none", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 0, + "realdef": 2, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "nbwd", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nbwd", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBearDen.blp", + "buildingShadow": "ShadowHuntersHall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "EMDB", + "skinnableID": "nbwd", + "file": "buildings\\other\\BarrowDens\\BarrowDens", + "portrait:sd": "buildings\\other\\BarrowDens\\BarrowDens", + "portrait:hd": "buildings\\other\\BarrowDens\\BarrowDens_portrait", + "unitSound": "BarrowDen", + "blend": "0.15", + "scale": "4.2", + "legacyScale": "4.2", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ncap": { + "unitID": "ncap", + "sort": "z3", + "comment(s)": "corrupted Ancient Protector", + "race": "nightelf", + "prio": 4, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ncap", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "corruptedancientprotector", + "unitClass": "EBuilding17", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncap", + "sortBalance": "z3", + "sort2": "zz", + "level": 3, + "type": "Ancient", + "goldcost": 240, + "lumbercost": 130, + "goldRep": 240, + "lumberRep": 130, + "fmade": " - ", + "fused": "-", + "bountydice": 3, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": 0.5, + "regenType": "night", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 3, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "ncap", + "sortWeap": "z3", + "weapsOn": 3, + "acquire": 700, + "minRange": 200, + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.5, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 37.5, + "maxdmg1": 41, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "air,ground,structure,debris,item,ward", + "rangeN2": 700, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "siege", + "weapTp2": "msplash", + "cool2": 2, + "mincool2": "-", + "dice2": 2, + "sides2": 12, + "dmgplus2": 41, + "dmgUp2": "-", + "mindmg2": 43, + "avgdmg2": 54, + "maxdmg2": 65, + "dmgpt2": 0.6, + "backSw2": 0.4, + "Farea2": 50, + "Harea2": 75, + "Qarea2": 125, + "Hfact2": 0.5, + "Qfact2": 0.1, + "splashTargs2": "ground,structure,debris,tree,wall,ward", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncap", + "sortAbil": "z3", + "auto": "_", + "abilList": "Aeat,Aro2", + "Requires": "edob", + "Buttonpos": "3,0", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.10", + "Missilespeed": "750", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorruptedAncientProtector.blp", + "buildingShadow": "ShadowAncientProtector", + "skinType": "unit", + "abilSkinList": "Aeat,Aro2", + "uberSplat": "ESMA", + "skinnableID": "ncap", + "file": "buildings\\demon\\CorruptedAncientProtector\\CorruptedAncientProtector", + "unitSound": "AncientProtector", + "blend": "0.4", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "125", + "walk:hd": "40", + "run:sd": "125", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "125", + "shadowY": "125", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "195", + "addon": "Buildings" + }, + "ncaw": { + "unitID": "ncaw", + "sort": "z3", + "comment(s)": "corrupted AncientofWar", + "race": "nightelf", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ncaw", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "corruptedancientofwar", + "unitClass": "EBuilding18", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncaw", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Ancient", + "goldcost": 255, + "lumbercost": 70, + "goldRep": 255, + "lumberRep": 70, + "fmade": "-", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 800, + "realHP": 800, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 5, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "ncaw", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.59, + "backSw1": 0.81, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 20, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 11, + "dmgplus2": 44, + "dmgUp2": "-", + "mindmg2": 45, + "avgdmg2": 50, + "maxdmg2": 55, + "dmgpt2": 0.59, + "backSw2": 0.81, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncaw", + "sortAbil": "z3", + "auto": "_", + "abilList": "Aeat,Aro1", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorruptedAncientOfWar.blp", + "buildingShadow": "ShadowAncientofWar", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aeat,Aro1", + "uberSplat": "EMDA", + "skinnableID": "ncaw", + "file": "buildings\\demon\\CorruptedAncientofWar\\CorruptedAncientofWar", + "unitSound": "AncientOfWar", + "blend": "0.4", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.87", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ncmw": { + "unitID": "ncmw", + "sort": "z3", + "comment(s)": "corrupted MoonWell", + "race": "demon", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ncmw", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "corruptedmoonwell", + "unitClass": "EBuilding13", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncmw", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 155, + "lumbercost": 40, + "goldRep": 155, + "lumberRep": 40, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 1.25, + "def": 2, + "defUp": 0, + "realdef": 2, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "ncmw", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncmw", + "sortAbil": "z3", + "auto": "_", + "abilList": "Ambt", + "Buttonpos": "0,1", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorruptedMoonWell.blp", + "buildingShadow": "ShadowMoonWell", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Ambt", + "uberSplat": "ESMB", + "skinnableID": "ncmw", + "file": "buildings\\demon\\CorruptedMoonWell\\CorruptedMoonWell", + "portrait:sd": "buildings\\demon\\CorruptedMoonWell\\CorruptedMoonWell", + "portrait:hd": "buildings\\demon\\CorruptedMoonWell\\CorruptedMoonWell_portrait", + "unitSound": "MoonWell", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.87", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ncta": { + "unitID": "ncta", + "sort": "z3", + "comment(s)": "corrupted TreeofAges", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12TreeOfLife.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ncta", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "corruptedtreeofages", + "unitClass": "EBuilding15", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncta", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "TownHall,Ancient", + "goldcost": 270, + "lumbercost": 80, + "goldRep": 695, + "lumberRep": 80, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 3, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "ncta", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 12, + "dmgplus1": 48, + "dmgUp1": "-", + "mindmg1": 49, + "avgdmg1": 54.5, + "maxdmg1": 60, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 21.8, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 12, + "dmgplus2": 48, + "dmgUp2": "-", + "mindmg2": 49, + "avgdmg2": 54.5, + "maxdmg2": 60, + "dmgpt2": 0.4, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncta", + "sortAbil": "z3", + "auto": "_", + "abilList": "Aent,Aeat,Aro1,Atol", + "Upgrade": "ncte", + "Buttonpos": "0,2", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "Upgrade,First", + "Attachmentanimprops": "upgrade,first", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCorruptedTreeOfAges.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTreeOfAges.blp", + "buildingShadow": "ShadowTreeofLife", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aent,Aeat,Aro1,Atol", + "uberSplat": "EMDA", + "skinnableID": "ncta", + "file": "buildings\\demon\\CorruptedTreeofLife\\CorruptedTreeofLife", + "unitSound": "TreeofLife", + "blend": "0.4", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1.15", + "legacyModelScale": "1.15", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ncte": { + "unitID": "ncte", + "sort": "z3", + "comment(s)": "corrupted TreeofEternity", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12TreeOfLife.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ncte", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "corruptedtreeofeternity", + "unitClass": "EBuilding16", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncte", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "TownHall,Ancient", + "goldcost": 995, + "lumbercost": 200, + "goldRep": 995, + "lumberRep": 200, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2500, + "realHP": 2500, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 3, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 80, + "reptm": 80, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "ncte", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 15, + "dmgplus1": 59, + "dmgUp1": "-", + "mindmg1": 60, + "avgdmg1": 67, + "maxdmg1": 74, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 26.8, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 15, + "dmgplus2": 59, + "dmgUp2": "-", + "mindmg2": 60, + "avgdmg2": 67, + "maxdmg2": 74, + "dmgpt2": 0.4, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncte", + "sortAbil": "z3", + "auto": "_", + "abilList": "Aent,Aeat,Aro1,Atol", + "Buttonpos": "0,2", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Animprops": "Upgrade,Second", + "Attachmentanimprops": "upgrade,second", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCorruptedTreeOfEternity.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTreeOfEternity.blp", + "buildingShadow": "ShadowTreeofLife", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aent,Aeat,Aro1,Atol", + "uberSplat": "EMDA", + "skinnableID": "ncte", + "file": "buildings\\demon\\CorruptedTreeofLife\\CorruptedTreeofLife", + "unitSound": "TreeofLife", + "blend": "0.4", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.83", + "modelScale:sd": "1.3", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "120", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nctl": { + "unitID": "nctl", + "sort": "z3", + "comment(s)": "corrupted TreeofLife", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 6, + "canSleep": 0, + "cargoSize": "-", + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 60, + "orientInterp": 3, + "formation": 4, + "targType": "structure", + "pathTex": "PathTextures\\12x12TreeOfLife.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nctl", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "corruptedtreeoflife", + "unitClass": "EBuilding14", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nctl", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "TownHall,Ancient", + "goldcost": 385, + "lumbercost": 0, + "goldRep": 385, + "lumberRep": 0, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": 0.5, + "regenType": "night", + "manaN": "-", + "realM": "-", + "mana0": "-", + "regenMana": " - ", + "def": 2, + "defUp": 3, + "realdef": 2, + "defType": "fort", + "spd": 40, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 110, + "reptm": 110, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": "-", + "AGIplus": "-", + "abilTest": "-", + "Primary": "_", + "upgrades": "Renb", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "nctl", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2.5, + "mincool1": "-", + "dice1": 1, + "sides1": 10, + "dmgplus1": 40, + "dmgUp1": "-", + "mindmg1": 41, + "avgdmg1": 45.5, + "maxdmg1": 50, + "dmgpt1": 0.4, + "backSw1": 0.6, + "Farea1": "-", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 18.2, + "targs2": "ground,structure,debris,item,ward", + "rangeN2": 128, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 2.5, + "mincool2": "-", + "dice2": 1, + "sides2": 10, + "dmgplus2": 40, + "dmgUp2": "-", + "mindmg2": 41, + "avgdmg2": 45.5, + "maxdmg2": 50, + "dmgpt2": 0.4, + "backSw2": 0.6, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nctl", + "sortAbil": "z3", + "auto": "_", + "abilList": "Aent,Aeat,Aro1,Atol", + "Upgrade": "ncta", + "Buttonpos": "0,0", + "BuildingSoundLabel": "NightElfGrowingLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\NightElf\\NECancelDeath\\NECancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorruptedTreeOfLife.blp", + "buildingShadow": "ShadowTreeofLife", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aent,Aeat,Aro1,Atol", + "uberSplat": "EMDA", + "skinnableID": "nctl", + "file": "buildings\\demon\\CorruptedTreeofLife\\CorruptedTreeofLife", + "unitSound": "TreeofLife", + "blend": "0.4", + "scale": "4.75", + "legacyScale": "4.75", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "100", + "walk:hd": "40", + "run:sd": "100", + "run:hd": "40", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "500", + "shadowH": "500", + "shadowX": "200", + "shadowY": "200", + "impactSwimZ": "0", + "impactZ": "160", + "weapType1": "WoodHeavyBash", + "weapType2": "WoodHeavyBash", + "launchSwimZ": "0", + "showUI1": "0", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndfl": { + "unitID": "ndfl", + "sort": "z3", + "comment(s)": "Defiled Fountain of Life", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ndfl", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "defiledfountainoflife", + "unitClass": "OBuilding15", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndfl", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndfl", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndfl", + "sortAbil": "z3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFountainOfLifeDefiled.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "uberSplat": "OMED", + "skinnableID": "ndfl", + "file": "buildings\\other\\FountainOfLifeDefiled\\FountainOfLifeDefiled", + "portrait:sd": "buildings\\other\\FountainOfLifeDefiled\\FountainOfLifeDefiled", + "portrait:hd": "buildings\\other\\FountainOfLifeDefiled\\FountainOfLifeDefiled_portrait", + "unitSound": "FountainOfLife", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ndgt": { + "unitID": "ndgt", + "sort": "z3", + "comment(s)": "dalaran guard tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ndgt", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dalaranguardtower", + "unitClass": "HBuilding21", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndgt", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "ndgt", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndgt", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDalaranGuardTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "ndgt", + "file": "buildings\\other\\DalaranGuardTower\\DalaranGuardTower", + "portrait:sd": "buildings\\other\\DalaranGuardTower\\DalaranGuardTower", + "portrait:hd": "buildings\\other\\DalaranGuardTower\\DalaranGuardTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "255", + "addon": "Buildings" + }, + "ndke": { + "unitID": "ndke", + "sort": "z3", + "comment(s)": "dark portal (southeast)", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\DarkPortalSE.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndke", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darkportalse", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndke", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 400, + "nsight": 400, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndke", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndke", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Trains": "nfel,ninf,nbal", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkPortal.blp", + "buildingShadow": "ShadowPortalSE", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "DPSE", + "skinnableID": "ndke", + "file": "buildings\\other\\DarkPortal2\\DarkPortal2", + "portrait:sd": "buildings\\other\\DarkPortal2\\DarkPortal2", + "portrait:hd": "buildings\\other\\DarkPortal2\\DarkPortal2_portrait", + "blend": "0.15", + "scale": "8.5", + "legacyScale": "8.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndkw": { + "unitID": "ndkw", + "sort": "z3", + "comment(s)": "dark portal (southwest)", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\DarkPortalSW.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndkw", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "darkportalsw", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndkw", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 400, + "nsight": 400, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "O", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndkw", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndkw", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Trains": "nfel,ninf,nbal", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkPortal.blp", + "buildingShadow": "ShadowPortalSW", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "DPSW", + "skinnableID": "ndkw", + "file": "buildings\\other\\DarkPortal\\DarkPortal", + "portrait:sd": "buildings\\other\\DarkPortal\\DarkPortal", + "portrait:hd": "buildings\\other\\DarkPortal\\DarkPortal_portrait", + "blend": "0.15", + "scale": "8.5", + "legacyScale": "8.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndmg": { + "unitID": "ndmg", + "sort": "z3", + "comment(s)": "demon gate", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\DemonGatePath.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ndmg", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "demongate", + "unitClass": "UBuilding16", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndmg", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 2000, + "realHP": 2000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 400, + "nsight": 400, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndmg", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndmg", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Trains": "nfel,ninf,nbal", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDemonGate.blp", + "buildingShadow": "ShadowDemonGate", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "NDGS", + "skinnableID": "ndmg", + "file": "buildings\\demon\\DemonGate\\DemonGate", + "portrait:sd": "buildings\\demon\\DemonGate\\DemonGate", + "portrait:hd": "buildings\\demon\\DemonGate\\DemonGate_portrait", + "unitSound": "DemonGate", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndrb": { + "unitID": "ndrb", + "sort": "z3", + "comment(s)": "Dragon Building", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ndrb", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dragonbuilding", + "unitClass": "OBuilding13", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ndrb", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ndrb", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndrb", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Trains": "nrwm", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDragonRoost.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OLAR", + "skinnableID": "ndrb", + "file": "buildings\\other\\DragonBuilding\\DragonBuilding", + "portrait:sd": "buildings\\other\\DragonBuilding\\DragonBuilding", + "portrait:hd": "buildings\\other\\DragonBuilding\\DragonBuilding_portrait", + "unitSound": "DragonRoost", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ndt1": { + "unitID": "ndt1", + "sort": "z3", + "comment(s)": "cold tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndt1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "coldtower", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndt1", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "ndt1", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndt1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Upgrade": "ndt2", + "Buttonpos": "1,1", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "fourth", + "Art": "ReplaceableTextures\\CommandButtons\\BTNColdTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "ndt1", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "140", + "addon": "Buildings" + }, + "ndt2": { + "unitID": "ndt2", + "sort": "z3", + "comment(s)": "cold tower upgraded", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ndt2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "coldtowerupgrade", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ndt2", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "ndt2", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ndt2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "upgrade,fourth", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAdvancedFrostTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "ndt2", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "235", + "addon": "Buildings" + }, + "nef0": { + "unitID": "nef0", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef0", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm0", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef0", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef0", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef0", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef0", + "file": "buildings\\other\\ElvenVillageBuilding0\\ElvenVillageBuilding0", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding0\\ElvenVillageBuilding0", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding0\\ElvenVillageBuilding0_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nef1": { + "unitID": "nef1", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm1", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef1", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef1", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef1", + "file": "buildings\\other\\ElvenVillageBuilding1\\ElvenVillageBuilding1", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding1\\ElvenVillageBuilding1", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding1\\ElvenVillageBuilding1_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nef2": { + "unitID": "nef2", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm2", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef2", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef2", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef2", + "file": "buildings\\other\\ElvenVillageBuilding2\\ElvenVillageBuilding2", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding2\\ElvenVillageBuilding2", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding2\\ElvenVillageBuilding2_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nef3": { + "unitID": "nef3", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef3", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm3", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef3", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef3", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef3", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef3", + "file": "buildings\\other\\ElvenVillageBuilding3\\ElvenVillageBuilding3", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding3\\ElvenVillageBuilding3", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding3\\ElvenVillageBuilding3_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nef4": { + "unitID": "nef4", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef4", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm4", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef4", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef4", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef4", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef4", + "file": "buildings\\other\\ElvenVillageBuilding4\\ElvenVillageBuilding4", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding4\\ElvenVillageBuilding4", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding4\\ElvenVillageBuilding4_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nef5": { + "unitID": "nef5", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef5", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm5", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef5", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef5", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef5", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef5", + "file": "buildings\\other\\ElvenVillageBuilding5\\ElvenVillageBuilding5", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding5\\ElvenVillageBuilding5", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding5\\ElvenVillageBuilding5_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nef6": { + "unitID": "nef6", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef6", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm6", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef6", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef6", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef6", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef6", + "file": "buildings\\other\\ElvenVillageBuilding6\\ElvenVillageBuilding6", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding6\\ElvenVillageBuilding6", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding6\\ElvenVillageBuilding6_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nef7": { + "unitID": "nef7", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nef7", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm7", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nef7", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 1, + "defUp": 1, + "realdef": 1, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nef7", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nef7", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nef7", + "file": "buildings\\other\\ElvenVillageBuilding7\\ElvenVillageBuilding7", + "portrait:sd": "buildings\\other\\ElvenVillageBuilding7\\ElvenVillageBuilding7", + "portrait:hd": "buildings\\other\\ElvenVillageBuilding7\\ElvenVillageBuilding7_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nefm": { + "unitID": "nefm", + "sort": "z3", + "comment(s)": "elven farm", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nefm", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfarm", + "unitClass": "HBuilding23", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nefm", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 70, + "lumbercost": 20, + "goldRep": 70, + "lumberRep": 20, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 400, + "realHP": 400, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 40, + "reptm": 40, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nefm", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nefm", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNElvenFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "uberSplat": "HSMA", + "skinnableID": "nefm", + "file": "buildings\\other\\ElvenFarm\\ElvenFarm", + "portrait:sd": "buildings\\other\\ElvenFarm\\ElvenFarm", + "portrait:hd": "buildings\\other\\ElvenFarm\\ElvenFarm_portrait", + "unitSound": "ElvenFarm", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "negf": { + "unitID": "negf", + "sort": "z3", + "comment(s)": "elven guard fire tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "negf", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "earthfurytower", + "unitClass": "HBuilding19", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "negf", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 550, + "realHP": 550, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "negf", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "negf", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEarthFuryTower.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenGuardTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "negf", + "file": "buildings\\other\\ElvenGuardFireTower\\ElvenGuardFireTower", + "portrait:sd": "buildings\\other\\ElvenGuardFireTower\\ElvenGuardFireTower", + "portrait:hd": "buildings\\other\\ElvenGuardFireTower\\ElvenGuardFireTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "255", + "addon": "Buildings" + }, + "negm": { + "unitID": "negm", + "sort": "z3", + "comment(s)": "elven guard magic tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "negm", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "skyfurytower", + "unitClass": "HBuilding18", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "negm", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 450, + "realHP": 450, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "negm", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "air", + "rangeN1": 700, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.2, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 20.8333333333333, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "negm", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\AncestralGuardianMissile\\AncestralGuardianMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1500", + "MissileHoming": "1", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSkyFuryTower.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElvenGuardTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "negm", + "file": "buildings\\other\\ElvenGuardMagicTower\\ElvenGuardMagicTower", + "portrait:sd": "buildings\\other\\ElvenGuardMagicTower\\ElvenGuardMagicTower", + "portrait:hd": "buildings\\other\\ElvenGuardMagicTower\\ElvenGuardMagicTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "255", + "addon": "Buildings" + }, + "negt": { + "unitID": "negt", + "sort": "z3", + "comment(s)": "elven guard tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 15, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "negt", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenguardtower", + "unitClass": "HBuilding20", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "negt", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "negt", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "negt", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNElvenGuardTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "negt", + "file": "buildings\\other\\ElvenGuardTower\\ElvenGuardTower", + "portrait:sd": "buildings\\other\\ElvenGuardTower\\ElvenGuardTower", + "portrait:hd": "buildings\\other\\ElvenGuardTower\\ElvenGuardTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "255", + "addon": "Buildings" + }, + "net1": { + "unitID": "net1", + "sort": "z3", + "comment(s)": "energy tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "net1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "energytower", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "net1", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "net1", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "net1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Upgrade": "net2", + "Buttonpos": "0,0", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "first", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnergyTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "net1", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "210", + "addon": "Buildings" + }, + "net2": { + "unitID": "net2", + "sort": "z3", + "comment(s)": "energy tower upgraded", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "net2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "energytowerupgrade", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "net2", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "net2", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "net2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\GreenDragonMissile\\GreenDragonMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "upgrade,first", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAdvancedEnergyTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "net2", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "255", + "addon": "Buildings" + }, + "nfnp": { + "unitID": "nfnp", + "sort": "z3", + "comment(s)": "purple fountain", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfnp", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "purplefountain", + "unitClass": "EBuilding19", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfnp", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical,neutral", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfnp", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfnp", + "sortAbil": "z3", + "auto": "_", + "abilList": "ACnr,ANre,Avul", + "Animprops": "third", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFountainOfPower.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNFountainOfLife.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "ACnr,ANre,Avul", + "uberSplat": "OMED", + "skinnableID": "nfnp", + "file": "buildings\\other\\FountainOfPower\\FountainOfPower", + "portrait:sd": "buildings\\other\\FountainOfPower\\FountainOfPower", + "portrait:hd": "buildings\\other\\FountainOfPower\\FountainOfPower_portrait", + "unitSound": "FountainOfLife", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nfrm": { + "unitID": "nfrm", + "sort": "z3", + "comment(s)": "frostmourne pedestal", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nfrm", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "frostmourne", + "unitClass": "UBuilding18", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nfrm", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfrm", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfrm", + "sortAbil": "z3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostmourne.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "skinnableID": "nfrm", + "file": "buildings\\other\\Frostmourne\\Frostmourne", + "portrait:sd": "buildings\\other\\Frostmourne\\Frostmourne", + "portrait:hd": "buildings\\other\\Frostmourne\\Frostmourne_portrait", + "unitSound": "Frostmourne", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.4", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfrt": { + "unitID": "nfrt", + "sort": "z3", + "comment(s)": "fruit stand", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfrt", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "fruitstand", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfrt", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfrt", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfrt", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMarketplace.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nfrt", + "file": "buildings\\other\\FruitStand\\FruitStand", + "portrait:sd": "buildings\\other\\FruitStand\\FruitStand", + "portrait:hd": "buildings\\other\\FruitStand\\FruitStand_portrait", + "UnitSound": "FruitStand", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nft1": { + "unitID": "nft1", + "sort": "z3", + "comment(s)": "flame tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nft1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "flametower", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nft1", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "nft1", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nft1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Upgrade": "nft2", + "Buttonpos": "0,1", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "third", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlameTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "nft1", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "140", + "addon": "Buildings" + }, + "nft2": { + "unitID": "nft2", + "sort": "z3", + "comment(s)": "flame tower upgraded", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nft2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "flametowerupgrade", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nft2", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "nft2", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nft2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\RedDragonBreath\\RedDragonMissile.mdl", + "Missilearc": "0.35", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "upgrade,third", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAdvancedFlameTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "nft2", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "235", + "addon": "Buildings" + }, + "nfv0": { + "unitID": "nfv0", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfv0", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfishingvillage0", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfv0", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfv0", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfv0", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillageTwoStory.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfv0", + "file": "buildings\\other\\ElvenFishVillageBuilding0\\ElvenFishVillageBuilding0", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuilding0\\ElvenFishVillageBuilding0", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuilding0\\ElvenFishVillageBuilding0_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfv1": { + "unitID": "nfv1", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfv1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfishingvillage1", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfv1", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfv1", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfv1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillageCrested.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfv1", + "file": "buildings\\other\\ElvenFishVillageBuilding1\\ElvenFishVillageBuilding1", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuilding1\\ElvenFishVillageBuilding1", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuilding1\\ElvenFishVillageBuilding1_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfv2": { + "unitID": "nfv2", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfv2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfishingvillage2", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfv2", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfv2", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfv2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfv2", + "file": "buildings\\other\\ElvenFishVillageBuilding2\\ElvenFishVillageBuilding2", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuilding2\\ElvenFishVillageBuilding2", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuilding2\\ElvenFishVillageBuilding2_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfv3": { + "unitID": "nfv3", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfv3", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfishingvillage3", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfv3", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfv3", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfv3", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillageTwoStory.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfv3", + "file": "buildings\\other\\ElvenFishVillageBuilding3\\ElvenFishVillageBuilding3", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuilding3\\ElvenFishVillageBuilding3", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuilding3\\ElvenFishVillageBuilding3_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nfv4": { + "unitID": "nfv4", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nfv4", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "elvenfishingvillage4", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nfv4", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nfv4", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nfv4", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillageCrested.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nfv4", + "file": "buildings\\other\\ElvenFishVillageBuilding4\\ElvenFishVillageBuilding4", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuilding4\\ElvenFishVillageBuilding4", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuilding4\\ElvenFishVillageBuilding4_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ngob": { + "unitID": "ngob", + "sort": "z3", + "comment(s)": "gemstone obelisk", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ngob", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gemstoneobelisk", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngob", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ngob", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngob", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEnchantedGemstoneObelisk.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNEnchantedGemstone.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "ngob", + "file": "buildings\\other\\BridgeObelisk\\BridgeObelisk", + "portrait:sd": "buildings\\other\\BridgeObelisk\\BridgeObelisk", + "portrait:hd": "buildings\\other\\BridgeObelisk\\BridgeObelisk_portrait", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nhcn": { + "unitID": "nhcn", + "sort": "z3", + "comment(s)": "horn of cenarius pedestal", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nhcn", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "hornofcenarius", + "unitClass": "EBuilding19", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhcn", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nhcn", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhcn", + "sortAbil": "z3", + "auto": "_", + "abilList": "Avul", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHornOfCenariusPedestal.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHornOfCenarius.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "skinnableID": "nhcn", + "file": "buildings\\other\\HornOfCenarius\\HornOfCenarius", + "portrait:sd": "buildings\\other\\HornOfCenarius\\HornOfCenarius", + "portrait:hd": "buildings\\other\\HornOfCenarius\\HornOfCenarius_portrait", + "unitSound": "HornOfCenarius", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.75", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nheb": { + "unitID": "nheb", + "sort": "z3", + "comment(s)": "High Elven Barracks", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nheb", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "highelfbarracks", + "unitClass": "HBuilding22", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nheb", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 255, + "lumbercost": 80, + "goldRep": 255, + "lumberRep": 80, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nheb", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nheb", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Trains": "hhes,nhea,nws1", + "Researches": "Rhde", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMageTower.blp", + "buildingShadow": "ShadowHighElvenBarracks", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HMED", + "skinnableID": "nheb", + "file": "buildings\\other\\MageTower\\MageTower", + "portrait:sd": "buildings\\other\\MageTower\\MageTower", + "portrait:hd": "buildings\\other\\MageTower\\MageTower_portrait", + "unitSound": "MageTower", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nico": { + "unitID": "nico", + "sort": "z3", + "comment(s)": "icecrown obelisk", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nico", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "icecrownobelisk", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nico", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "I", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nico", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nico", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceCrownObelisk.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nico", + "file": "doodads\\cinematic\\IcecrownObelisk\\IcecrownObelisk", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "portrait:sd": "doodads\\cinematic\\IcecrownObelisk\\IcecrownObelisk", + "portrait:hd": "doodads\\cinematic\\IcecrownObelisk\\IcecrownObelisk_portrait", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nitb": { + "unitID": "nitb", + "sort": "z3", + "comment(s)": "treasure box", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nitb", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "treasurebox", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nitb", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nitb", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nitb", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIcyTreasureBox.blp", + "buildingShadow": "ShadowMagicVault", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "nitb", + "file": "buildings\\other\\IceCrownTreasureBox\\IceCrownTreasureBox", + "portrait:sd": "buildings\\other\\IceCrownTreasureBox\\IceCrownTreasureBox", + "portrait:hd": "buildings\\other\\IceCrownTreasureBox\\IceCrownTreasureBox_portrait", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nmgv": { + "unitID": "nmgv", + "sort": "z3", + "comment(s)": "magic vault", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nmgv", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "magicvault", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nmgv", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmgv", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmgv", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMagicVault.blp", + "buildingShadow": "ShadowMagicVault", + "elevPts": "4", + "skinType": "unit", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "skinnableID": "nmgv", + "file": "buildings\\other\\MagicVault\\MagicVault", + "portrait:sd": "buildings\\other\\MagicVault\\MagicVault", + "portrait:hd": "buildings\\other\\MagicVault\\MagicVault_portrait", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nnad": { + "unitID": "nnad", + "sort": "z3", + "comment(s)": "altar of the depths - naga altar", + "race": "naga", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\10x10Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnad", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "altarofthedepths", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnad", + "sortBalance": "z3", + "sort2": "zzm", + "level": "-", + "type": "Mechanical", + "goldcost": 255, + "lumbercost": 100, + "goldRep": 255, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 900, + "realHP": 900, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "nnad", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnad", + "sortAbil": "z3", + "auto": "_", + "abilList": "Abds", + "Buttonpos": "0,0", + "BuildingSoundLabel": "NagaConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Naga\\NagaDeath\\NagaDeath.mdl", + "Attachmentanimprops": "medium", + "Revive": "1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfDepths.blp", + "buildingShadow": "ShadowAltarOfDepths", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "nnad", + "file": "buildings\\naga\\AltarOfDepths\\AltarOfDepths", + "portrait:sd": "buildings\\naga\\AltarOfDepths\\AltarOfDepths", + "portrait:hd": "buildings\\naga\\AltarOfDepths\\AltarOfDepths_portrait", + "unitSound": "AltarOfDepths", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nnfm": { + "unitID": "nnfm", + "sort": "z3", + "comment(s)": "coral bed - naga farm", + "race": "naga", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnfm", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "coralbed", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnfm", + "sortBalance": "z3", + "sort2": "zzm", + "level": "-", + "type": "Mechanical", + "goldcost": 115, + "lumbercost": 40, + "goldRep": 115, + "lumberRep": 40, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1200, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nnfm", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 1, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnfm", + "sortAbil": "z3", + "auto": "_", + "abilList": "Abds", + "BuildingSoundLabel": "NagaConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Naga\\NagaDeath\\NagaDeath.mdl", + "Buttonpos": "2,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCoralBed.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "OSMA", + "skinnableID": "nnfm", + "file": "buildings\\naga\\CoralBed\\CoralBed", + "portrait:sd": "buildings\\naga\\CoralBed\\CoralBed", + "portrait:hd": "buildings\\naga\\CoralBed\\CoralBed_portrait", + "unitSound": "CoralBed", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "-30", + "addon": "Buildings" + }, + "nnsa": { + "unitID": "nnsa", + "sort": "z3", + "comment(s)": "shrine of azshara - naga caster barracks", + "race": "naga", + "prio": 5, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnsa", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "shrineofazshara", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnsa", + "sortBalance": "z3", + "sort2": "zzm", + "level": "-", + "type": "Mechanical", + "goldcost": 180, + "lumbercost": 70, + "goldRep": 180, + "lumberRep": 70, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1050, + "realHP": 1050, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 70, + "reptm": 70, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "nnsa", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0.56, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnsa", + "sortAbil": "z3", + "auto": "_", + "abilList": "Abds", + "Trains": "nnsw,nwgs", + "Researches": "Rnsw,Rnsi", + "Buttonpos": "0,1", + "BuildingSoundLabel": "NagaConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Naga\\NagaDeath\\NagaDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShrineOfAszhara.blp", + "buildingShadow": "ShadowShrineOfAzshara", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HMED", + "skinnableID": "nnsa", + "file": "buildings\\naga\\ShrineOfAshjara\\ShrineOfAshjara", + "portrait:sd": "buildings\\naga\\ShrineOfAshjara\\ShrineOfAshjara", + "portrait:hd": "buildings\\naga\\ShrineOfAshjara\\ShrineOfAshjara_portrait", + "unitSound": "ShrineOfAzshara", + "blend": "0.15", + "scale": "4.5", + "legacyScale": "4.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "0.9", + "legacyModelScale": "0.9", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nnsg": { + "unitID": "nnsg", + "sort": "z3", + "comment(s)": "spawning grounds - naga barracks", + "race": "naga", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "factory", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nnsg", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spawninggrounds", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nnsg", + "sortBalance": "z3", + "sort2": "zzm", + "level": "-", + "type": "Mechanical", + "goldcost": 205, + "lumbercost": 60, + "goldRep": 205, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 144, + "stockInitial": "-", + "unitWeaponID": "nnsg", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nnsg", + "sortAbil": "z3", + "auto": "_", + "abilList": "Abds", + "Trains": "nmyr,nsnp,nhyc", + "Researches": "Rnen", + "Buttonpos": "1,0", + "BuildingSoundLabel": "NagaConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Naga\\NagaDeath\\NagaDeath.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpawningGrounds.blp", + "buildingShadow": "ShadowHumanBarracks", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HLAR", + "skinnableID": "nnsg", + "file": "buildings\\naga\\SpawningGrounds\\SpawningGrounds", + "portrait:sd": "buildings\\naga\\SpawningGrounds\\SpawningGrounds", + "portrait:hd": "buildings\\naga\\SpawningGrounds\\SpawningGrounds_portrait", + "unitSound": "SpawningGrounds", + "blend": "0.15", + "scale": "5", + "legacyScale": "5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.05", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "160", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "nntg": { + "unitID": "nntg", + "sort": "z3", + "comment(s)": "tidal guardian - naga tower", + "race": "naga", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nntg", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tidalguardian", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nntg", + "sortBalance": "z3", + "sort2": "zzm", + "level": 1, + "type": "Mechanical", + "goldcost": 130, + "lumbercost": 80, + "goldRep": 130, + "lumberRep": 80, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1800, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "nntg", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.7, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 700, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.5, + "mincool1": "-", + "dice1": 3, + "sides1": 5, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 33, + "avgdmg1": 39, + "maxdmg1": 45, + "dmgpt1": 0.6, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 16, + "DPS": 26, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nntg", + "sortAbil": "z3", + "auto": "_", + "abilList": "Abds", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1", + "BuildingSoundLabel": "NagaConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Naga\\NagaDeath\\NagaDeath.mdl", + "Buttonpos": "3,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTidalGuardian.blp", + "buildingShadow": "ShadowTrollBurrow", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds", + "uberSplat": "HSMA", + "skinnableID": "nntg", + "file": "buildings\\naga\\TidalGuardian\\TidalGuardian", + "portrait:sd": "buildings\\naga\\TidalGuardian\\TidalGuardian", + "portrait:hd": "buildings\\naga\\TidalGuardian\\TidalGuardian_portrait", + "unitSound": "TidalGuardian", + "blend": "0.5", + "scale": "3.25", + "legacyScale": "3.25", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "90", + "launchSwimZ": "10", + "showUI1": "1", + "showUI2": "1", + "launchZ": "85", + "impactZ:hd": "30", + "launchZ:hd": "40", + "projectileVisOffsetY:hd": "70", + "addon": "Buildings" + }, + "nntt": { + "unitID": "nntt", + "sort": "z3", + "comment(s)": "temple of tides - naga town hall", + "race": "naga", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\16x16Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "townhall", + "buffRadius": 8, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nntt", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "templeoftides", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nntt", + "sortBalance": "z3", + "sort2": "zzm", + "level": "-", + "type": "TownHall,Mechanical", + "goldcost": 385, + "lumbercost": 150, + "goldRep": 385, + "lumberRep": 150, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1500, + "realHP": 1500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 180, + "reptm": 180, + "sight": 900, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unwalkable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 176, + "stockInitial": "-", + "unitWeaponID": "nntt", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nntt", + "sortAbil": "z3", + "auto": "_", + "abilList": "Argl,Abds", + "Trains": "nmpe,nnmg", + "Researches": "Rnat,Rnam,Rnsb", + "Buttonpos": "0,0", + "BuildingSoundLabel": "NagaConstructionLoop", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Specialart": "Objects\\Spawnmodels\\Naga\\NagaDeath\\NagaDeath.mdl", + "Attachmentanimprops": "large", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTempleOfTides.blp", + "buildingShadow": "ShadowTempleOfTides", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Argl,Abds", + "uberSplat": "NLAR", + "skinnableID": "nntt", + "file": "buildings\\naga\\TempleofTides\\TempleofTides", + "portrait:sd": "buildings\\naga\\TempleofTides\\TempleofTides", + "portrait:hd": "buildings\\naga\\TempleofTides\\TempleofTides_portrait", + "unitSound": "TempleOfTides", + "blend": "0.15", + "scale": "5.5", + "legacyScale": "5.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.85", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "144", + "addon": "Buildings" + }, + "npgf": { + "unitID": "npgf", + "sort": "z3", + "comment(s)": "Pig Farm", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "npgf", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "pigfarm", + "unitClass": "OBuilding12", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npgf", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 115, + "lumbercost": 40, + "goldRep": 115, + "lumberRep": 40, + "fmade": 15, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "npgf", + "sortWeap": "n2", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npgf", + "sortAbil": "z3", + "auto": "_", + "abilList": "Aspi", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPigFarm.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Aspi", + "uberSplat": "OSMA", + "skinnableID": "npgf", + "file": "buildings\\other\\PigFarm\\PigFarm", + "portrait:sd": "buildings\\other\\PigFarm\\PigFarm", + "portrait:hd": "buildings\\other\\PigFarm\\PigFarm_portrait", + "unitSound": "PigFarm", + "blend": "0.15", + "scale": "2.75", + "legacyScale": "2.75", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "100", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "npgr": { + "unitID": "npgr", + "sort": "z3", + "comment(s)": "power generator", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "npgr", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "powergenerator", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "npgr", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "npgr", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "npgr", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPowerGenerator.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "npgr", + "file": "buildings\\other\\PowerGenerator\\PowerGenerator", + "portrait:sd": "buildings\\other\\PowerGenerator\\PowerGenerator", + "portrait:hd": "buildings\\other\\PowerGenerator\\PowerGenerator_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.8", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nshr": { + "unitID": "nshr", + "sort": "z3", + "comment(s)": "shrine", + "race": "undead", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\12x12Simple.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nshr", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "shrine", + "unitClass": "UBuilding14", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nshr", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nshr", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nshr", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadShrine.blp", + "buildingShadow": "BuildingShadowLarge", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "nshr", + "file": "buildings\\other\\SacrificialAltar\\SacrificialAltar", + "portrait:sd": "buildings\\other\\SacrificialAltar\\SacrificialAltar", + "portrait:hd": "buildings\\other\\SacrificialAltar\\SacrificialAltar_portrait", + "unitSound": "SacrificialAltar", + "blend": "0.15", + "scale": "4", + "legacyScale": "4", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "ntt1": { + "unitID": "ntt1", + "sort": "z3", + "comment(s)": "death tower", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntt1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "deathtower", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntt1", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "ntt1", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntt1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Upgrade": "ntx2", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Spells\\NightElf\\CorrosiveBreath\\CorrosiveBreathMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "fifth", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "ntt1", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "180", + "addon": "Buildings" + }, + "ntx2": { + "unitID": "ntx2", + "sort": "z3", + "comment(s)": "death tower upgraded", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.34, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\4x4SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "ntx2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "deathtowerupgrade", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ntx2", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 120, + "lumbercost": 60, + "goldRep": 120, + "lumberRep": 60, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 5, + "defUp": 1, + "realdef": 5, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 45, + "reptm": 45, + "sight": 1900, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "ntx2", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 1, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 19, + "dmgUp1": "-", + "mindmg1": 21, + "avgdmg1": 25, + "maxdmg1": 29, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 25, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntx2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Animprops": "upgrade,fifth", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAdvancedDeathTower.blp", + "buildingShadow": "ShadowCannonTower", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "HSMA", + "skinnableID": "ntx2", + "file": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:sd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower", + "portrait:hd": "buildings\\other\\TowerDefenseTower\\TowerDefenseTower_portrait", + "unitSound": "ElvenGuardTower", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Stone", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "255", + "addon": "Buildings" + }, + "nvr0": { + "unitID": "nvr0", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nvr0", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ruinedelvenfishingvillage0", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nvr0", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nvr0", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvr0", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillageTwoStoryRuined.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nvr0", + "file": "buildings\\other\\ElvenFishVillageBuildingRuined0\\ElvenFishVillageBuildingRuined0", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuildingRuined0\\ElvenFishVillageBuildingRuined0", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuildingRuined0\\ElvenFishVillageBuildingRuined0_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nvr1": { + "unitID": "nvr1", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nvr1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ruinedelvenfishingvillage1", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nvr1", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nvr1", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvr1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillageRuined.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nvr1", + "file": "buildings\\other\\ElvenFishVillageBuildingRuined1\\ElvenFishVillageBuildingRuined1", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuildingRuined1\\ElvenFishVillageBuildingRuined1", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuildingRuined1\\ElvenFishVillageBuildingRuined1_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nvr2": { + "unitID": "nvr2", + "sort": "z3", + "comment(s)": "elven fishing village", + "race": "nightelf", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.33, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nvr2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "ruinedelvenfishingvillage2", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nvr2", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 1200, + "realHP": 1200, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nvr2", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nvr2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Attachmentanimprops": "medium", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillageCrestedRuined.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNightElfFishingVillage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nvr2", + "file": "buildings\\other\\ElvenFishVillageBuildingRuined2\\ElvenFishVillageBuildingRuined2", + "portrait:sd": "buildings\\other\\ElvenFishVillageBuildingRuined2\\ElvenFishVillageBuildingRuined2", + "portrait:hd": "buildings\\other\\ElvenFishVillageBuildingRuined2\\ElvenFishVillageBuildingRuined2_portrait", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nwc1": { + "unitID": "nwc1", + "sort": "z3", + "comment(s)": "wyvern cage 1", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nwc1", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wyverncage1", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwc1", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nwc1", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwc1", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "nwc1", + "file": "buildings\\other\\WyvernCage\\WyvernCage", + "portrait:sd": "buildings\\other\\WyvernCage\\WyvernCage", + "portrait:hd": "buildings\\other\\WyvernCage\\WyvernCage_portrait", + "unitSound": "WindRyderCage", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nwc2": { + "unitID": "nwc2", + "sort": "z3", + "comment(s)": "wyvern cage 2", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "nwc2", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wyverncage2", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwc2", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nwc2", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwc2", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCage1.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCage.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "skinnableID": "nwc2", + "file": "buildings\\other\\WyvernCage2\\WyvernCage2", + "portrait:sd": "buildings\\other\\WyvernCage2\\WyvernCage2", + "portrait:hd": "buildings\\other\\WyvernCage2\\WyvernCage2_portrait", + "unitSound": "WindRyderCage", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nwc3": { + "unitID": "nwc3", + "sort": "z3", + "comment(s)": "wyvern cage 3", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nwc3", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wyverncage3", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwc3", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nwc3", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwc3", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCage2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCage.blp", + "buildingShadow": "BuildingShadowSmall", + "skinType": "unit", + "skinnableID": "nwc3", + "file:hd": "buildings\\other\\WyvernCage3\\WyvernCage3", + "file:sd": "buildings\\other\\WyvernCage\\WyvernCage", + "portrait:sd": "buildings\\other\\WyvernCage\\WyvernCage", + "portrait:hd": "buildings\\other\\WyvernCage3\\WyvernCage3_portrait", + "unitSound": "WindRyderCage", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nwc4": { + "unitID": "nwc4", + "sort": "z3", + "comment(s)": "wyvern cage 4", + "race": "orc", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8Round.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nwc4", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wyverncage4", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwc4", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 500, + "realHP": 500, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 900, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nwc4", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwc4", + "sortAbil": "z3", + "auto": "_", + "abilList": "_", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCage3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNCage.blp", + "buildingShadow": "BuildingShadowSmall", + "skinType": "unit", + "skinnableID": "nwc4", + "file:hd": "buildings\\other\\WyvernCage4\\WyvernCage4", + "file:sd": "buildings\\other\\WyvernCage2\\WyvernCage2", + "portrait:sd": "buildings\\other\\WyvernCage2\\WyvernCage2", + "portrait:hd": "buildings\\other\\WyvernCage4\\WyvernCage4_portrait", + "unitSound": "WindRyderCage", + "blend": "0.15", + "scale": "3.3", + "legacyScale": "3.3", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nzin": { + "unitID": "nzin", + "sort": "z3", + "comment(s)": "zone indicator", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\2x2UnBuildable.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nzin", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "zoneindicator", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 1, + "useClickHelper": "1", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nzin", + "sortBalance": "z3", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 50, + "lumbercost": 0, + "goldRep": 50, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 150000, + "realHP": 150000, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nzin", + "sortWeap": "z3", + "weapsOn": 0, + "acquire": "-", + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nzin", + "sortAbil": "z3", + "auto": "_", + "abilList": "Avul", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPortal.blp", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Avul", + "skinnableID": "nzin", + "file": "Doodads\\Terrain\\LOSBlocker\\IntentionallyLeftBlank", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Ethereal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "ocbw": { + "unitID": "ocbw", + "sort": "z3", + "comment(s)": "Chaos OrcBurrow", + "race": "orc", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 0.64, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "buffer", + "buffRadius": 9, + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "ocbw", + "sortUI": "z3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaosorcburrow", + "unitClass": "OBuilding16", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ocbw", + "sortBalance": "z3", + "sort2": "zz", + "level": 1, + "type": "Mechanical", + "goldcost": 160, + "lumbercost": 70, + "goldRep": 160, + "lumberRep": 70, + "fmade": 10, + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 600, + "realHP": 600, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 0, + "realdef": 2, + "defType": "large", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 800, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rosp,Rorb,Rgfo", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "unbuildable", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 72, + "stockInitial": "-", + "unitWeaponID": "ocbw", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 700, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 700, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "missile", + "cool1": 4, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 33, + "dmgUp1": "-", + "mindmg1": 34, + "avgdmg1": 37.5, + "maxdmg1": 41, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 9.375, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ocbw", + "sortAbil": "z3", + "auto": "_", + "abilList": "Abds,Aspi,Abun,Sbtl,Astd,Arbr,Aorb", + "Buttonpos": "0,1", + "Missileart": "abilities\\weapons\\huntermissile\\huntermissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFelTrollBurrow.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTrollBurrow.blp", + "buildingShadow": "ShadowTrollBurrow", + "elevPts": "4", + "skinType": "unit", + "abilSkinList": "Abds,Aspi,Abun,Sbtl,Astd,Arbr,Aorb", + "abilSkinList:melee,V0": "Abds,Aspi,Abun,Sbtl,Astd", + "abilSkinList:custom,V0": "Abds,Aspi,Abun,Sbtl,Astd", + "abilSkinList:custom,V1": "Abds,Aspi,Abun,Sbtl,Astd,Arbr", + "uberSplat": "OSMA", + "skinnableID": "ocbw", + "file:hd": "Buildings\\Orc\\FelOrcBurrow\\FelOrcBurrow", + "file:sd": "buildings\\orc\\TrollBurrow\\TrollBurrow", + "portrait:sd": "buildings\\orc\\TrollBurrow\\TrollBurrow", + "portrait:hd": "Buildings\\Orc\\FelOrcBurrow\\FelOrcBurrow_portrait", + "unitSound": "TrollBurrow", + "blend": "0.15", + "scale": "2.75", + "legacyScale": "2.75", + "scaleBull": "1", + "maxPitch": "15", + "maxRoll": "15", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Buildings" + }, + "zcso": { + "unitID": "zcso", + "sort": "z9", + "comment(s)": "chaos space orc", + "race": "other", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.7, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "zcso", + "sortUI": "z9", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "chaosspaceorc", + "unitClass": "ZspecialChaosSpaceOrc", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "zcso", + "sortBalance": "z9", + "sort2": "zzz", + "level": 6, + "type": "_", + "goldcost": 215, + "lumbercost": 10, + "goldRep": 215, + "lumberRep": 10, + "fmade": " - ", + "fused": 3, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 60, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 540, + "realHP": 540, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "zcso", + "sortWeap": "z9", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 300, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 0.9, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 80, + "dmgUp1": "-", + "mindmg1": 82, + "avgdmg1": 86, + "maxdmg1": 90, + "dmgpt1": 0.17, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 19, + "DPS": 95.5555555555556, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "zcso", + "sortAbil": "z9", + "auto": "_", + "abilList": "Arng", + "Missileart": "Abilities\\Weapons\\Rifle\\RifleImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "1900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMarine.blp", + "skinType": "unit", + "abilSkinList": "Arng", + "skinnableID": "zcso", + "file": "Units\\Critters\\ChaosSpaceOrc\\ChaosSpaceOrc", + "portrait:sd": "Units\\Critters\\ChaosSpaceOrc\\ChaosSpaceOrc", + "portrait:hd": "Units\\Critters\\ChaosSpaceOrc\\ChaosSpaceOrc_portrait", + "unitSound": "Marine", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "zhyd": { + "unitID": "zhyd", + "sort": "z9", + "comment(s)": "hydralisk", + "race": "other", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.7, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "zhyd", + "sortUI": "z9", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "hydralisk", + "unitClass": "ZspecialHydralisk", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "zhyd", + "sortBalance": "z9", + "sort2": "zzz", + "level": 7, + "type": "_", + "goldcost": 280, + "lumbercost": 30, + "goldRep": 280, + "lumberRep": 30, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "zhyd", + "sortWeap": "z9", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "instant", + "cool1": 1, + "mincool1": "-", + "dice1": 4, + "sides1": 10, + "dmgplus1": 80, + "dmgUp1": "-", + "mindmg1": 84, + "avgdmg1": 102, + "maxdmg1": 120, + "dmgpt1": 0.3, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 24, + "DPS": 102, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "zhyd", + "sortAbil": "z9", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Missileart": "Abilities\\Weapons\\HydraliskImpact\\HydraliskImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "1900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHydralisk.blp", + "skinType": "unit", + "skinnableID": "zhyd", + "file": "Units\\Critters\\Hydralisk\\Hydralisk", + "portrait:sd": "Units\\Critters\\Hydralisk\\Hydralisk", + "portrait:hd": "Units\\Critters\\Hydralisk\\Hydralisk_portrait", + "unitSound": "Hydralisk", + "blend": "0.15", + "scale:hd": "1.5", + "scale:sd": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "zjug": { + "unitID": "zjug", + "sort": "z9", + "comment(s)": "orc juggernaut", + "race": "other", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 1.7, + "canSleep": 0, + "cargoSize": 1, + "movetp": "fly", + "moveHeight": 1, + "moveFloor": 0, + "turnRate": 0.1, + "propWin": 15, + "orientInterp": 3, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "zjug", + "sortUI": "z9", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "orcjuggernaut", + "unitClass": "ZspecialOrcJuggernaut", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "zjug", + "sortBalance": "z9", + "sort2": "zzz", + "level": 6, + "type": "Mechanical", + "goldcost": 205, + "lumbercost": 30, + "goldRep": 205, + "lumberRep": 30, + "fmade": " - ", + "fused": 4, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 520, + "realHP": 520, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "small", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 1, + "repulseParam": 2, + "repulseGroup": 1, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "zjug", + "sortWeap": "z9", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "msplash", + "cool1": 1.6, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 80, + "dmgUp1": "-", + "mindmg1": 82, + "avgdmg1": 85, + "maxdmg1": 88, + "dmgpt1": 0.17, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 16, + "DPS": 53.125, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "zjug", + "sortAbil": "z9", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNJuggernaut.blp", + "skinType": "unit", + "skinnableID": "zjug", + "file": "Units\\Critters\\OrcJuggernaught\\OrcJuggernaught", + "portrait:sd": "Units\\Critters\\OrcJuggernaught\\OrcJuggernaught", + "portrait:hd": "Units\\Critters\\OrcJuggernaught\\OrcJuggernaught_portrait", + "unitSound": "Boat", + "blend": "0.15", + "scale:hd": "3.5", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "0", + "maxRoll": "0", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Wood", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "zmar": { + "unitID": "zmar", + "sort": "z9", + "comment(s)": "Marine", + "race": "other", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.7, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "zmar", + "sortUI": "z9", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "marine", + "unitClass": "ZspecialMarine", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "zmar", + "sortBalance": "z9", + "sort2": "zzz", + "level": 6, + "type": "_", + "goldcost": 215, + "lumbercost": 0, + "goldRep": 215, + "lumberRep": 0, + "fmade": " - ", + "fused": 2, + "bountydice": 6, + "bountysides": 3, + "bountyplus": 60, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 520, + "realHP": 520, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhla,Rhra,Rhri", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "zmar", + "sortWeap": "z9", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "instant", + "cool1": 0.9, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 80, + "dmgUp1": "-", + "mindmg1": 82, + "avgdmg1": 85, + "maxdmg1": 88, + "dmgpt1": 0.17, + "backSw1": 0.7, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 16, + "DPS": 94.4444444444444, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "zmar", + "sortAbil": "z9", + "auto": "_", + "abilList": "_", + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\Rifle\\RifleImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "1900", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMarine.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRifleman.blp", + "skinType": "unit", + "skinnableID": "zmar", + "file": "Units\\Critters\\Marine\\Marine", + "portrait:sd": "Units\\Critters\\Marine\\Marine", + "portrait:hd": "Units\\Critters\\Marine\\Marine_portrait", + "unitSound": "Marine", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "zshv": { + "unitID": "zshv", + "sort": "z9", + "comment(s)": "shoveler", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "zshv", + "sortUI": "z9", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "theshoveler", + "unitClass": "ZspecialShoveler", + "special": "0", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "1", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "zshv", + "sortBalance": "z9", + "sort2": "zzz", + "level": 10, + "type": "_", + "goldcost": 680, + "lumbercost": 200, + "goldRep": 680, + "lumberRep": 200, + "fmade": " - ", + "fused": 5, + "bountydice": 9, + "bountysides": 3, + "bountyplus": 300, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "HP": 850, + "realHP": 850, + "regenHP": 2, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 0.8, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 20, + "reptm": 20, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "zshv", + "sortWeap": "z9", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 5, + "sides1": 15, + "dmgplus1": 200, + "dmgUp1": "-", + "mindmg1": 205, + "avgdmg1": 240, + "maxdmg1": 275, + "dmgpt1": 0.38, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 27, + "DPS": 177.777777777778, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "zshv", + "sortAbil": "z9", + "auto": "_", + "abilList": "ACcl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp", + "skinType": "unit", + "abilSkinList": "ACcl", + "skinnableID": "zshv", + "file": "Units\\Critters\\Shoveler\\Shoveler", + "unitSound": "Kobold", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1", + "modelScale:sd": "0.85", + "legacyModelScale": "0.85", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "165", + "unitShadow": "Shadow", + "shadowW": "100", + "shadowH": "100", + "shadowX": "45", + "shadowY": "45", + "portrait:sd": "Units\\Critters\\Shoveler\\Shoveler_portrait", + "portrait:hd": "Units\\Critters\\Shoveler\\Shoveler", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "zsmc": { + "unitID": "zsmc", + "sort": "z9", + "comment(s)": "sammy cube", + "race": "other", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 0.1, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "zsmc", + "sortUI": "z9", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sammycube", + "unitClass": "ZspecialSammyCube", + "special": "0", + "campaign": "0", + "inEditor": "0", + "hiddenInEditor": "1", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "zsmc", + "sortBalance": "z9", + "sort2": "zzz", + "level": 6, + "type": "_", + "goldcost": 425, + "lumbercost": 150, + "goldRep": 425, + "lumberRep": 150, + "fmade": " - ", + "fused": 4, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 200, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "HP": 500, + "realHP": 500, + "regenHP": 1, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "zsmc", + "sortWeap": "z9", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "missile", + "cool1": 2.13, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 80, + "dmgUp1": "-", + "mindmg1": 82, + "avgdmg1": 85, + "maxdmg1": 88, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 16, + "DPS": 39.906103286385, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "zsmc", + "sortAbil": "z9", + "auto": "_", + "abilList": "_", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp", + "skinType": "unit", + "skinnableID": "zsmc", + "file": "Units\\Critters\\SammyCube\\SammyCube", + "unitSound": "SammyCube", + "blend": "0.15", + "scale": "1.2", + "legacyScale": "1.2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "160", + "shadowH": "160", + "shadowX": "70", + "shadowY": "70", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "zzrg": { + "unitID": "zzrg", + "sort": "z9", + "comment(s)": "zergling", + "race": "other", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.7, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 0, + "unitUIID": "zzrg", + "sortUI": "z9", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "zergling", + "unitClass": "ZspecialZergling", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "zzrg", + "sortBalance": "z9", + "sort2": "zzz", + "level": 3, + "type": "_", + "goldcost": 85, + "lumbercost": 0, + "goldRep": 85, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 20, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "HP": 250, + "realHP": 250, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 26, + "reptm": 26, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 31, + "stockInitial": 1, + "unitWeaponID": "zzrg", + "sortWeap": "z9", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 21, + "dmgUp1": "-", + "mindmg1": 22, + "avgdmg1": 23.5, + "maxdmg1": 25, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 17.4074074074074, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "zzrg", + "sortAbil": "z9", + "auto": "_", + "abilList": "_", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNZergling.blp", + "skinType": "unit", + "skinnableID": "zzrg", + "file": "Units\\Critters\\zergling\\zergling", + "portrait:sd": "Units\\Critters\\zergling\\zergling", + "portrait:hd": "Units\\Critters\\zergling\\zergling_portrait", + "unitSound": "Zergling", + "blend": "0.15", + "scale:hd": "1.25", + "scale:sd": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodMediumBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "Nmsr": { + "unitID": "Nmsr", + "sort": "z2", + "comment(s)": "Murloc Sorceror", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.8, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Nmsr", + "sortUI": "z2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murlocsorcerer", + "unitClass": "murloc", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nmsr", + "sortBalance": "z2", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 500, + "lumbercost": 100, + "goldRep": 500, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 1350, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 27000, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 238, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1800, + "nsight": 800, + "STR": 14, + "INT": 19, + "AGI": 17, + "STRplus": 1.8, + "INTplus": 3.2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nmsr", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.67, + "castbsw": 0.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.73, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.68421052631579, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nmsr", + "sortAbil": "z2", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANrf", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Specialart": "Objects\\Spawnmodels\\Demon\\DemonLargeDeathExplode\\DemonLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWateryMinionCaster.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNMurlocNightCrawler.blp", + "skinType": "unit", + "heroAbilSkinList": "ANrf", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1.3", + "skinnableID": "Nmsr", + "file:hd": "Units\\Creeps\\WateryMinionLvl3\\WateryMinionLvl3", + "file:sd": "Units\\Creeps\\MurlocNightcrawler\\MurlocNightcrawler", + "unitSound": "Murloc", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "220", + "walk:hd": "320", + "run:sd": "220", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.3", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "portrait:sd": "Units\\Creeps\\MurlocNightcrawler\\MurlocNightcrawler_portrait", + "portrait:hd": "Units\\Creeps\\WateryMinionLvl3\\WateryMinionLvl3_portrait", + "impactSwimZ": "30", + "impactZ": "120", + "launchSwimZ": "30", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "addon": "Units" + }, + "Nswt": { + "unitID": "Nswt", + "sort": "z2", + "comment(s)": "Sea Witch", + "race": "creeps", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.8, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Nswt", + "sortUI": "n1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "seawitch2", + "unitClass": "naga", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Nswt", + "sortBalance": "z2", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 500, + "lumbercost": 100, + "goldRep": 500, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 400, + "realHP": 1650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 27000, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 238, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1800, + "nsight": 800, + "STR": 14, + "INT": 19, + "AGI": 17, + "STRplus": 1.8, + "INTplus": 3.2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Nswt", + "sortWeap": "z3", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.67, + "castbsw": 0.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 1.9, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.73, + "backSw1": 0.54, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.68421052631579, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.46, + "backSw2": 0.54, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Nswt", + "sortAbil": "z2", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "ANfl,ANfa,ANms,ANto", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhost.blp", + "skinType": "unit", + "heroAbilSkinList": "ANfl,ANfa,ANms,ANto", + "abilSkinList": "AInv", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "skinnableID": "Nswt", + "file": "units\\naga\\HeroNagaSeawitch\\HeroNagaSeawitch", + "unitSound": "SeaWitch", + "blend": "0.15", + "scale": "2", + "legacyScale": "2", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "140", + "shadowH": "140", + "shadowX": "50", + "shadowY": "50", + "impactSwimZ": "30", + "impactZ": "120", + "launchSwimZ": "30", + "showUI1": "1", + "showUI2": "1", + "launchZ": "130", + "addon": "Heroes" + }, + "ntn3": { + "unitID": "ntn3", + "sort": "p3", + "comment(s)": "Tent", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ntn3", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "tent2", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "ntn3", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 75, + "realHP": 75, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "ntn3", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ntn3", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTent3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "ntn3", + "file:hd": "buildings\\other\\Tent2\\Tent2", + "file:sd": "buildings\\other\\Tent1\\Tent1", + "portrait:sd": "buildings\\other\\Tent1\\Tent1", + "portrait:hd": "buildings\\other\\Tent2\\Tent2_portrait", + "unitSound": "Tent", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nggm": { + "unitID": "nggm", + "sort": "n2", + "comment(s)": "granite golem", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nggm", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "granitegolem", + "unitClass": "golema", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nggm", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1500, + "realHP": 1500, + "regenHP": 1.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 5, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,D,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nggm", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 64.5, + "maxdmg1": 68, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 47.78, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.35, + "mincool2": "-", + "dice2": 1, + "sides2": 6, + "dmgplus2": 45, + "dmgUp2": "-", + "mindmg2": 46, + "avgdmg2": 48.5, + "maxdmg2": 51, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nggm", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACtb,ACtc", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1000", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMossGolem.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACtb,ACtc", + "skinnableID": "nggm", + "file:hd": "units\\creeps\\MossGolem\\MossGolem", + "file:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:hd": "units\\creeps\\MossGolem\\MossGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale": "3", + "legacyScale:hd": "3.05", + "legacyScale:sd": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.0", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "50", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "50", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "220", + "addon": "Units" + }, + "nggg": { + "unitID": "nggg", + "sort": "n2", + "comment(s)": "granite golem", + "race": "creeps", + "prio": 8, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nggg", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "granitegolem", + "unitClass": "golema", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nggg", + "sortBalance": "n2", + "sort2": "zz", + "level": 9, + "type": "_", + "goldcost": 545, + "lumbercost": 150, + "goldRep": 545, + "lumberRep": 150, + "fmade": " - ", + "fused": 8, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 100, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 460, + "stockStart": 440, + "HP": 1025, + "realHP": 1500, + "regenHP": 1.5, + "regenType": "always", + "manaN": 600, + "realM": 600, + "mana0": 600, + "regenMana": 1.5, + "def": 3, + "defUp": 2, + "realdef": 5, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 90, + "reptm": 90, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,D,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nggg", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 128, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "chaos", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 8, + "dmgplus1": 60, + "dmgUp1": "-", + "mindmg1": 61, + "avgdmg1": 64.5, + "maxdmg1": 68, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 33, + "DPS": 47.78, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "chaos", + "weapTp2": "missile", + "cool2": 1.35, + "mincool2": "-", + "dice2": 1, + "sides2": 6, + "dmgplus2": 45, + "dmgUp2": "-", + "mindmg2": 46, + "avgdmg2": 48.5, + "maxdmg2": 51, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nggg", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACtb,ACtc", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1000", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGuardianGolem.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACtb,ACtc", + "skinnableID": "nggg", + "file:hd": "units\\creeps\\GuardianGolem\\GuardianGolem", + "file:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:hd": "units\\creeps\\GuardianGolem\\GuardianGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale": "3", + "legacyScale": "3", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.0", + "modelScale:sd": "1.5", + "legacyModelScale": "1.5", + "red:hd": "255", + "red:sd": "150", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "220", + "addon": "Units" + }, + "nggd": { + "unitID": "nggd", + "sort": "n2", + "comment(s)": "rock golem", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nggd", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "rockgolem", + "unitClass": "golema", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nggd", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 365, + "lumbercost": 80, + "goldRep": 365, + "lumberRep": 80, + "fmade": " - ", + "fused": 5, + "bountydice": 4, + "bountysides": 3, + "bountyplus": 40, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 310, + "stockStart": 440, + "HP": 500, + "realHP": 675, + "regenHP": 0.5, + "regenType": "always", + "manaN": 400, + "realM": 400, + "mana0": 400, + "regenMana": 1, + "def": 2, + "defUp": 2, + "realdef": 4, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 60, + "reptm": 60, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W,V,Q,Y,X,D,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nggd", + "sortWeap": "n2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.47, + "castbsw": 0.56, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 28, + "dmgUp1": "-", + "mindmg1": 29, + "avgdmg1": 31, + "maxdmg1": 33, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 22, + "DPS": 22.96, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 1.35, + "mincool2": "-", + "dice2": 1, + "sides2": 5, + "dmgplus2": 28, + "dmgUp2": "-", + "mindmg2": 29, + "avgdmg2": 31, + "maxdmg2": 33, + "dmgpt2": 0.3, + "backSw2": 0.3, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nggd", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACmi,ACtb", + "Attachmentanimprops": "large", + "Missileart": "Abilities\\Weapons\\AncientProtectorMissile\\AncientProtectorMissile.mdl", + "Missilearc": "0.0", + "Missilespeed": "1000", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDefenderGolem.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "skinType": "unit", + "abilSkinList": "ACmi,ACtb", + "skinnableID": "nggd", + "file:hd": "units\\creeps\\DefenderGolem\\DefenderGolem", + "file:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:sd": "units\\creeps\\RockGolem\\RockGolem", + "portrait:hd": "units\\creeps\\DefenderGolem\\DefenderGolem_portrait", + "unitSound": "RockGolem", + "blend": "0.15", + "scale:hd": "2.05", + "scale:sd": "1.85", + "legacyScale": "1.85", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "selZ": "0", + "armor": "Stone", + "modelScale:hd": "1.0", + "modelScale:sd": "1.05", + "legacyModelScale": "1.05", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "150", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "100", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "220", + "addon": "Units" + }, + "ngow": { + "unitID": "ngow", + "sort": "n2", + "comment(s)": "gnoll king", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ngow", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollking", + "unitClass": "gnollb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngow", + "sortBalance": "n2", + "sort2": "zz", + "level": 6, + "type": "_", + "goldcost": 305, + "lumbercost": 35, + "goldRep": 305, + "lumberRep": 35, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 1000, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 600, + "realM": " - ", + "mana0": 600, + "regenMana": 1, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngow", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 1, + "sides1": 4, + "dmgplus1": 30, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.89, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngow", + "sortAbil": "n2", + "auto": "_", + "abilList": "ANbh,ACbl,ACro ", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGnollKing.blp", + "skinType": "unit", + "abilSkinList": "ANbh,ACbl,ACro", + "skinnableID": "ngow", + "file": "units\\creeps\\GnollOverseer\\GnollOverseer", + "portrait:sd": "units\\creeps\\GnollOverseer\\GnollOverseer", + "portrait:hd": "units\\creeps\\GnollOverseer\\GnollOverseer_portrait", + "unitSound": "GnollKing", + "blend": "0.15", + "scale:hd": "1.75", + "scale:sd": "2", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.15", + "modelScale:sd": "2.2", + "legacyModelScale": "1.75", + "red:hd": "255", + "red:sd": "100", + "green:hd": "255", + "green:sd": "255", + "blue:hd": "255", + "blue:sd": "255", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "RockHeavyBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwzw": { + "unitID": "nwzw", + "sort": "n2", + "comment(s)": "rogue wizard", + "race": "creeps", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 1, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nwzw", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "roguewizard", + "unitClass": "mage", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwzw", + "sortBalance": "n2", + "sort2": "zz", + "level": 3, + "type": "_", + "goldcost": 215, + "lumbercost": 20, + "goldRep": 215, + "lumberRep": 20, + "fmade": " - ", + "fused": 2, + "bountydice": 1, + "bountysides": 3, + "bountyplus": 7, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 160, + "stockStart": 440, + "HP": 340, + "realHP": 340, + "regenHP": 0.5, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 300, + "regenMana": 0.75, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 30, + "reptm": 30, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "nwzw", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "pierce", + "weapTp1": "missile", + "cool1": 1.8, + "mincool1": "-", + "dice1": 1, + "sides1": 5, + "dmgplus1": 22, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.89, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwzw", + "sortAbil": "n2", + "auto": "AUfu", + "abilList": "ACbl ", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanditMage.blp", + "skinType": "unit", + "abilSkinList": "ACbl", + "skinnableID": "nwzw", + "file:hd": "Units\\Creeps\\BloodWizard\\BloodWizard", + "file:sd": "units\\creeps\\BanditMage\\BanditMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "260", + "walk:hd": "270", + "run:sd": "260", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "0.9", + "legacyModelScale": "0.9", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "75", + "blue:hd": "255", + "blue:sd": "75", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\creeps\\BanditMage\\BanditMage_portrait", + "portrait:hd": "Units\\Creeps\\BloodWizard\\BloodWizard_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "addon": "Units" + }, + "ngos": { + "unitID": "ngos", + "sort": "n2", + "comment(s)": "gnoll king", + "race": "creeps", + "prio": 2, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 1, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ngos", + "sortUI": "n2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "gnollking", + "unitClass": "gnollb", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 1, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngos", + "sortBalance": "n2", + "sort2": "zz", + "level": 11, + "type": "_", + "goldcost": 305, + "lumbercost": 35, + "goldRep": 305, + "lumberRep": 35, + "fmade": " - ", + "fused": 4, + "bountydice": 3, + "bountysides": 3, + "bountyplus": 17, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 1, + "stockRegen": 260, + "stockStart": 440, + "HP": 1500, + "realHP": 750, + "regenHP": 0.5, + "regenType": "always", + "manaN": 350, + "realM": " - ", + "mana0": 350, + "regenMana": 0.5, + "def": 3, + "defUp": 2, + "realdef": 3, + "defType": "large", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 50, + "reptm": 50, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "L,F,W", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "ngos", + "sortWeap": "n2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 1.35, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 38, + "dmgUp1": "-", + "mindmg1": 24, + "avgdmg1": 25.5, + "maxdmg1": 27, + "dmgpt1": 0.3, + "backSw1": 0.3, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "high", + "dmod1": 18, + "DPS": 18.89, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngos", + "sortAbil": "n2", + "auto": "_", + "abilList": "ACbl,Ansk,Awrs,ACac ", + "Buttonpos": "3,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSnarlmaneTheBloodgorger.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGnollKing.blp", + "skinType": "unit", + "abilSkinList": "ACbl,Ansk,Awrs,ACac", + "skinnableID": "ngos", + "file:hd": "units\\creeps\\GnollSnarlmane\\GnollSnarlmane", + "file:sd": "units\\creeps\\GnollOverseer\\GnollOverseer", + "portrait:sd": "units\\creeps\\GnollOverseer\\GnollOverseer", + "portrait:hd": "units\\creeps\\GnollSnarlmane\\GnollSnarlmane_portrait", + "unitSound": "GnollKing", + "blend": "0.15", + "scale:hd": "2.2", + "scale:sd": "1.25", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.2", + "modelScale:sd": "2.5", + "legacyModelScale": "1.75", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "100", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "230", + "shadowH": "230", + "shadowX": "95", + "shadowY": "95", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalHeavyChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ngog": { + "unitID": "ngog", + "sort": "o2", + "comment(s)": "dog", + "race": "critters", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ngog", + "sortUI": "o2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "dog", + "unitClass": "animal", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ngog", + "sortBalance": "o2", + "sort2": "zz", + "level": "-", + "type": "_", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 15, + "realHP": 15, + "regenHP": 0.5, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 190, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 1, + "reptm": 1, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Y,X,V,Q,J", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": "-", + "unitWeaponID": "ngog", + "sortWeap": "o2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ngog", + "sortAbil": "o2", + "auto": "_", + "abilList": "Awan", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcSmallDeathExplode\\OrcSmallDeathExplode.mdl", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNGuardDog.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNWolf.blp", + "skinType": "unit", + "abilSkinList": "Awan", + "skinnableID": "ngog", + "file:hd": "units\\critters\\GuardDog\\GuardDog", + "file:sd": "units\\critters\\BrownWolf\\BrownWolf.mdl", + "unitSound": "Wolf", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "360", + "walk:hd": "190", + "run:sd": "360", + "run:hd": "190", + "selZ": "0", + "armor": "Flesh", + "modelScale:hd": "1.4", + "modelScale:sd": "1", + "legacyModelScale": "1", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "100", + "unitShadow": "Shadow", + "shadowW": "70", + "shadowH": "70", + "shadowX": "35", + "shadowY": "35", + "portrait:sd": "units\\critters\\BrownWolf\\BrownWolf.mdl", + "portrait:hd": "units\\critters\\GuardDog\\GuardDog_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nwar": { + "unitID": "nwar", + "sort": "a2", + "comment(s)": "Siege Engine", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nwar", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "siegeengine", + "unitClass": "HUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nwar", + "sortBalance": "a2", + "sort2": "art", + "level": 3, + "type": "Mechanical", + "goldcost": 195, + "lumbercost": 60, + "goldRep": 195, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 2, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": 220, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhar,Rhra,Rhrt,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 48, + "stockInitial": 1, + "unitWeaponID": "nwar", + "sortWeap": "a2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "structure,debris", + "rangeN1": 192, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "instant", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 23.81, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 14, + "dmgUp2": 11, + "mindmg2": 15, + "avgdmg2": 15.5, + "maxdmg2": 16, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nwar", + "sortAbil": "a2", + "auto": "_", + "abilList": "Srtt,Aroc", + "Requires": "hcas", + "Attachmentanimprops": "large", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanSteamTankMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\SteamTank\\SteamTankImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "2500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeigeEngine.blp", + "elevPts": "3", + "skinType": "unit", + "abilSkinList": "Srtt,Aroc", + "skinnableID": "nwar", + "file:hd": "Units\\Creeps\\WarCart\\WarCart", + "file:sd": "units\\human\\WarWagon\\WarWagon", + "unitSound": "SteamTank", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "45", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "220", + "run:sd": "200", + "run:hd": "220", + "selZ": "0", + "armor": "Metal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "120", + "shadowY": "120", + "portrait:sd": "units\\human\\WarWagon\\WarWagon_portrait", + "portrait:hd": "Units\\Creeps\\WarCart\\WarCart_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nccd": { + "unitID": "nccd", + "sort": "a2", + "comment(s)": "Siege Engine", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 0, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nccd", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "siegeengine", + "unitClass": "HUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nccd", + "sortBalance": "a2", + "sort2": "art", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": 0, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 600, + "realHP": 700, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": " ", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 33, + "stockInitial": 1, + "unitWeaponID": "nccd", + "sortWeap": "a2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "structure,debris", + "rangeN1": 192, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "instant", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 23.81, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 14, + "dmgUp2": 11, + "mindmg2": 15, + "avgdmg2": 15.5, + "maxdmg2": 16, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nccd", + "sortAbil": "a2", + "auto": " ", + "abilList": "A01X,A01V ", + "Attachmentanimprops": "large", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanSteamTankMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\SteamTank\\SteamTankImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "2500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDiabloCar.blp", + "elevPts": "3", + "skinType": "unit", + "abilSkinList": "A01X,A01V", + "skinnableID": "nccd", + "file": "Units\\Other\\DiabloCar\\DiabloCar", + "unitSound": "SteamTank", + "blend": "0.15", + "scale": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "180", + "maxRoll": "180", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Metal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "120", + "shadowY": "120", + "portrait:sd": "Units\\Other\\DiabloCar\\DiabloCar", + "portrait:hd": "Units\\Other\\DiabloCar\\DiabloCar_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "ncco": { + "unitID": "ncco", + "sort": "a2", + "comment(s)": "Siege Engine", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "ncco", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "siegeengine", + "unitClass": "HUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "ncco", + "sortBalance": "a2", + "sort2": "art", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 60, + "goldRep": 195, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 700, + "realHP": 700, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": " ", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 33, + "stockInitial": 1, + "unitWeaponID": "ncco", + "sortWeap": "a2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "structure,debris", + "rangeN1": 192, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "instant", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 23.81, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 14, + "dmgUp2": 11, + "mindmg2": 15, + "avgdmg2": 15.5, + "maxdmg2": 16, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "ncco", + "sortAbil": "a2", + "auto": "_", + "abilList": "A01X,A01V ", + "Attachmentanimprops": "large", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanSteamTankMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\SteamTank\\SteamTankImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "2500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcCar.blp", + "elevPts": "3", + "skinType": "unit", + "abilSkinList": "A01X,A01V", + "skinnableID": "ncco", + "file": "Units\\Other\\Orccar\\Orccar", + "unitSound": "SteamTank", + "blend": "0.15", + "scale:hd": "3.5", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "180", + "maxRoll": "180", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Metal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "300", + "shadowH": "300", + "shadowX": "120", + "shadowY": "120", + "portrait:sd": "Units\\Other\\Orccar\\Orccar", + "portrait:hd": "Units\\Other\\Orccar\\Orccar_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nccu": { + "unitID": "nccu", + "sort": "a2", + "comment(s)": "Siege Engine", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nccu", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "siegeengine", + "unitClass": "HUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nccu", + "sortBalance": "a2", + "sort2": "art", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 60, + "goldRep": 195, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 500, + "realHP": 700, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": " ", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 33, + "stockInitial": 1, + "unitWeaponID": "nccu", + "sortWeap": "a2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "structure,debris", + "rangeN1": 192, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "instant", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 23.81, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 14, + "dmgUp2": 11, + "mindmg2": 15, + "avgdmg2": 15.5, + "maxdmg2": 16, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nccu", + "sortAbil": "a2", + "auto": "_", + "abilList": "A01X,A01V ", + "Attachmentanimprops": "large", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanSteamTankMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\SteamTank\\SteamTankImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "2500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadCar.blp", + "elevPts": "3", + "skinType": "unit", + "abilSkinList": "A01X,A01V", + "skinnableID": "nccu", + "file": "Units\\Other\\UndeadCar\\UndeadCar", + "unitSound": "SteamTank", + "blend": "0.15", + "scale:hd": "2.75", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "180", + "maxRoll": "180", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Metal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "portrait:sd": "Units\\Other\\UndeadCar\\UndeadCar", + "portrait:hd": "Units\\Other\\UndeadCar\\UndeadCar_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "nccr": { + "unitID": "nccr", + "sort": "a2", + "comment(s)": "Siege Engine", + "race": "human", + "prio": 3, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": 4, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.4, + "propWin": 30, + "orientInterp": 1, + "formation": 3, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nccr", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "siegeengine", + "unitClass": "HUnit11", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nccr", + "sortBalance": "a2", + "sort2": "art", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 60, + "goldRep": 195, + "lumberRep": 60, + "fmade": " - ", + "fused": 4, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 800, + "realHP": 700, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 2, + "defType": "fort", + "spd": 0, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": " ", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 33, + "stockInitial": 1, + "unitWeaponID": "nccr", + "sortWeap": "a2", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "structure,debris", + "rangeN1": 192, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "instant", + "cool1": 2.1, + "mincool1": "-", + "dice1": 1, + "sides1": 11, + "dmgplus1": 44, + "dmgUp1": "-", + "mindmg1": 45, + "avgdmg1": 50, + "maxdmg1": 55, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": "-", + "Qarea1": "-", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 23.81, + "targs2": "air", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "pierce", + "weapTp2": "missile", + "cool2": 2, + "mincool2": "-", + "dice2": 1, + "sides2": 2, + "dmgplus2": 14, + "dmgUp2": 11, + "mindmg2": 15, + "avgdmg2": 15.5, + "maxdmg2": 16, + "dmgpt2": 0.5, + "backSw2": 0.5, + "Farea2": "-", + "Harea2": " - ", + "Qarea2": " - ", + "Hfact2": " - ", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nccr", + "sortAbil": "a2", + "auto": "_", + "abilList": "A01X,A01V ", + "Attachmentanimprops": "large", + "Buttonpos": "2,0", + "MovementSoundLabel": "HumanSteamTankMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Missileart": "Abilities\\Weapons\\SteamTank\\SteamTankImpact.mdl", + "Missilearc": "0.0", + "Missilespeed": "2500", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDwarfCar.blp", + "elevPts": "3", + "skinType": "unit", + "abilSkinList": "A01X,A01V", + "skinnableID": "nccr", + "file": "Units\\Other\\DwarfCar\\DwarfCar", + "unitSound": "SteamTank", + "blend": "0.15", + "scale:hd": "3", + "scale:sd": "2.5", + "legacyScale": "2.5", + "scaleBull": "1", + "maxPitch": "180", + "maxRoll": "180", + "elevRad": "50", + "walk:sd": "200", + "walk:hd": "0", + "run:sd": "200", + "run:hd": "0", + "selZ": "0", + "armor": "Metal", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "240", + "shadowH": "240", + "shadowX": "120", + "shadowY": "120", + "portrait:sd": "Units\\Other\\DwarfCar\\DwarfCar", + "portrait:hd": "Units\\Other\\DwarfCar\\DwarfCar_portrait", + "impactSwimZ": "0", + "impactZ": "80", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "Hjnd": { + "unitID": "Hjnd", + "sort": "z1", + "comment(s)": "sylvanus windrunner", + "race": "human", + "prio": 10, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 1, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "Hjnd", + "sortUI": "z1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "sylvanuswindrunner", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hjnd", + "sortBalance": "z1", + "sort2": "vher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": "-", + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 225, + "mana0": 200, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.7, + "defType": "hero", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 15, + "AGI": 19, + "STRplus": 1.9, + "INTplus": 2.6, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hjnd", + "sortWeap": "z1", + "weapsOn": 1, + "acquire": 650, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,air,item,ward,wall", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.46, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.7, + "backSw1": 0.58, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.85, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.7, + "backSw2": 0.58, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hjnd", + "sortAbil": "z1", + "auto": "_", + "abilList": "AInv,Ault", + "heroAbilList": "AHca,AEst,AEar,AEsf", + "Missileart": "Abilities\\Weapons\\MoonPriestessMissile\\MoonPriestessMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-sylvanus.blp", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNJennallaDeemspring.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSylvanusWindrunner.blp", + "skinType": "unit", + "heroAbilSkinList": "AHca,AEst,AEar,AEsf", + "abilSkinList": "AInv,Ault", + "modelScale:hd": "1.2", + "modelScale:sd": "1.1", + "skinnableID": "Hjnd", + "file:hd": "Units\\Other\\JennallaDeemspring\\JennallaDeemspring", + "file:sd": "units\\creeps\\SylvanusWindrunner\\SylvanusWindrunner", + "unitSound": "Sylvanus", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1.1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\creeps\\SylvanusWindrunner\\SylvanusWindrunner_portrait", + "portrait:hd": "Units\\Other\\JennallaDeemspring\\JennallaDeemspring_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nmg2": { + "unitID": "nmg2", + "sort": "p3", + "comment(s)": "Mur'gul Hut 1", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 0, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\6x6SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 0, + "version": 1, + "unitUIID": "nmg2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "murgulhut1", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200", + "unitBalanceID": "nmg2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 0, + "nsight": 0, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "Z", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nmg2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nmg2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMurlocHut3.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nmg2", + "file:hd": "buildings\\other\\MurlocHut2\\MurlocHut2", + "file:sd": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:sd": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:hd": "buildings\\other\\MurlocHut2\\MurlocHut2_portrait", + "unitSound": "MurlocHut1", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "nhn2": { + "unitID": "nhn2", + "sort": "p3", + "comment(s)": "harpy nest", + "race": "other", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 3, + "canSleep": 0, + "cargoSize": "-", + "movetp": "_", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": "-", + "propWin": 60, + "orientInterp": 0, + "formation": 0, + "targType": "structure", + "pathTex": "PathTextures\\8x8SimpleSolid.tga", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "nhn2", + "sortUI": "p3", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "harpynest", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": 0, + "dropItems": "1", + "nbmmIcon": 0, + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "nhn2", + "sortBalance": "p3", + "sort2": "zz", + "level": "-", + "type": "Mechanical", + "goldcost": 0, + "lumbercost": 0, + "goldRep": 0, + "lumberRep": 0, + "fmade": " - ", + "fused": "-", + "bountydice": 0, + "bountysides": 0, + "bountyplus": 0, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": "-", + "stockRegen": "-", + "stockStart": "-", + "HP": 125, + "realHP": 125, + "regenHP": "-", + "regenType": "none", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "fort", + "spd": "-", + "minSpd": 0, + "maxSpd": 0, + "bldtm": 3, + "reptm": 3, + "sight": 500, + "nsight": 500, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "_", + "tilesets": "B", + "nbrandom": "-", + "isbldg": 1, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 50, + "stockInitial": "-", + "unitWeaponID": "nhn2", + "sortWeap": "p3", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": "-", + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "nhn2", + "sortAbil": "p3", + "auto": "_", + "abilList": "_", + "Buttonpos": "0,0", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHarpyNest2.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNGenericCreepBuilding.blp", + "buildingShadow": "BuildingShadowSmall", + "elevPts": "4", + "skinType": "unit", + "uberSplat": "OSMA", + "skinnableID": "nhn2", + "file:hd": "buildings\\other\\HarpyNest2\\HarpyNest2", + "file:sd": "buildings\\other\\HarpyNest\\HarpyNest", + "portrait:sd": "buildings\\other\\HarpyNest\\HarpyNest", + "portrait:hd": "buildings\\other\\HarpyNest2\\HarpyNest2_portrait", + "unitSound": "HarpyNest", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "walk": "200", + "run": "200", + "selZ": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Environment" + }, + "obai": { + "unitID": "obai", + "sort": "b2", + "comment(s)": "spiritwalker", + "race": "orc", + "prio": 7, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 2, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "obai", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "spiritwalker", + "unitClass": "OUnit24", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "obai", + "sortBalance": "b2", + "sort2": "cas", + "level": 3, + "type": "_", + "goldcost": 195, + "lumbercost": 35, + "goldRep": 195, + "lumberRep": 35, + "fmade": " - ", + "fused": 0, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 450, + "realHP": 500, + "regenHP": 0.25, + "regenType": "always", + "manaN": 300, + "realM": 300, + "mana0": 100, + "regenMana": 1, + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "none", + "spd": 270, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 38, + "reptm": 38, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rowt,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "obai", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.68, + "castbsw": 0.59, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 400, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "magic", + "weapTp1": "missile", + "cool1": 1.75, + "mincool1": "-", + "dice1": 1, + "sides1": 6, + "dmgplus1": 16, + "dmgUp1": "-", + "mindmg1": 17, + "avgdmg1": 19.5, + "maxdmg1": 22, + "dmgpt1": 0.5, + "backSw1": 0.6, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 26, + "DPS": 11.14, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "obai", + "sortAbil": "b2", + "auto": "_", + "abilList": "Acpf,Aspl,Adcn,Aast,Aion,ACsk", + "Attachmentanimprops": "medium", + "Buttonpos": "2,0", + "Missileart": "Abilities\\Weapons\\SorceressMissile\\SorceressMissile.mdl", + "Missilearc": "0.00", + "Missilespeed": "900", + "MissileHoming": "1", + "Casterupgradeart": "UI\\Widgets\\Console\\Human\\infocard-spiritwalker.blp", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWalker.blp", + "skinType": "unit", + "abilSkinList": "Acpf,Aspl,Adcn,Aast,Aion,ACsk", + "skinnableID": "obai", + "file": "units\\orc\\spiritwalker\\spiritwalker", + "unitSound": "SpiritWalker", + "blend": "0.15", + "scale": "1.15", + "legacyScale": "1.15", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "50", + "walk:sd": "180", + "walk:hd": "270", + "run:sd": "180", + "run:hd": "270", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "80", + "shadowY": "80", + "impactSwimZ": "0", + "impactZ": "110", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "110", + "addon": "Units" + }, + "hrrh": { + "unitID": "hrrh", + "sort": "a2", + "comment(s)": "Peasant", + "race": "human", + "prio": 1, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 3.34, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 0, + "formation": 4, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "hrrh", + "sortUI": "a2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "peasant", + "unitClass": "HUnit01", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "hrrh", + "sortBalance": "a2", + "sort2": "peo", + "level": 1, + "type": "Peon", + "goldcost": 75, + "lumbercost": 0, + "goldRep": 75, + "lumberRep": 0, + "fmade": " - ", + "fused": 1, + "bountydice": 5, + "bountysides": 3, + "bountyplus": 15, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 150, + "realHP": 220, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 0, + "defUp": 2, + "realdef": 0, + "defType": "medium", + "spd": 120, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 15, + "reptm": 15, + "sight": 800, + "nsight": 600, + "STR": " - ", + "INT": "-", + "AGI": "-", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Rhlh,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 16, + "stockInitial": 1, + "unitWeaponID": "hrrh", + "sortWeap": "a2", + "weapsOn": 3, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 90, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "normal", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 1, + "sides1": 2, + "dmgplus1": 4, + "dmgUp1": "-", + "mindmg1": 5, + "avgdmg1": 5.5, + "maxdmg1": 6, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "low", + "dmod1": 11, + "DPS": 2.75, + "targs2": "tree", + "rangeN2": 66, + "RngTst2": "-", + "RngBuff2": 120, + "atkType2": "normal", + "weapTp2": "normal", + "cool2": 1.1, + "mincool2": "-", + "dice2": 1, + "sides2": 1, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 1, + "avgdmg2": 1, + "maxdmg2": 1, + "dmgpt2": 0.433, + "backSw2": 0.433, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "hrrh", + "sortAbil": "a2", + "auto": "_", + "abilList": "Ahar,Amil,Ahrp,Ahlh", + "Builds": "htow,hhou,hbar,hbla,hwtw,halt,harm,hars,hlum,hgra,hvlt", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHighElfRunner.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNElfVillager.blp", + "skinType": "unit", + "abilSkinList": "Ahar,Amil,Ahrp,Ahlh", + "skinnableID": "hrrh", + "file:hd": "units\\other\\HighElfRunner\\HighElfRunner", + "file:sd": "units\\critters\\HighElfPeasant\\HighElfPeasant", + "unitSound": "DruidOfTheTalon", + "blend": "0.15", + "scale": "1", + "legacyScale": "1", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "20", + "walk:sd": "150", + "walk:hd": "120", + "run:sd": "150", + "run:hd": "120", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "shadow", + "shadowW": "80", + "shadowH": "80", + "shadowX": "40", + "shadowY": "40", + "portrait:sd": "units\\critters\\HighElfPeasant\\HighElfPeasant_portrait", + "portrait:hd": "units\\other\\HighElfRunner\\HighElfRunner_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "WoodLightBash", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Units" + }, + "Haah": { + "unitID": "Haah", + "sort": "a1", + "comment(s)": "HeroArchMage", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 2.8, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 2, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 13, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Haah", + "sortUI": "a1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "archmage", + "unitClass": "HHero02", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Haah", + "sortBalance": "a1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 450, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 285, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 3.1, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 14, + "INT": 19, + "AGI": 17, + "STRplus": 1.8, + "INTplus": 3.2, + "AGIplus": 1, + "abilTest": 6, + "Primary": "INT", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Haah", + "sortWeap": "a1", + "weapsOn": 1, + "acquire": 600, + "minRange": "-", + "castpt": 0.3, + "castbsw": 2.4, + "targs1": "ground,structure,debris,air,item,ward", + "rangeN1": 600, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "missile", + "cool1": 2.13, + "mincool1": "-", + "dice1": 2, + "sides1": 4, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 5, + "maxdmg1": 8, + "dmgpt1": 0.55, + "backSw1": 0.85, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 2.35, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.13, + "mincool2": "-", + "dice2": 2, + "sides2": 4, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 5, + "maxdmg2": 8, + "dmgpt2": 0.55, + "backSw2": 0.85, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Haah", + "sortAbil": "a1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHbz,AHab,AHwe,AHmt", + "Buttonpos": "0,2", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "900", + "MissileHoming": "1", + "MovementSoundLabel": "HumanHeroArchMageMovement", + "LoopingSoundFadeIn": "512", + "LoopingSoundFadeOut": "512", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-archmage.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHighElfArchMage.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroArchMage.blp", + "skinType": "unit", + "heroAbilSkinList": "AHbz,AHab,AHwe,AHmt", + "abilSkinList": "AInv", + "modelScale:hd": "1.0", + "modelScale:sd": "1", + "skinnableID": "Haah", + "file:hd": "Units\\Other\\HighElfArchMage\\HighElfArchMage", + "file:sd": "units\\human\\HeroArchMage\\HeroArchMage", + "unitSound": "HeroArchMage", + "blend": "0.15", + "scale": "1.5", + "legacyScale": "1.5", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "190", + "shadowH": "190", + "shadowX": "75", + "shadowY": "75", + "portrait:sd": "units\\human\\HeroArchMage\\HeroArchMage_portrait", + "portrait:hd": "Units\\Other\\HighElfArchMage\\HighElfArchMage_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "66", + "launchZ:hd": "80", + "projectileVisOffsetX:hd": "-20", + "projectileVisOffsetY:hd": "120", + "addon": "Heroes" + }, + "Hssa": { + "unitID": "Hssa", + "sort": "a1", + "comment(s)": "HeroPaladin", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.5, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 15, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Hssa", + "sortUI": "a1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "paladin", + "unitClass": "HHero01", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hssa", + "sortBalance": "a1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": "-", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 120, + "HP": 100, + "realHP": 650, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 255, + "mana0": 100, + "regenMana": 0.01, + "def": 2, + "defUp": 0, + "realdef": 3.9, + "defType": "hero", + "spd": 290, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 22, + "INT": 17, + "AGI": 13, + "STRplus": 2.7, + "INTplus": 1.8, + "AGIplus": 1.5, + "abilTest": 6, + "Primary": "STR", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hssa", + "sortWeap": "a1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.5, + "castbsw": 1.67, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 2, + "mincool1": "-", + "dice1": 2, + "sides1": 6, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 7, + "maxdmg1": 12, + "dmgpt1": 0.433, + "backSw1": 0.567, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 3.5, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 2.2, + "mincool2": "-", + "dice2": 2, + "sides2": 6, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 7, + "maxdmg2": 12, + "dmgpt2": 0.433, + "backSw2": 0.567, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hssa", + "sortAbil": "a1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AHab,ANbf,ANrf ", + "Buttonpos": "2,2", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-paladin.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAnasterianSunstrider.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNSpellBreaker.blp", + "skinType": "unit", + "heroAbilSkinList": "AHab,ANbf,ANrf", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "skinnableID": "Hssa", + "file:hd": "units\\other\\AnasterianSunstrider\\AnasterianSunstrider", + "file:sd": "units\\human\\BloodElfSpellThief\\BloodElfSpellThief", + "unitSound": "HeroPaladin", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "250", + "walk:hd": "290", + "run:sd": "250", + "run:hd": "290", + "selZ": "0", + "armor": "Metal", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "170", + "shadowH": "170", + "shadowX": "65", + "shadowY": "65", + "portrait:sd": "units\\human\\BloodElfSpellThief\\BloodElfSpellThief_portrait", + "portrait:hd": "units\\other\\AnasterianSunstrider\\AnasterianSunstrider_portrait", + "impactSwimZ": "0", + "weapType1": "MetalMediumSlice", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "Hddt": { + "unitID": "Hddt", + "sort": "a1", + "comment(s)": "ThalorienDawnseeker", + "race": "human", + "prio": 9, + "threat": 1, + "valid": 1, + "deathType": 2, + "death": 1.9, + "canSleep": 0, + "cargoSize": 1, + "movetp": "foot", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.6, + "propWin": 60, + "orientInterp": 5, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": 14, + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "Hddt", + "sortUI": "b1", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "thaloriendawnseeker", + "unitClass": "OHero01", + "special": "0", + "campaign": "1", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "Hddt", + "sortBalance": "b1", + "sort2": "uher", + "level": 5, + "type": "_", + "goldcost": 425, + "lumbercost": 100, + "goldRep": 425, + "lumberRep": 100, + "fmade": " - ", + "fused": 5, + "bountydice": 8, + "bountysides": 3, + "bountyplus": 30, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 100, + "realHP": 550, + "regenHP": 0.25, + "regenType": "always", + "manaN": 0, + "realM": 240, + "mana0": 100, + "regenMana": 0.01, + "def": 0, + "defUp": 0, + "realdef": 4.6, + "defType": "hero", + "spd": 320, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 55, + "reptm": 55, + "sight": 1800, + "nsight": 800, + "STR": 18, + "INT": 16, + "AGI": 22, + "STRplus": 2, + "INTplus": 2.25, + "AGIplus": 1.75, + "abilTest": 6, + "Primary": "AGI", + "upgrades": "_", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "Hddt", + "sortWeap": "b1", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "hero", + "weapTp1": "normal", + "cool1": 1.77, + "mincool1": "-", + "dice1": 2, + "sides1": 12, + "dmgplus1": 0, + "dmgUp1": "-", + "mindmg1": 2, + "avgdmg1": 13, + "maxdmg1": 24, + "dmgpt1": 0.33, + "backSw1": 0.84, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 7.34, + "targs2": "ground,structure,debris,air,item,ward", + "rangeN2": 500, + "RngTst2": "-", + "RngBuff2": 250, + "atkType2": "hero", + "weapTp2": "missile", + "cool2": 1.77, + "mincool2": "-", + "dice2": 2, + "sides2": 12, + "dmgplus2": 0, + "dmgUp2": "-", + "mindmg2": 2, + "avgdmg2": 13, + "maxdmg2": 24, + "dmgpt2": 0.33, + "backSw2": 0.84, + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "Hddt", + "sortAbil": "a1", + "auto": "_", + "abilList": "AInv", + "heroAbilList": "AOcr,ANsb ", + "Buttonpos": "0,2", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "ScoreScreenIcon": "UI\\Glues\\ScoreScreen\\scorescreen-hero-thaloriendawnseeker.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNThalorienDawnseeker.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTheCaptain.blp", + "skinType": "unit", + "heroAbilSkinList": "AOcr,ANsb", + "abilSkinList": "AInv", + "modelScale:hd": "1.2", + "modelScale:sd": "1.2", + "skinnableID": "Hddt", + "file:hd": "units\\other\\ThalorienDawnseeker\\ThalorienDawnseeker", + "file:sd": "units\\human\\TheCaptain\\TheCaptain", + "unitSound": "HighElfSwordsman", + "blend": "0.15", + "scale": "1.25", + "legacyScale": "1.25", + "scaleBull": "1", + "maxPitch": "10", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "selZ": "0", + "armor": "Flesh", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "120", + "shadowH": "120", + "shadowX": "60", + "shadowY": "60", + "portrait:sd": "units\\human\\TheCaptain\\TheCaptain_portrait", + "portrait:hd": "units\\other\\ThalorienDawnseeker\\ThalorienDawnseeker_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumSlice", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "50", + "addon": "Heroes" + }, + "owad": { + "unitID": "owad", + "sort": "b2", + "comment(s)": "WolfRider", + "race": "orc", + "prio": 6, + "threat": 1, + "valid": 1, + "deathType": 3, + "death": 1.87, + "canSleep": 0, + "cargoSize": 1, + "movetp": "horse", + "moveHeight": 0, + "moveFloor": 0, + "turnRate": 0.5, + "propWin": 60, + "orientInterp": 4, + "formation": 0, + "targType": "ground", + "pathTex": "_", + "fatLOS": 0, + "points": 100, + "buffType": "_", + "buffRadius": "-", + "nameCount": "-", + "canFlee": 1, + "requireWaterRadius": 0, + "isBuildOn": 0, + "canBuildOn": 0, + "InBeta": 1, + "version": 1, + "unitUIID": "owad", + "sortUI": "b2", + "fileVerFlags": "0", + "tilesetSpecific": "0", + "name": "wolfrider", + "unitClass": "OUnit03", + "special": "0", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "hostilePal": "-", + "dropItems": "1", + "nbmmIcon": "-", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "fogRad": "0", + "teamColor": "-1", + "customTeamColor": "0", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "0", + "unitBalanceID": "owad", + "sortBalance": "b2", + "sort2": "me1", + "level": 3, + "type": "_", + "goldcost": 180, + "lumbercost": 40, + "goldRep": 180, + "lumberRep": 40, + "fmade": " - ", + "fused": 3, + "bountydice": 7, + "bountysides": 3, + "bountyplus": 25, + "lumberbountydice": 0, + "lumberbountysides": 0, + "lumberbountyplus": 0, + "stockMax": 3, + "stockRegen": 30, + "stockStart": 0, + "HP": 850, + "realHP": 610, + "regenHP": 0.25, + "regenType": "always", + "manaN": " - ", + "realM": " - ", + "mana0": " - ", + "regenMana": " - ", + "def": 3, + "defUp": 2, + "realdef": 1, + "defType": "medium", + "spd": 350, + "minSpd": 0, + "maxSpd": 0, + "bldtm": 28, + "reptm": 28, + "sight": 1400, + "nsight": 800, + "STR": " - ", + "INT": " - ", + "AGI": " - ", + "STRplus": " - ", + "INTplus": " - ", + "AGIplus": " - ", + "abilTest": "-", + "Primary": "_", + "upgrades": "Roar,Rome,Roen,Ropg,Ropm,Rguv", + "tilesets": "*", + "nbrandom": "-", + "isbldg": 0, + "preventPlace": "_", + "requirePlace": "_", + "repulse": 0, + "repulseParam": 0, + "repulseGroup": 0, + "repulsePrio": 0, + "collision": 32, + "stockInitial": 1, + "unitWeaponID": "owad", + "sortWeap": "b2", + "weapsOn": 1, + "acquire": 500, + "minRange": "-", + "castpt": 0.6, + "castbsw": 0.2, + "targs1": "ground,structure,debris,item,ward", + "rangeN1": 100, + "RngTst": "-", + "RngBuff1": 250, + "atkType1": "siege", + "weapTp1": "normal", + "cool1": 1.85, + "mincool1": "-", + "dice1": 2, + "sides1": 5, + "dmgplus1": 25, + "dmgUp1": "-", + "mindmg1": 23, + "avgdmg1": 25, + "maxdmg1": 27, + "dmgpt1": 0.5, + "backSw1": 0.5, + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "-", + "dmod1": "-", + "DPS": 13.51, + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "unitAbilID": "owad", + "sortAbil": "b2", + "auto": "_", + "abilList": "Aens,Asal,Aion", + "Buttonpos": "0,0", + "Specialart": "Objects\\Spawnmodels\\Orc\\OrcLargeDeathExplode\\OrcLargeDeathExplode.mdl", + "Attachmentanimprops": "medium", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaider.blp", + "skinType": "unit", + "abilSkinList": "Aens,Asal,Aion", + "skinnableID": "owad", + "file:hd": "Units\\Orc\\OrcWarlord\\OrcWarlord", + "file:sd": "Units\\Orc\\OrcWarlord\\OrcWarlord", + "unitSound": "ChaosWarlord", + "blend": "0.15", + "scale": "1.6", + "legacyScale": "1.6", + "scaleBull": "1", + "maxPitch": "45", + "maxRoll": "10", + "elevRad": "30", + "walk:sd": "360", + "walk:hd": "350", + "run:sd": "360", + "run:hd": "350", + "selZ": "0", + "armor": "Flesh", + "modelScale": "1.35", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "unitShadow": "Shadow", + "shadowW": "200", + "shadowH": "200", + "shadowX": "75", + "shadowY": "75", + "impactSwimZ": "0", + "impactZ": "60", + "weapType1": "MetalMediumChop", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "addon": "Heroes" + }, + "nrmf": { + "unitWeaponID": "nrmf", + "sortWeap": "n2", + "sort2": "zz", + "comment(s)": "MercenaryCamp K", + "weapsOn": 0, + "acquire": 500, + "minRange": "-", + "castpt": 0.3, + "castbsw": 0.51, + "targs1": "_", + "rangeN1": "-", + "RngTst": "-", + "RngBuff1": "-", + "atkType1": "normal", + "weapTp1": "_", + "cool1": 0, + "mincool1": "-", + "dice1": "-", + "sides1": "-", + "dmgplus1": "-", + "dmgUp1": "-", + "mindmg1": " - ", + "avgdmg1": "-", + "maxdmg1": " - ", + "dmgpt1": "-", + "backSw1": "-", + "Farea1": " - ", + "Harea1": " - ", + "Qarea1": " - ", + "Hfact1": "-", + "Qfact1": "-", + "splashTargs1": "_", + "targCount1": 1, + "damageLoss1": 0, + "spillDist1": 0, + "spillRadius1": 0, + "DmgUpg": "#VALUE!", + "dmod1": "#VALUE!", + "DPS": "#VALUE!", + "targs2": "_", + "rangeN2": "-", + "RngTst2": "-", + "RngBuff2": "-", + "atkType2": "normal", + "weapTp2": "_", + "cool2": "-", + "mincool2": "-", + "dice2": "-", + "sides2": "-", + "dmgplus2": "-", + "dmgUp2": "-", + "mindmg2": " - ", + "avgdmg2": "-", + "maxdmg2": " - ", + "dmgpt2": "-", + "backSw2": "-", + "Farea2": "-", + "Harea2": "-", + "Qarea2": "-", + "Hfact2": "-", + "Qfact2": "-", + "splashTargs2": "_", + "targCount2": 1, + "damageLoss2": 0, + "spillDist2": 0, + "spillRadius2": 0, + "InBeta": 0, + "impactSwimZ": "0", + "impactZ": "120", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60" + }, + "oang": { + "Missileart": "Abilities\\Weapons\\AncestralGuardianMissile\\AncestralGuardianMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "MissileHoming": "1" + }, + "orbr": { + "Buttonpos": "0,1", + "Missileart": "abilities\\weapons\\huntermissile\\huntermissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1200", + "Specialart": "Objects\\Spawnmodels\\Human\\HCancelDeath\\HCancelDeath.mdl" + }, + "Aimp": { + "Requires": "Repb", + "Buttonpos": "0,2" + }, + "HERO": { + "DependencyOr": "Hamg,Hblm,Hmkg,Hpal,Obla,Ofar,Oshd,Otch,Edem,Ekee,Emoo,Ewar,Ucrl,Udea,Udre,Ulic,Npbm,Nbrn,Nngs,Nplh,Nbst,Nalc,Ntin,Nfir" + }, + "nws2": { + "Buttonpos": "1,0", + "Missileart": "Abilities\\Weapons\\DragonHawkMissile\\DragonHawkMissile.mdl", + "Missilearc": "0.15", + "Missilespeed": "1100", + "MissileHoming": "1", + "Attachmentanimprops": "medium" + }, + "nnom": {}, + "Edmf": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFemaleMetamorphosis.blp", + "skinType": "unit", + "heroAbilSkinList": "AEmb,AEim,AEev,AEmf", + "skinnableID": "Edmm", + "file:hd": "Units\\NightElf\\HeroFemaleDemonHunter\\HeroFemaleDemonHunter", + "file:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter", + "modelScale:hd": "1.25", + "unitSound:hd": "HeroFemaleDemonHunterMorphed", + "unitSound:sd": "HeroDemonHunterMorphed", + "portrait:sd": "units\\nightelf\\HeroDemonHunter\\HeroDemonHunter_portrait", + "portrait:hd": "Units\\NightElf\\HeroFemaleDemonHunter\\HeroFemaleDemonHunter_portrait" + }, + "espm": { + "skinnableID": "espv", + "file:hd": "Units/NightElf/MaievAvatar/MaievAvatar" + }, + "Nvol": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNVolcanus.blp", + "skinType": "unit", + "skinnableID": "Nfir", + "file:hd": "Units\\Creeps\\Volcanus\\Volcanus" + }, + "nmh2": { + "skinType": "unit", + "skinnableID": "nmh2", + "sortUI": "p3", + "file": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:sd": "buildings\\other\\MurlocHut1\\MurlocHut1", + "portrait:hd": "buildings\\other\\MurlocHut1\\MurlocHut1_portrait", + "fileVerFlags": "0", + "unitSound": "MurlocHut1", + "tilesetSpecific": "0", + "unitClass": "NeutralZZZ", + "special": "1", + "campaign": "0", + "inEditor": "1", + "hiddenInEditor": "0", + "dropItems": "1", + "useClickHelper": "0", + "hideHeroBar": "0", + "hideHeroMinimap": "0", + "hideHeroDeathMsg": "0", + "hideOnMinimap": "0", + "blend": "0.15", + "scale": "3.5", + "legacyScale": "3.5", + "scaleBull": "1", + "maxPitch": "7", + "maxRoll": "7", + "elevRad": "50", + "fogRad": "0", + "walk": "200", + "run": "200", + "selZ": "0", + "teamColor": "-1", + "customTeamColor": "0", + "armor": "Wood", + "modelScale": "1", + "legacyModelScale": "1", + "red": "255", + "green": "255", + "blue": "255", + "shadowOnWater": "1", + "selCircOnWater": "0", + "occH": "200" + }, + "Hjas": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNJainaSea.blp", + "skinType": "unit", + "skinnableID": "Hamg", + "file:hd": "units\\human\\JainaSea\\JainaSea", + "unitSound:hd": "DaughterOfTheSeaJaina", + "ScoreScreenIcon:hd": "WebUI\\ScoreScreen\\HeroIcons\\scorescreen-hero-jainasea.png", + "addon": "Heroes" + }, + "Ofth": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNThrallChampion.blp", + "skinType": "unit", + "skinnableID": "Ofar", + "file:hd": "units\\orc\\ThrallChampion\\ThrallChampion", + "unitSound:hd": "FarseerThrall", + "ScoreScreenIcon:hd": "WebUI\\ScoreScreen\\HeroIcons\\scorescreen-hero-thrallchampion.png", + "portrait:hd": "units\\orc\\ThrallChampion\\ThrallChampion_portrait", + "impactSwimZ": "0", + "impactZ": "60", + "launchSwimZ": "0", + "showUI1": "1", + "showUI2": "1", + "launchZ": "60", + "launchZ:hd": "140", + "projectileVisOffsetY:hd": "10", + "addon": "Heroes" + }, + "Uart": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNFallenKingArthas.blp", + "skinType": "unit", + "skinnableID": "Udea", + "file:hd": "units\\undead\\FallenKingArthas\\FallenKingArthas", + "unitSound:hd": "FallenKingArthas", + "ScoreScreenIcon:hd": "WebUI\\ScoreScreen\\HeroIcons\\scorescreen-hero-fallenkingarthas.png", + "portrait:hd": "units\\undead\\FallenKingArthas\\FallenKingArthas_portrait", + "addon": "Heroes" + }, + "Ekce": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCenariusNightmare.blp", + "skinType": "unit", + "skinnableID": "Ekee", + "file:hd": "units\\nightelf\\CenariusNightmare\\CenariusNightmare", + "ScoreScreenIcon:hd": "WebUI\\ScoreScreen\\HeroIcons\\scorescreen-hero-cenariusnightmare.png", + "unitSound:hd": "NCenar", + "portrait:hd": "Units\\NightElf\\CenariusNightmare\\CenariusNightmare_portrait", + "addon": "Heroes" + }, + "Udef": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHeroFemaleDeathKnight.blp", + "skinType": "unit", + "skinnableID": "Udea", + "file:hd": "Units\\Undead\\HeroFemaleDeathKnight\\HeroFemaleDeathKnight", + "file:sd": "Units\\Undead\\HeroFemaleDeathknight\\HeroFemaleDeathknight", + "unitSound": "HeroFemaleDeathKnight", + "portrait:sd": "Units\\Undead\\HeroFemaleDeathknight\\HeroFemaleDeathknight_portrait", + "portrait:hd": "Units\\Undead\\HeroFemaleDeathKnight\\HeroFemaleDeathKnight_portrait", + "addon": "Heroes" + }, + "Edef": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHeroFemaleDemonHunter.blp", + "skinType": "unit", + "skinnableID": "Edem", + "heroAbilSkinList": "AEmb,AEim,AEev,AEmf", + "file:hd": "Units\\NightElf\\HeroFemaleDemonHunter\\HeroFemaleDemonHunter", + "file:sd": "Units\\NightElf\\HeroFemaleDemonHunter\\HeroFemaleDemonHunter", + "modelScale:hd": "1.25", + "unitSound": "HeroFemaleDemonHunter", + "portrait:sd": "Units\\NightElf\\HeroFemaleDemonHunter\\HeroFemaleDemonHunter_portrait", + "portrait:hd": "Units\\NightElf\\HeroFemaleDemonHunter\\HeroFemaleDemonHunter_portrait", + "addon": "Heroes" + }, + "Ewam": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNWarden2.blp", + "skinType": "unit", + "skinnableID": "Ewar", + "file": "units\\nightelf\\Maiev\\Maiev", + "unitSound": "Maiev", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "portrait:hd": "units\\nightelf\\Maiev\\Maiev_portrait", + "portrait:sd": "units\\nightelf\\Maiev\\Maiev_portrait", + "addon": "Heroes" + }, + "Edei": { + "Art": "ReplaceableTextures\\CommandButtons\\BTNEvilIllidan.blp", + "skinType": "unit", + "skinnableID": "Edem", + "unitSound": "EvilIllidan", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "walk:sd": "300", + "walk:hd": "320", + "run:sd": "300", + "run:hd": "320", + "file": "units\\nightelf\\EvilIllidan\\IllidanEvil", + "portrait": "Units\\NightElf\\EvilIllidan\\IllidanEvil_portrait", + "addon": "Heroes" + }, + "Emot": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNTyrande.blp", + "skinType": "unit", + "skinnableID": "Emoo", + "file:hd": "Units\\NightElf\\Tyrande\\Tyrande", + "unitSound": "Tyrande", + "walk:hd": "320", + "run:hd": "320", + "portrait:hd": "Units\\NightElf\\Tyrande\\Tyrande_portrait", + "addon": "Heroes" + }, + "Ekec": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCenarius.blp", + "skinType": "unit", + "skinnableID": "Ekee", + "modelScale:hd": "0.95", + "file:hd": "Units\\NightElf\\Cenarius\\Cenarius", + "unitSound": "HeroKeeperoftheGrove", + "walk:hd": "400", + "run:hd": "400", + "red:hd": "255", + "green:hd": "255", + "blue:hd": "255", + "portrait:hd": "Units\\NightElf\\Cenarius\\Cenarius_portrait", + "addon": "Heroes" + }, + "Ekem": { + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurion.blp", + "skinType": "unit", + "skinnableID": "Ekee", + "modelScale:hd": "0.95", + "file": "units\\nightelf\\MalFurion\\MalFurion", + "unitSound": "MalFurion", + "walk:hd": "270", + "run:hd": "270", + "portrait": "units\\nightelf\\MalFurion\\MalFurion_portrait", + "addon": "Heroes" + }, + "Ulik": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNKelThuzadCin.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNLichVersion2.blp", + "skinType": "unit", + "skinnableID": "Ulic", + "fileVerFlags:hd": "0", + "file": "units\\undead\\HeroLichCIN\\HeroLichCIN", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "red": "255", + "green": "255", + "blue": "255", + "portrait:sd": "units\\undead\\HeroLichCIN\\HeroLichCIN_portrait", + "portrait:hd": "units\\undead\\HeroLichCIN\\HeroLichCIN_portrait", + "addon": "Heroes" + }, + "Udrb": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNBalnazzar.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNTichondrius.blp", + "modelScale:hd": "1.1", + "modelScale:sd": "1.6", + "file:hd": "Units\\Undead\\Balnazzar\\Balnazzar", + "file:sd": "units\\undead\\Tichondrius\\Tichondrius", + "skinType": "unit", + "skinnableID": "Udre", + "walk:hd": "240", + "run:hd": "240", + "red:hd": "255", + "red:sd": "255", + "green:hd": "255", + "green:sd": "200", + "blue:hd": "255", + "blue:sd": "200", + "portrait:hd": "Units\\Undead\\Balnazzar\\Balnazzar_portrait", + "portrait:sd": "units\\undead\\Tichondrius\\Tichondrius_portrait", + "addon": "Heroes" + }, + "Udda": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDalvengyr.blp", + "modelScale:hd": "1.15", + "file:hd": "Units\\Undead\\Dalvengyr\\Dalvengyr", + "skinType": "unit", + "skinnableID": "Udre", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "Units\\Undead\\Dalvengyr\\Dalvengyr_portrait", + "addon": "Heroes" + }, + "Udde": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDetheroc.blp", + "modelScale:hd": "1.1", + "file:hd": "Units\\Undead\\Detheroc\\Detheroc", + "skinType": "unit", + "skinnableID": "Udre", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "Units\\Undead\\Detheroc\\Detheroc_portrait", + "addon": "Heroes" + }, + "Udrm": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMalGanis.blp", + "file:hd": "Units\\Undead\\MalGanis\\MalGanis", + "skinType": "unit", + "skinnableID": "Udre", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "units\\undead\\MalGanis\\MalGanis_Portrait", + "addon": "Heroes" + }, + "Udrt": { + "Art": "ReplaceableTextures\\CommandButtons\\BTNTichondrius.blp", + "modelScale:hd": "1", + "file": "units\\undead\\Tichondrius\\Tichondrius", + "skinType": "unit", + "skinnableID": "Udre", + "unitSound": "Tichondrius", + "walk:hd": "270", + "run:hd": "270", + "portrait": "units\\undead\\Tichondrius\\Tichondrius_portrait", + "addon": "Heroes" + }, + "Udrv": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNVarimathras.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroDreadlord.blp", + "modelScale:hd": "1.1", + "modelScale:sd": "1.2", + "file:hd": "Units\\Undead\\Varimathras\\Varimathras", + "skinType": "unit", + "skinnableID": "Udre", + "unitSound": "Varimathras", + "walk:sd": "240", + "walk:hd": "270", + "run:sd": "240", + "run:hd": "270", + "shadowW": "120", + "shadowH": "120", + "portrait:hd": "Units\\Undead\\Varimathras\\Varimathras_portrait", + "portrait:sd": "units\\undead\\Tichondrius\\Tichondrius_portrait", + "addon": "Heroes" + }, + "Ucra": { + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAnubarak.blp", + "modelScale:hd": "1", + "file": "units\\undead\\Anubarak\\Anubarak", + "skinType": "unit", + "skinnableID": "Ucrl", + "walk:hd": "270", + "run:hd": "270", + "portrait": "units\\undead\\Anubarak\\Anubarak_portrait", + "addon": "Heroes" + }, + "Hpap": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNProudMoore.blp", + "modelScale:hd": "1.2", + "modelScale:sd": "1.1", + "file": "units\\other\\Proudmoore\\Proudmoore", + "unitSound": "Proudmoore", + "walk:hd": "270", + "walk:sd": "200", + "run:hd": "270", + "run:sd": "200", + "portrait:hd": "units\\other\\Proudmoore\\Proudmoore_portrait", + "portrait:sd": "units\\other\\Proudmoore\\Proudmoore_portrait", + "addon": "Heroes" + }, + "Hpaa": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArthas.blp", + "modelScale:hd": "1.3", + "modelScale:sd": "1.1", + "file": "units\\human\\Arthas\\Arthas", + "unitSound": "Arthas", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "portrait:hd": "units\\human\\Arthas\\Arthas_portrait", + "portrait:sd": "units\\human\\Arthas\\Arthas_portrait", + "addon": "Heroes" + }, + "Hpaf": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNArthasFrost.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNArthas.blp", + "modelScale:hd": "1.3", + "modelScale:sd": "1.1", + "file": "units\\human\\ArthaswithSword\\ArthaswithSword", + "unitSound": "ArthasWithFrostmourne", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "portrait:hd": "units\\human\\ArthaswithSword\\ArthaswithSword_portrait", + "addon": "Heroes" + }, + "Hpdo": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDagrenTheOrcSlayer.blp", + "modelScale:hd": "1.2", + "file:hd": "Units\\Human\\HeroDagren\\HeroDagren", + "file:sd": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "Units\\Human\\HeroDagren\\HeroDagren_portrait", + "portrait:sd": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2_portrait", + "addon": "Heroes" + }, + "Hphl": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHalahkTheLifeBringer.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNHeroPaladin.blp", + "modelScale:hd": "1.1", + "file:hd": "Units\\Human\\HeroHalahk\\HeroHalahk", + "file:sd": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "Units\\Human\\HeroHalahk\\HeroHalahk_portrait", + "portrait:sd": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss_portrait", + "addon": "Heroes" + }, + "Hpnb": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLordNicholasBuzan.blp", + "modelScale:hd": "1.2", + "file": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss", + "walk:sd": "200", + "walk:hd": "270", + "run:sd": "200", + "run:hd": "270", + "shadowW": "100", + "shadowH": "100", + "shadowX": "50", + "shadowY": "50", + "portrait:hd": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss_portrait", + "portrait:sd": "units\\human\\HeroPaladinBoss\\HeroPaladinBoss_portrait", + "addon": "Heroes" + }, + "Hpmd": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMagrothTheDefender.blp", + "modelScale:hd": "1.2", + "file:hd": "Units\\Human\\HeroMagroth\\HeroMagroth", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "Units\\Human\\HeroMagroth\\HeroMagroth_portrait", + "addon": "Heroes" + }, + "Hpge": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSirGregoryEdmunson.blp", + "file": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2_portrait", + "portrait:sd": "units\\human\\HeroPaladinBoss2\\HeroPaladinBoss2_portrait", + "addon": "Heroes" + }, + "Hpau": { + "skinType": "unit", + "skinnableID": "Hpal", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNUther.blp", + "modelScale:hd": "1.2", + "file": "units\\human\\Uther\\Uther", + "unitSound": "Uther", + "addon": "Heroes" + }, + "Haks": { + "skinType": "unit", + "skinnableID": "Hamg", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNHighElfArchMage.blp", + "modelScale:hd": "1", + "file:hd": "Units\\Other\\HighElfArchMage\\HighElfArchMage", + "portrait:hd": "Units\\Other\\HighElfArchMage\\HighElfArchMage_portrait", + "addon": "Heroes" + }, + "Haan": { + "skinType": "unit", + "skinnableID": "Hamg", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAntonidas.blp", + "modelScale:hd": "0.95", + "file:hd": "Units\\Human\\Antonidas\\Antonidas", + "walk:hd": "320", + "run:hd": "320", + "portrait:hd": "Units\\Human\\Antonidas\\Antonidas_portrait", + "addon": "Heroes" + }, + "Hmmb": { + "skinType": "unit", + "skinnableID": "Hmkg", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMuradinBronzeBeard.blp", + "modelScale:hd": "1", + "file": "units\\human\\Muradin\\Muradin", + "unitSound": "Muradin", + "portrait:hd": "units\\human\\Muradin\\Muradin_portrait", + "portrait:sd": "units\\human\\Muradin\\Muradin_portrait", + "addon": "Heroes" + }, + "Hblk": { + "skinType": "unit", + "skinnableID": "Hblm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodMage2.blp", + "file": "units\\human\\Kael\\Kael", + "unitSound": "Kael", + "walk:hd": "270", + "run:hd": "270", + "portrait:hd": "units\\human\\Kael\\Kael_portrait", + "portrait:sd": "units\\human\\Kael\\Kael_portrait", + "addon": "Heroes" + }, + "Ofad": { + "skinType": "unit", + "skinnableID": "Ofar", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDrekThar.blp", + "modelScale:hd": "0.95", + "file:hd": "Units\\Orc\\DrekThar\\DrekThar", + "unitSound": "DrekThar", + "portrait:hd": "Units\\Orc\\DrekThar\\DrekThar_portrait", + "addon": "Heroes" + }, + "Ofat": { + "skinType": "unit", + "skinnableID": "Ofar", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThrall.blp", + "modelScale:hd": "0.95", + "file": "units\\orc\\Thrall\\Thrall", + "unitSound": "Thrall", + "walk:sd": "260", + "walk:hd": "320", + "run:sd": "260", + "run:hd": "320", + "portrait:hd": "units\\orc\\Thrall\\Thrall_portrait", + "portrait:sd": "units\\orc\\Thrall\\Thrall_portrait", + "addon": "Heroes" + }, + "Obbc": { + "skinType": "unit", + "skinnableID": "Obla", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosBlademaster.blp", + "modelScale:hd": "1", + "modelScale:sd": "1", + "file": "units\\demon\\HeroChaosBladeMaster\\HeroChaosBladeMaster", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "portrait:hd": "units\\demon\\HeroChaosBladeMaster\\HeroChaosBladeMaster_portrait", + "portrait:sd": "units\\demon\\HeroChaosBladeMaster\\HeroChaosBladeMaster_portrait", + "addon": "Heroes" + }, + "Oblh": { + "skinType": "unit", + "skinnableID": "Obla", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHellScream.blp", + "file": "units\\orc\\Hellscream\\Hellscream", + "unitSound": "Grom", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "portrait:sd": "units\\orc\\Hellscream\\Hellscream_portrait", + "portrait:hd": "units\\orc\\Hellscream\\Hellscream_portrait", + "addon": "Heroes" + }, + "Obhp": { + "skinType": "unit", + "skinnableID": "Obla", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChaosGrom.blp", + "modelScale:hd": "1", + "modelScale:sd": "1.2", + "file": "units\\demon\\ChaosHellscream\\ChaosHellscream", + "unitSound": "Grom", + "walk:sd": "290", + "walk:hd": "320", + "run:sd": "290", + "run:hd": "320", + "portrait:sd": "units\\demon\\ChaosHellscream\\ChaosHellscream_portrait", + "portrait:hd": "units\\demon\\ChaosHellscream\\ChaosHellscream_portrait", + "addon": "Heroes" + }, + "Obls": { + "skinType": "unit", + "skinnableID": "Obla", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSamuro.blp", + "modelScale:hd": "1.1", + "file:hd": "Units\\Orc\\Samuro\\Samuro", + "walk:hd": "300", + "run:hd": "300", + "portrait:hd": "Units\\Orc\\Samuro\\Samuro_portrait", + "addon": "Heroes" + }, + "Otcb": { + "skinType": "unit", + "skinnableID": "Otch", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNCairneBloodhoof.blp", + "modelScale:hd": "1.1", + "file:hd": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN", + "unitSound": "Cairne", + "portrait:sd": "units\\orc\\HeroTaurenChieftain\\HeroTaurenChieftainCIN_portrait", + "portrait:hd": "units\\orc\\HeroTaurenChieftainCIN\\HeroTaurenChieftainCIN_portrait", + "addon": "Heroes" + }, + "Oshr": { + "skinType": "unit", + "skinnableID": "Oshd", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNRokhan.blp", + "modelScale:hd": "0.95", + "file:hd": "Units\\Orc\\Rokhan\\Rokhan", + "unitSound": "Rokhan", + "walk:hd": "320", + "run:hd": "320", + "portrait:hd": "Units\\Orc\\Rokhan\\Rokhan_portrait", + "addon": "Heroes" + }, + "Npcs": { + "skinType": "unit", + "skinnableID": "Npbm", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNChenStormstout.blp", + "file:hd": "Units\\Creeps\\ChenStormstout\\ChenStormstout", + "unitSound": "PandarenBrewmaster", + "walk:hd": "320", + "run:hd": "320", + "portrait:hd": "Units\\Creeps\\ChenStormstout\\ChenStormstout_portrait", + "addon": "Heroes" + }, + "Nbrx": { + "skinType": "unit", + "skinnableID": "Nbst", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRexxar.blp", + "modelScale:hd": "1.1", + "modelScale:sd": "1", + "file": "Units\\Other\\Rexxar\\Rexxar", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "portrait:sd": "Units\\Other\\Rexxar\\Rexxar_portrait", + "portrait:hd": "Units\\Other\\Rexxar\\Rexxar_portrait", + "addon": "Heroes" + }, + "Nbrs": { + "skinType": "unit", + "skinnableID": "Nbrn", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSylvanusWindrunner.blp", + "modelScale:hd": "1.1", + "modelScale:sd": "1.1", + "file": "units\\creeps\\SylvanusWindrunner\\SylvanusWindrunner", + "unitSound": "Sylvanus", + "walk:sd": "200", + "walk:hd": "350", + "run:sd": "200", + "run:hd": "350", + "portrait:sd": "units\\creeps\\SylvanusWindrunner\\SylvanusWindrunner_portrait", + "portrait:hd": "units\\creeps\\SylvanusWindrunner\\SylvanusWindrunner_portrait", + "addon": "Heroes" + }, + "Nbru": { + "skinType": "unit", + "skinnableID": "Nbrn", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNSylvanas.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNBansheeRanger.blp", + "modelScale:hd": "1", + "file": "Units\\Undead\\EvilSylvanas\\EvilSylvanas", + "unitSound": "EvilSylvanas", + "walk:sd": "250", + "walk:hd": "320", + "run:sd": "250", + "run:hd": "320", + "portrait:hd": "Units\\Undead\\EvilSylvanas\\EvilSylvanas_portrait", + "portrait:sd": "Units\\Undead\\EvilSylvanas\\EvilSylvanas_portrait", + "addon": "Heroes" + }, + "Nngv": { + "skinType": "unit", + "skinnableID": "Nngs", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNLadyVashj.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNNagaSeaWitch.blp", + "modelScale:hd": "0.9", + "modelScale:sd": "1", + "file": "units\\naga\\LadyVashj\\LadyVashj", + "walk:sd": "250", + "walk:hd": "270", + "run:sd": "250", + "run:hd": "270", + "portrait:sd": "units\\naga\\LadyVashj\\LadyVashj_portrait", + "portrait:hd": "units\\naga\\LadyVashj\\LadyVashj_portrait", + "addon": "Heroes" + }, + "Ntig": { + "skinType": "unit", + "skinnableID": "Ntin", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNEngineerGazlowe.blp", + "file:hd": "Units\\Creeps\\HeroTinkerGazlowe\\HeroTinkerGazlowe", + "unitSound": "HeroTinker", + "walk:sd": "150", + "walk:hd": "270", + "run:sd": "150", + "run:hd": "270", + "portrait:hd": "Units\\Creeps\\HeroTinkerGazlowe\\HeroTinkerGazlowe_portrait", + "addon": "Heroes" + }, + "Npma": { + "skinType": "unit", + "skinnableID": "Nplh", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMagtheridon.blp", + "modelScale:hd": "1.35", + "file:hd": "Units\\Demon\\Magtheridon\\Magtheridon", + "unitSound:hd": "Magtheridon", + "portrait:hd": "Units\\Demon\\Magtheridon\\Magtheridon_portrait", + "addon": "Heroes" + }, + "Npla": { + "skinType": "unit", + "skinnableID": "Nplh", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAzgalor.blp", + "Art:sd": "ReplaceableTextures\\CommandButtons\\BTNPitLord.blp", + "modelScale:hd": "1.05", + "modelScale:sd": "1.35", + "file": "units\\demon\\PitLord\\PitLord", + "unitSound": "PitLord", + "unitClass": "zzdemon", + "walk:sd": "210", + "walk:hd": "250", + "run:sd": "210", + "run:hd": "250", + "addon": "Heroes" + }, + "Ekgh": { + "skinType": "unit", + "skinnableID": "Ekee", + "Art": "ReplaceableTextures\\CommandButtons\\BTNKeeperGhostBlue.blp", + "modelScale:hd": "1.2", + "modelScale:sd": "1", + "file": "units\\nightelf\\HeroKeeperoftheGroveGhost\\HeroKeeperoftheGroveGhost", + "addon": "Heroes" + }, + "Haga": { + "skinType": "unit", + "skinnableID": "Hamg", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhostMage.blp", + "file": "units\\other\\HeroArchMageGhost\\HeroArchMageGhost", + "modelScale:hd": "0.95", + "modelScale:sd": "1", + "legacyModelScale": "1", + "addon": "Heroes" + }, + "Haja": { + "skinType": "unit", + "skinnableID": "Hamg", + "Art": "ReplaceableTextures\\CommandButtons\\BTNJaina.blp", + "file": "units\\human\\Jaina\\Jaina", + "unitSound": "Jaina", + "walk:sd": "400", + "walk:hd": "270", + "run:sd": "400", + "run:hd": "270", + "modelScale:hd": "1.15", + "modelScale:sd": "1", + "shadowW": "140", + "shadowH": "140", + "shadowX": "70", + "shadowY": "70", + "addon": "Heroes" + } + }, + "ability": { + "AHbz": { + "alias": "AHbz", + "code": "AHbz", + "comments": "Arch Mage - Blizzard", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 1, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 6, + "Cost1": 75, + "Area1": 200, + "Rng1": 800, + "DataA1": 6, + "DataB1": 30, + "DataC1": 6, + "DataD1": 0.5, + "DataE1": 0, + "DataF1": 150, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHbd,BHbz", + "EfctID1": "XHbz", + "targs2": "_", + "Cast2": 1, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 6, + "Cost2": 75, + "Area2": 200, + "Rng2": 800, + "DataA2": 8, + "DataB2": 40, + "DataC2": 7, + "DataD2": 0.5, + "DataE2": 0, + "DataF2": 200, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHbd,BHbz", + "EfctID2": "XHbz", + "targs3": "_", + "Cast3": 1, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 6, + "Cost3": 75, + "Area3": 200, + "Rng3": 800, + "DataA3": 10, + "DataB3": 50, + "DataC3": 10, + "DataD3": 0.5, + "DataE3": 0, + "DataF3": 250, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHbd,BHbz", + "EfctID3": "XHbz", + "targs4": "_", + "Cast4": 1, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 6, + "Cost4": 75, + "Area4": 200, + "Rng4": 800, + "DataA4": 10, + "DataB4": 50, + "DataC4": 10, + "DataD4": 0.5, + "DataE4": 0, + "DataF4": 250, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHbd,BHbz", + "EfctID4": "XHbz", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "blizzard", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Animnames": "stand,channel" + }, + "AHab": { + "alias": "AHab", + "code": "AHab", + "comments": "Arch Mage - Brilliance Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.75, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHab", + "targs2": "air,ground,friend,self,vuln,invu", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": 900, + "Rng2": "-", + "DataA2": 1.25, + "DataB2": 0, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHab", + "targs3": "air,ground,friend,self,vuln,invu", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": 900, + "Rng3": "-", + "DataA3": 2, + "DataB3": 0, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHab", + "targs4": "air,ground,friend,self,vuln,invu", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": 900, + "Rng4": "-", + "DataA4": 2.25, + "DataB4": 0, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHab", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBrilliance.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Human\\Brilliance\\Brilliance.mdl", + "Targetattach": "origin" + }, + "AHmt": { + "alias": "AHmt", + "code": "AHmt", + "comments": "Arch Mage - Mass Teleport", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,vuln,invu,player,neutral,ally", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 100, + "Area1": 800, + "Rng1": 99999, + "DataA1": 24, + "DataB1": 3, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "ground,structure,vuln,invu,player,neutral,ally", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 30, + "Cost2": 100, + "Area2": 700, + "Rng2": 99999, + "DataA2": 12, + "DataB2": 5, + "DataC2": 1, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "ground,structure,vuln,invu,player,neutral,ally", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 30, + "Cost3": 100, + "Area3": 700, + "Rng3": 99999, + "DataA3": 12, + "DataB3": 5, + "DataC3": 1, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "ground,structure,vuln,invu,player,neutral,ally", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 30, + "Cost4": 100, + "Area4": 700, + "Rng4": 99999, + "DataA4": 12, + "DataB4": 5, + "DataC4": 1, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "massteleport", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMassTeleport.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMassTeleport.blp", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "AHwe": { + "alias": "AHwe", + "code": "AHwe", + "comments": "Arch Mage - Water Elemental", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 125, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hwat", + "BuffID1": "BHwe", + "targs2": "_", + "Cast2": "-", + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 20, + "Cost2": 125, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "hwt2", + "BuffID2": "BHwe", + "targs3": "_", + "Cast3": "-", + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 20, + "Cost3": 125, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "hwt3", + "BuffID3": "BHwe", + "targs4": "_", + "Cast4": "-", + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 20, + "Cost4": 125, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "hwt3", + "BuffID4": "BHwe", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "waterelemental", + "skinType": "ability", + "UnitSkinID": "hwat,hwt2,hwt3,hwt3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp" + }, + "ANst": { + "alias": "ANst", + "code": "ANst", + "comments": "Beast Master - Stampede", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 180, + "Cost1": 150, + "Area1": 1000, + "Rng1": 300, + "DataA1": 2, + "DataB1": 55, + "DataC1": 60, + "DataD1": 275, + "DataE1": 0.2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNst", + "targs2": "ground,structure,debris,enemy,neutral", + "Cast2": 0, + "Dur2": 20, + "HeroDur2": 20, + "Cool2": 180, + "Cost2": 200, + "Area2": 600, + "Rng2": 1000, + "DataA2": 2, + "DataB2": 48, + "DataC2": 50, + "DataD2": 200, + "DataE2": 0.2, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNst", + "targs3": "ground,structure,debris,enemy,neutral", + "Cast3": 0, + "Dur3": 20, + "HeroDur3": 20, + "Cool3": 180, + "Cost3": 200, + "Area3": 600, + "Rng3": 1000, + "DataA3": 2, + "DataB3": 48, + "DataC3": 50, + "DataD3": 200, + "DataE3": 0.2, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNst", + "targs4": "ground,structure,debris,enemy,neutral", + "Cast4": 0, + "Dur4": 20, + "HeroDur4": 20, + "Cool4": 180, + "Cost4": 200, + "Area4": 600, + "Rng4": 1000, + "DataA4": 2, + "DataB4": 48, + "DataC4": 50, + "DataD4": 200, + "DataE4": 0.2, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNst", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "500", + "Order": "stampede", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Specialart": "Abilities\\Spells\\Other\\Stampede\\StampedeMissileDeath.mdl", + "Missileart": "Abilities\\Spells\\Other\\Stampede\\StampedeMissile.mdl", + "Effectsoundlooped": "StampedeLoop", + "Effectsound": "StampedeCast", + "Animnames": "spell,looping" + }, + "ANsg": { + "alias": "ANsg", + "code": "ANsg", + "comments": "Beast Master - Summon Bear", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 70, + "HeroDur1": 70, + "Cool1": 40, + "Cost1": 100, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ngz1", + "BuffID1": "BNsg", + "targs2": "_", + "Cast2": 0, + "Dur2": 70, + "HeroDur2": 70, + "Cool2": 40, + "Cost2": 100, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ngz2", + "BuffID2": "BNsg", + "targs3": "_", + "Cast3": 0, + "Dur3": 70, + "HeroDur3": 70, + "Cool3": 40, + "Cost3": 100, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "ngz3", + "BuffID3": "BNsg", + "targs4": "_", + "Cast4": 0, + "Dur4": 70, + "HeroDur4": 70, + "Cool4": 40, + "Cost4": 100, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "ngz3", + "BuffID4": "BNsg", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "summongrizzly", + "skinType": "ability", + "UnitSkinID": "ngz1,ngz2,ngz3,ngz3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "ANsq": { + "alias": "ANsq", + "code": "ANsq", + "comments": "Beast Master - Summon Quilbeast", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 70, + "HeroDur1": 70, + "Cool1": 25, + "Cost1": 75, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nqb1", + "BuffID1": "BNsq", + "targs2": "_", + "Cast2": 0, + "Dur2": 70, + "HeroDur2": 70, + "Cool2": 25, + "Cost2": 75, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nqb2", + "BuffID2": "BNsq", + "targs3": "_", + "Cast3": 0, + "Dur3": 70, + "HeroDur3": 70, + "Cool3": 25, + "Cost3": 75, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nqb3", + "BuffID3": "BNsq", + "targs4": "_", + "Cast4": 0, + "Dur4": 70, + "HeroDur4": 70, + "Cool4": 25, + "Cost4": 75, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nqb3", + "BuffID4": "BNsq", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "summonquillbeast", + "skinType": "ability", + "UnitSkinID": "nqb1,nqb2,nqb3,nqb3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "ANsw": { + "alias": "ANsw", + "code": "ANsw", + "comments": "Beast Master - Summon Hawk", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 70, + "HeroDur1": 70, + "Cool1": 70, + "Cost1": 50, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nwe1", + "BuffID1": "BNsw", + "targs2": "_", + "Cast2": 0, + "Dur2": 70, + "HeroDur2": 70, + "Cool2": 70, + "Cost2": 50, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nwe2", + "BuffID2": "BNsw", + "targs3": "_", + "Cast3": 0, + "Dur3": 70, + "HeroDur3": 70, + "Cool3": 70, + "Cost3": 50, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nwe3", + "BuffID3": "BNsw", + "targs4": "_", + "Cast4": 0, + "Dur4": 70, + "HeroDur4": 70, + "Cool4": 70, + "Cost4": 50, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nwe3", + "BuffID4": "BNsw", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "summonwareagle", + "skinType": "ability", + "UnitSkinID": "nwe1,nwe2,nwe3,nwe3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "AOww": { + "alias": "AOww", + "code": "AOww", + "comments": "Blade Master - Bladestorm", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 7, + "HeroDur1": 5, + "Cool1": 120, + "Cost1": 200, + "Area1": 200, + "Rng1": "-", + "DataA1": 140, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOww", + "targs2": "ground,structure,debris,enemy,neutral", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 5, + "Cool2": 240, + "Cost2": 250, + "Area2": 200, + "Rng2": "-", + "DataA2": 150, + "DataB2": 0, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOww", + "targs3": "ground,structure,debris,enemy,neutral", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 5, + "Cool3": 240, + "Cost3": 250, + "Area3": 200, + "Rng3": "-", + "DataA3": 150, + "DataB3": 0, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOww", + "targs4": "ground,structure,debris,enemy,neutral", + "Cast4": "-", + "Dur4": 5, + "HeroDur4": 5, + "Cool4": 240, + "Cost4": 250, + "Area4": 200, + "Rng4": "-", + "DataA4": 150, + "DataB4": 0, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOww", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "whirlwind", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWhirlwind.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWhirlwind.blp" + }, + "AOcr": { + "alias": "AOcr", + "code": "AOcr", + "comments": "Blade Master - Critical Strike", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 0, + "Rng1": "-", + "DataA1": 15, + "DataB1": 2, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,enemy,neutral", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": 0, + "Rng2": "-", + "DataA2": 15, + "DataB2": 3, + "DataC2": 0, + "DataD2": 0, + "DataE2": 0, + "DataF2": 0, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,enemy,neutral", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": 0, + "Rng3": "-", + "DataA3": 15, + "DataB3": 4, + "DataC3": 0, + "DataD3": 0, + "DataE3": 0, + "DataF3": 0, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,enemy,neutral", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": 0, + "Rng4": "-", + "DataA4": 15, + "DataB4": 4, + "DataC4": 0, + "DataD4": 0, + "DataE4": 0, + "DataF4": 0, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCriticalStrike.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCriticalStrike.blp" + }, + "AOmi": { + "alias": "AOmi", + "code": "AOmi", + "comments": "Blade Master - Mirror Image", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 5, + "Cost1": 80, + "Area1": 1000, + "Rng1": 128, + "DataA1": 1, + "DataB1": 0.2, + "DataC1": 2, + "DataD1": 0.5, + "DataE1": 30, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOmi", + "targs2": "_", + "Cast2": "-", + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 5, + "Cost2": 80, + "Area2": 1000, + "Rng2": 128, + "DataA2": 2, + "DataB2": 0.2, + "DataC2": 2, + "DataD2": 0.5, + "DataE2": 30, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOmi", + "targs3": "_", + "Cast3": "-", + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 5, + "Cost3": 80, + "Area3": 1000, + "Rng3": 128, + "DataA3": 3, + "DataB3": 0.2, + "DataC3": 2, + "DataD3": 0.5, + "DataE3": 30, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOmi", + "targs4": "_", + "Cast4": "-", + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 3, + "Cost4": 80, + "Area4": 1000, + "Rng4": 128, + "DataA4": 3, + "DataB4": 0.15, + "DataC4": 2, + "DataD4": 0.5, + "DataE4": 30, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOmi", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1000", + "Order": "mirrorimage", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMirrorImage.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMirrorImage.blp", + "Targetart": "Abilities\\Spells\\Other\\Levelup\\LevelupCaster.mdl", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageCaster.mdl", + "Missileart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageMissile.mdl" + }, + "AOwk": { + "alias": "AOwk", + "code": "AOwk", + "comments": "Blade Master - Wind Walk", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 2, + "Cost1": 75, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.6, + "DataB1": 0.1, + "DataC1": 40, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOwk", + "targs2": "air,ground,enemy,neutral", + "Cast2": "-", + "Dur2": 35, + "HeroDur2": 35, + "Cool2": 2, + "Cost2": 75, + "Area2": "-", + "Rng2": "-", + "DataA2": 0.6, + "DataB2": 0.4, + "DataC2": 70, + "DataD2": 1, + "DataE2": 1, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOwk", + "targs3": "air,ground,enemy,neutral", + "Cast3": "-", + "Dur3": 50, + "HeroDur3": 50, + "Cool3": 2, + "Cost3": 75, + "Area3": "-", + "Rng3": "-", + "DataA3": 0.6, + "DataB3": 0.7, + "DataC3": 100, + "DataD3": 1, + "DataE3": 1, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOwk", + "targs4": "air,ground,enemy,neutral", + "Cast4": "-", + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 2, + "Cost4": 75, + "Area4": "-", + "Rng4": "-", + "DataA4": 0.6, + "DataB4": 0.7, + "DataC4": 100, + "DataD4": 1, + "DataE4": 1, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOwk", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "windwalk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Effectsound": "WindWalk" + }, + "AHbn": { + "alias": "AHbn", + "code": "AHbn", + "comments": "Blood Mage - Banish", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonsapper,organic", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 4, + "Cool1": 4, + "Cost1": 75, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.5, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHbn", + "targs2": "air,ground,nonsapper,organic", + "Cast2": "-", + "Dur2": 15, + "HeroDur2": 5, + "Cool2": 2, + "Cost2": 60, + "Area2": "-", + "Rng2": 800, + "DataA2": 0.5, + "DataB2": 0, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHbn", + "targs3": "air,ground,nonsapper,organic", + "Cast3": "-", + "Dur3": 18, + "HeroDur3": 6, + "Cool3": 0, + "Cost3": 50, + "Area3": "-", + "Rng3": 800, + "DataA3": 0.5, + "DataB3": 0, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHbn", + "targs4": "air,ground,nonsapper,organic", + "Cast4": "-", + "Dur4": 18, + "HeroDur4": 6, + "Cool4": 1, + "Cost4": 75, + "Area4": "-", + "Rng4": 800, + "DataA4": 0.5, + "DataB4": 0, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHbn", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "banish", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp", + "Effectsound": "BanishCaster" + }, + "AHfs": { + "alias": "AHfs", + "code": "AHfs", + "comments": "Blood Mage - Flame Strike", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,friend,structure,self,tree,debris", + "Cast1": 0.8, + "Dur1": 9, + "HeroDur1": 2.67, + "Cool1": 10, + "Cost1": 125, + "Area1": 200, + "Rng1": 800, + "DataA1": 15, + "DataB1": 0.33, + "DataC1": 4, + "DataD1": 1, + "DataE1": 0.75, + "DataF1": 90, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHfs", + "EfctID1": "XHfs", + "targs2": "ground,enemy,neutral,friend,structure,self,tree,debris", + "Cast2": 0.8, + "Dur2": 9, + "HeroDur2": 2.67, + "Cool2": 10, + "Cost2": 125, + "Area2": 200, + "Rng2": 800, + "DataA2": 26.666, + "DataB2": 0.33, + "DataC2": 6, + "DataD2": 1, + "DataE2": 0.75, + "DataF2": 160, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHfs", + "EfctID2": "XHfs", + "targs3": "ground,enemy,neutral,friend,structure,self,tree,debris", + "Cast3": 0.8, + "Dur3": 9, + "HeroDur3": 2.67, + "Cool3": 10, + "Cost3": 125, + "Area3": 200, + "Rng3": 800, + "DataA3": 36.666, + "DataB3": 0.33, + "DataC3": 8, + "DataD3": 1, + "DataE3": 0.75, + "DataF3": 220, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHfs", + "EfctID3": "XHfs", + "targs4": "ground,enemy,neutral,friend,structure,self,tree,debris", + "Cast4": 0.9, + "Dur4": 9, + "HeroDur4": 2.67, + "Cool4": 10, + "Cost4": 135, + "Area4": 200, + "Rng4": 800, + "DataA4": 36.666, + "DataB4": 0.33, + "DataC4": 8, + "DataD4": 1, + "DataE4": 0.75, + "DataF4": 220, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHfs", + "EfctID4": "XHfs", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "flamestrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrike1.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike2.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike.mdl", + "Animnames": "spell,channel" + }, + "AHdr": { + "alias": "AHdr", + "code": "AHdr", + "comments": "Blood Mage - Siphon Mana", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,notself", + "Cast1": 0, + "Dur1": 6, + "HeroDur1": 6, + "Cool1": 8, + "Cost1": 25, + "Area1": 700, + "Rng1": 600, + "DataA1": 0, + "DataB1": 15, + "DataC1": 1, + "DataD1": 0, + "DataE1": 30, + "DataF1": 0, + "DataG1": 0, + "DataH1": 1, + "DataI1": 3, + "BuffID1": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs2": "air,ground,organic,notself", + "Cast2": 0, + "Dur2": 6, + "HeroDur2": 6, + "Cool2": 8, + "Cost2": 25, + "Area2": 700, + "Rng2": 600, + "DataA2": 0, + "DataB2": 25, + "DataC2": 1, + "DataD2": 0, + "DataE2": 60, + "DataF2": 0, + "DataG2": 0, + "DataH2": 1, + "DataI2": 3, + "BuffID2": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs3": "air,ground,organic,notself", + "Cast3": 0, + "Dur3": 6, + "HeroDur3": 6, + "Cool3": 8, + "Cost3": 25, + "Area3": 700, + "Rng3": 600, + "DataA3": 0, + "DataB3": 40, + "DataC3": 1, + "DataD3": 0, + "DataE3": 90, + "DataF3": 0, + "DataG3": 0, + "DataH3": 1, + "DataI3": 3, + "BuffID3": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs4": "air,ground,organic,notself", + "Cast4": 0, + "Dur4": 6, + "HeroDur4": 6, + "Cool4": 6, + "Cost4": 10, + "Area4": 800, + "Rng4": 600, + "DataA4": 0, + "DataB4": 55, + "DataC4": 1, + "DataD4": 0, + "DataE4": 50, + "DataF4": 0, + "DataG4": 0, + "DataH4": 1, + "DataI4": 3, + "BuffID4": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp", + "Effectsoundlooped": "SiphonManaLoop", + "LightningEffect": "DRAB,DRAL,DRAM", + "Animnames": "spell,channel" + }, + "AHpx": { + "alias": "AHpx", + "code": "AHpx", + "comments": "Blood Mage - Phoenix", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 180, + "Cost1": 175, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hphx", + "targs2": "_", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 120, + "Cost2": 125, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "hphx", + "targs3": "_", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 120, + "Cost3": 125, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "hphx", + "targs4": "_", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 120, + "Cost4": 125, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "hphx", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "summonphoenix", + "skinType": "ability", + "UnitSkinID": "hphx,hphx,hphx,hphx", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Specialart": "Abilities\\Spells\\Human\\MarkOfChaos\\MarkOfChaosTarget.mdl" + }, + "AUcb": { + "alias": "AUcb", + "code": "AUcb", + "comments": "Crypt Lord - Carrion Scarabs", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "dead", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 50, + "Area1": 900, + "Rng1": 900, + "DataA1": 2, + "DataB1": 0, + "DataC1": "ucs1", + "DataD1": "-", + "DataE1": 6, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUcb", + "targs2": "dead", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 9, + "Cost2": 50, + "Area2": 900, + "Rng2": 900, + "DataA2": 2, + "DataB2": 0, + "DataC2": "ucs2", + "DataD2": "-", + "DataE2": 6, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUcb", + "targs3": "dead", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 9, + "Cost3": 50, + "Area3": 900, + "Rng3": 900, + "DataA3": 2, + "DataB3": 0, + "DataC3": "ucs3", + "DataD3": "-", + "DataE3": 6, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUcb", + "targs4": "dead", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 9, + "Cost4": 50, + "Area4": 900, + "Rng4": 900, + "DataA4": 2, + "DataB4": 0, + "DataC4": "ucs3", + "DataD4": "-", + "DataE4": 6, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUcb", + "InBeta": 1, + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "Carrionscarabs", + "Orderon": "Carrionscarabson", + "Orderoff": "Carrionscarabsoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsOff.blp" + }, + "AUim": { + "alias": "AUim", + "code": "AUim", + "comments": "Crypt Lord - Impale", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 1, + "Cool1": 9, + "Cost1": 90, + "Area1": 250, + "Rng1": 700, + "DataA1": 600, + "DataB1": 0.3, + "DataC1": 60, + "DataD1": 1, + "DataE1": 1, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUim", + "targs2": "ground,enemy,neutral,organic", + "Cast2": 0, + "Dur2": 3, + "HeroDur2": 1.5, + "Cool2": 9, + "Cost2": 90, + "Area2": 250, + "Rng2": 700, + "DataA2": 600, + "DataB2": 0.3, + "DataC2": 105, + "DataD2": 1, + "DataE2": 1, + "DataF2": 1, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUim", + "targs3": "ground,enemy,neutral,organic", + "Cast3": 0, + "Dur3": 4, + "HeroDur3": 2, + "Cool3": 9, + "Cost3": 90, + "Area3": 250, + "Rng3": 700, + "DataA3": 600, + "DataB3": 0.3, + "DataC3": 150, + "DataD3": 1, + "DataE3": 1, + "DataF3": 1, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUim", + "targs4": "ground,enemy,neutral,organic", + "Cast4": 0, + "Dur4": 4, + "HeroDur4": 3, + "Cool4": 9, + "Cost4": 100, + "Area4": 300, + "Rng4": 700, + "DataA4": 600, + "DataB4": 0.3, + "DataC4": 165, + "DataD4": 1, + "DataE4": 1, + "DataF4": 1, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUim", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "impale", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Effectsound": "ImpaleCast", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Specialart": "Abilities\\Spells\\Undead\\Impale\\ImpaleMissTarget.mdl" + }, + "AUls": { + "alias": "AUls", + "code": "AUls", + "comments": "Crypt Lord - Locust Swarm", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 180, + "Cost1": 150, + "Area1": 800, + "Rng1": "-", + "DataA1": 20, + "DataB1": 0.2, + "DataC1": 7, + "DataD1": 0.75, + "DataE1": 20, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uloc", + "targs2": "air,ground,structure,neutral,enemy", + "Cast2": 0, + "Dur2": 30, + "HeroDur2": 30, + "Cool2": 180, + "Cost2": 150, + "Area2": 800, + "Rng2": "-", + "DataA2": 20, + "DataB2": 0.2, + "DataC2": 7, + "DataD2": 1, + "DataE2": 20, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "uloc", + "targs3": "air,ground,structure,neutral,enemy", + "Cast3": 0, + "Dur3": 30, + "HeroDur3": 30, + "Cool3": 180, + "Cost3": 150, + "Area3": 800, + "Rng3": "-", + "DataA3": 20, + "DataB3": 0.2, + "DataC3": 7, + "DataD3": 1, + "DataE3": 20, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "uloc", + "targs4": "air,ground,structure,neutral,enemy", + "Cast4": 0, + "Dur4": 30, + "HeroDur4": 30, + "Cool4": 180, + "Cost4": 150, + "Area4": 800, + "Rng4": "-", + "DataA4": 20, + "DataB4": 0.2, + "DataC4": 7, + "DataD4": 1, + "DataE4": 20, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "uloc", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "Locustswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Effectsoundlooped": "LocustSwarmLoop" + }, + "AUts": { + "alias": "AUts", + "code": "AUts", + "comments": "Crypt Lord - Spiked Carapace", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": "-", + "Rng1": "-", + "DataA1": 0.15, + "DataB1": 1, + "DataC1": 4, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUts", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": 0.3, + "DataB2": 1, + "DataC2": 8, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUts", + "targs3": "_", + "Cast3": 0, + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": 0.45, + "DataB3": 1, + "DataC3": 12, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUts", + "targs4": "_", + "Cast4": 0, + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": 0.35, + "DataB4": 1, + "DataC4": 7, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUts", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThornShield.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp" + }, + "ANba": { + "alias": "ANba", + "code": "ANba", + "comments": "Dark Ranger - Black Arrow", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 6, + "Area1": "-", + "Rng1": 600, + "DataA1": 2, + "DataB1": 1, + "DataC1": 80, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ndr1", + "BuffID1": "BNba,BNdm", + "targs2": "air,ground,enemy,organic,neutral", + "Cast2": "-", + "Dur2": 2, + "HeroDur2": 0, + "Cool2": 0, + "Cost2": 6, + "Area2": "-", + "Rng2": 700, + "DataA2": 10, + "DataB2": 1, + "DataC2": 80, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ndr2", + "BuffID2": "BNba,BNdm", + "targs3": "air,ground,enemy,organic,neutral", + "Cast3": "-", + "Dur3": 2, + "HeroDur3": 0, + "Cool3": 0, + "Cost3": 6, + "Area3": "-", + "Rng3": 700, + "DataA3": 20, + "DataB3": 1, + "DataC3": 80, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "ndr3", + "BuffID3": "BNba,BNdm", + "targs4": "air,ground,enemy,organic,neutral", + "Cast4": "-", + "Dur4": 2, + "HeroDur4": 0, + "Cool4": 0, + "Cost4": 6, + "Area4": "-", + "Rng4": 700, + "DataA4": 20, + "DataB4": 1, + "DataC4": 80, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "ndr3", + "BuffID4": "BNba,BNdm", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1050", + "MissileHoming": "1", + "Orderon": "blackarrowon", + "Orderoff": "blackarrowoff", + "Order": "blackarrow", + "skinType": "ability", + "UnitSkinID": "ndr1,ndr2,ndr3,ndr3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp", + "Missileart": "Abilities\\Spells\\Other\\BlackArrow\\BlackArrowMissile.mdl", + "Animnames": "attack" + }, + "ANch": { + "alias": "ANch", + "code": "ANch", + "comments": "Dark Ranger - Charm", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 45, + "Cost1": 150, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,nonhero,enemy,neutral,organic", + "Cast2": "-", + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 30, + "Cost2": 125, + "Area2": "-", + "Rng2": 700, + "DataA2": 5, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,nonhero,enemy,neutral,organic", + "Cast3": "-", + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 30, + "Cost3": 125, + "Area3": "-", + "Rng3": 700, + "DataA3": 5, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,nonhero,enemy,neutral,organic", + "Cast4": "-", + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 30, + "Cost4": 125, + "Area4": "-", + "Rng4": 700, + "DataA4": 5, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "charm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCharm.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCharm.blp", + "Targetart": "Abilities\\Spells\\Other\\Charm\\CharmTarget.mdl", + "Targetattach": "overhead" + }, + "ANdr": { + "alias": "ANdr", + "code": "AHdr", + "comments": "Dark Ranger - Drain", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,notself", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 8, + "Cool1": 8, + "Cost1": 30, + "Area1": 700, + "Rng1": 600, + "DataA1": 30, + "DataB1": 0, + "DataC1": 1, + "DataD1": 30, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": 0, + "DataI1": 0, + "DataJ1": 1, + "BuffID1": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs2": "air,ground,organic,notself", + "Cast2": 0, + "Dur2": 8, + "HeroDur2": 8, + "Cool2": 8, + "Cost2": 30, + "Area2": 700, + "Rng2": 600, + "DataA2": 45, + "DataB2": 0, + "DataC2": 1, + "DataD2": 45, + "DataE2": 0, + "DataF2": 0, + "DataG2": 0, + "DataH2": 0, + "DataI2": 0, + "DataJ2": 1, + "BuffID2": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs3": "air,ground,organic,notself", + "Cast3": 0, + "Dur3": 8, + "HeroDur3": 8, + "Cool3": 8, + "Cost3": 30, + "Area3": 700, + "Rng3": 600, + "DataA3": 60, + "DataB3": 0, + "DataC3": 1, + "DataD3": 60, + "DataE3": 0, + "DataF3": 0, + "DataG3": 0, + "DataH3": 0, + "DataI3": 0, + "DataJ3": 1, + "BuffID3": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs4": "air,ground,organic,notself", + "Cast4": 0, + "Dur4": 8, + "HeroDur4": 8, + "Cool4": 8, + "Cost4": 30, + "Area4": 700, + "Rng4": 600, + "DataA4": 60, + "DataB4": 0, + "DataC4": 1, + "DataD4": 0, + "DataE4": 0, + "DataF4": 0, + "DataG4": 0, + "DataH4": 0, + "DataI4": 0, + "DataJ4": 1, + "BuffID4": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp", + "Effectsoundlooped": "DrainLoop", + "Animnames": "spell,channel", + "LightningEffect": "DRAB,DRAL,DRAM" + }, + "ANsi": { + "alias": "ANsi", + "code": "ANsi", + "comments": "Dark Ranger - Silence", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 16, + "HeroDur1": 8, + "Cool1": 15, + "Cost1": 75, + "Area1": 200, + "Rng1": 900, + "DataA1": 8, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNsi", + "targs2": "air,ground,enemy,organic,neutral", + "Cast2": 0, + "Dur2": 20, + "HeroDur2": 10, + "Cool2": 15, + "Cost2": 75, + "Area2": 275, + "Rng2": 900, + "DataA2": 8, + "DataB2": 0, + "DataC2": 0, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNsi", + "targs3": "air,ground,enemy,organic,neutral", + "Cast3": 0, + "Dur3": 24, + "HeroDur3": 12, + "Cool3": 15, + "Cost3": 75, + "Area3": 350, + "Rng3": 900, + "DataA3": 8, + "DataB3": 0, + "DataC3": 0, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNsi", + "targs4": "air,ground,enemy,organic,neutral", + "Cast4": 0, + "Dur4": 24, + "HeroDur4": 12, + "Cool4": 15, + "Cost4": 75, + "Area4": 350, + "Rng4": 900, + "DataA4": 8, + "DataB4": 0, + "DataC4": 0, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNsi", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "silence", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Effectart": "Abilities\\Spells\\Other\\Silence\\SilenceAreaBirth.mdl" + }, + "AUan": { + "alias": "AUan", + "code": "AUan", + "comments": "Death Knight - Animate Dead", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 180, + "Cost1": 125, + "Area1": 900, + "Rng1": 400, + "DataA1": 6, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUan", + "EfctID1": "Aap5", + "targs2": "air,ground,dead", + "Cast2": "-", + "Dur2": 120, + "HeroDur2": 120, + "Cool2": 240, + "Cost2": 125, + "Area2": 900, + "Rng2": 400, + "DataA2": 6, + "DataB2": 0, + "DataC2": 1, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUan", + "EfctID2": "Aap5", + "targs3": "air,ground,dead", + "Cast3": "-", + "Dur3": 120, + "HeroDur3": 120, + "Cool3": 240, + "Cost3": 125, + "Area3": 900, + "Rng3": 400, + "DataA3": 6, + "DataB3": 0, + "DataC3": 1, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUan", + "EfctID3": "Aap5", + "targs4": "air,ground,dead", + "Cast4": "-", + "Dur4": 120, + "HeroDur4": 120, + "Cool4": 240, + "Cost4": 125, + "Area4": 900, + "Rng4": 400, + "DataA4": 6, + "DataB4": 0, + "DataC4": 1, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUan", + "EfctID4": "Aap5", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "AUdc": { + "alias": "AUdc", + "code": "AUdc", + "comments": "Death Knight - Death Coil", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 6, + "Cost1": 75, + "Area1": "-", + "Rng1": 800, + "DataA1": 200, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 6, + "Cost2": 75, + "Area2": "-", + "Rng2": 800, + "DataA2": 400, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 6, + "Cost3": 75, + "Area3": "-", + "Rng3": 800, + "DataA3": 600, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 6, + "Cost4": 75, + "Area4": "-", + "Rng4": 800, + "DataA4": 600, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1100", + "MissileHoming": "1", + "Order": "deathcoil", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathCoil.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathCoil.blp", + "Specialart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl", + "Missileart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilMissile.mdl" + }, + "AUdp": { + "alias": "AUdp", + "code": "AUdp", + "comments": "Death Knight - Death Pact", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,player,nonhero,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 15, + "Cost1": 50, + "Area1": "-", + "Rng1": 800, + "DataA1": 0, + "DataB1": 1, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,player,nonhero,invu,vuln", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 15, + "Cost2": 50, + "Area2": "-", + "Rng2": 800, + "DataA2": 0, + "DataB2": 2, + "DataC2": 0, + "DataD2": 0, + "DataE2": 0, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,player,nonhero,invu,vuln", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 15, + "Cost3": 50, + "Area3": "-", + "Rng3": 800, + "DataA3": 0, + "DataB3": 3, + "DataC3": 0, + "DataD3": 0, + "DataE3": 0, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,player,nonhero,invu,vuln", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 15, + "Cost4": 50, + "Area4": "-", + "Rng4": 800, + "DataA4": 0, + "DataB4": 3, + "DataC4": 0, + "DataD4": 0, + "DataE4": 0, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "deathpact", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Targetattach": "origin", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Casterart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactCaster.mdl" + }, + "AUau": { + "alias": "AUau", + "code": "AUau", + "comments": "Death Knight - Unholy Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": " - ", + "Area1": 900, + "Rng1": " - ", + "DataA1": 0.1, + "DataB1": 0.5, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUau", + "targs2": "air,ground,friend,self,vuln,invu", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": 900, + "Rng2": " - ", + "DataA2": 0.15, + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUau", + "targs3": "air,ground,friend,self,vuln,invu", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": 900, + "Rng3": " - ", + "DataA3": 0.2, + "DataB3": 1.5, + "DataC3": 0, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUau", + "targs4": "air,ground,friend,self,vuln,invu", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": 900, + "Rng4": " - ", + "DataA4": 0.3, + "DataB4": 1.5, + "DataC4": 0, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUau", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\UnholyAura\\UnholyAura.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUnholyAura.blp", + "Targetattach": "origin", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNUnholyAura.blp" + }, + "AEev": { + "alias": "AEev", + "code": "AEev", + "comments": "Demon Hunter - Evasion", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": "-", + "Rng1": "-", + "DataA1": 0.1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": 0.2, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": 0.3, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": 0.3, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEvasion.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEvasion.blp" + }, + "AEim": { + "alias": "AEim", + "code": "AEim", + "comments": "Demon Hunter - Immolation", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 0.5, + "HeroDur1": 0.5, + "Cool1": 0, + "Cost1": 10, + "Area1": 160, + "Rng1": "-", + "DataA1": 6, + "DataB1": 7, + "DataC1": 10, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEim,BEia", + "targs2": "ground,enemy,neutral,organic", + "Cast2": "-", + "Dur2": 0.5, + "HeroDur2": 0.5, + "Cool2": 0, + "Cost2": 10, + "Area2": 160, + "Rng2": "-", + "DataA2": 11, + "DataB2": 7, + "DataC2": 10, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BEim,BEia", + "targs3": "ground,enemy,neutral,organic", + "Cast3": "-", + "Dur3": 0.5, + "HeroDur3": 0.5, + "Cool3": 0, + "Cost3": 10, + "Area3": 160, + "Rng3": "-", + "DataA3": 17, + "DataB3": 7, + "DataC3": 10, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BEim,BEia", + "targs4": "ground,enemy,neutral,organic", + "Cast4": "-", + "Dur4": 0.5, + "HeroDur4": 0.5, + "Cool4": "-", + "Cost4": 20, + "Area4": 160, + "Rng4": "-", + "DataA4": 20, + "DataB4": 6, + "DataC4": 10, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BEim,BEia", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "immolation", + "Unorder": "unimmolation", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp" + }, + "AEmb": { + "alias": "AEmb", + "code": "AEmb", + "comments": "Demon Hunter - Mana Burn", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 7, + "Cost1": 50, + "Area1": "-", + "Rng1": 300, + "DataA1": 50, + "DataB1": 0.25, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,enemy,neutral", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 6, + "Cost2": 50, + "Area2": "-", + "Rng2": 300, + "DataA2": 100, + "DataB2": 0.25, + "DataC2": 1, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,enemy,neutral", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 5, + "Cost3": 50, + "Area3": "-", + "Rng3": 300, + "DataA3": 150, + "DataB3": 0.25, + "DataC3": 1, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,enemy,neutral", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 5, + "Cost4": 50, + "Area4": "-", + "Rng4": 300, + "DataA4": 150, + "DataB4": 0.25, + "DataC4": 1, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "AEme": { + "alias": "AEme", + "code": "AEme", + "comments": "Demon Hunter - Metamorphosis", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 45, + "Cool1": 180, + "Cost1": 150, + "Area1": "-", + "Rng1": "-", + "DataA1": "Edem", + "DataB1": 1, + "DataC1": 0, + "DataE1": 500, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Edmm", + "BuffID1": "BEme", + "targs2": "_", + "Dur2": 1.5, + "HeroDur2": 45, + "Cool2": 180, + "Cost2": 150, + "Area2": "-", + "Rng2": "-", + "DataA2": "Edem", + "DataB2": 1, + "DataC2": 0, + "DataE2": 500, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Edmm", + "BuffID2": "BEme", + "targs3": "_", + "Dur3": 1.5, + "HeroDur3": 45, + "Cool3": 180, + "Cost3": 150, + "Area3": "-", + "Rng3": "-", + "DataA3": "Edem", + "DataB3": 1, + "DataC3": 0, + "DataE3": 500, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Edmm", + "BuffID3": "BEme", + "targs4": "_", + "Dur4": 1.5, + "HeroDur4": 45, + "Cool4": 180, + "Cost4": 150, + "Area4": "-", + "Rng4": "-", + "DataA4": "Edem", + "DataB4": 1, + "DataC4": 0, + "DataE4": 500, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Edmm", + "BuffID4": "BEme", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "metamorphosis", + "skinType": "ability", + "UnitSkinID": "Edmm,Edmm,Edmm,Edmm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "AUsl": { + "alias": "AUsl", + "code": "AUsl", + "comments": "Dreadlord - Sleep", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 4, + "Cool1": 4, + "Cost1": 80, + "Area1": "-", + "Rng1": 800, + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUsl,BUsp,Bust", + "targs2": "air,ground,enemy,organic,neutral", + "Cast2": "-", + "Dur2": 35, + "HeroDur2": 8, + "Cool2": 4, + "Cost2": 65, + "Area2": "-", + "Rng2": 800, + "DataA2": 2, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUsl,BUsp,Bust", + "targs3": "air,ground,enemy,organic,neutral", + "Cast3": "-", + "Dur3": 55, + "HeroDur3": 12, + "Cool3": 4, + "Cost3": 50, + "Area3": "-", + "Rng3": 800, + "DataA3": 2, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUsl,BUsp,Bust", + "targs4": "air,ground,enemy,organic,neutral", + "Cast4": "-", + "Dur4": 55, + "HeroDur4": 12, + "Cool4": 4, + "Cost4": 50, + "Area4": "-", + "Rng4": 800, + "DataA4": 2, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUsl,BUsp,Bust", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "sleep", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "AUav": { + "alias": "AUav", + "code": "AUav", + "comments": "Dreadlord - Vampiric Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUav", + "targs2": "air,ground,friend,self,vuln,invu,organic", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": 900, + "Rng2": "-", + "DataA2": 0.35, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUav", + "targs3": "air,ground,friend,self,vuln,invu,organic", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": 900, + "Rng3": "-", + "DataA3": 0.5, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUav", + "targs4": "air,ground,friend,self,vuln,invu,organic", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": 900, + "Rng4": "-", + "DataA4": 0.5, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUav", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAura.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNVampiricAura.blp", + "Targetattach": "origin", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNVampiricAura.blp" + }, + "AUcs": { + "alias": "AUcs", + "code": "AUcs", + "comments": "Dreadlord - Carrion Swarm", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 10, + "Cost1": 100, + "Area1": 100, + "Rng1": 700, + "DataA1": 75, + "DataB1": 400, + "DataC1": 800, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUcs", + "targs2": "ground,air", + "Cast2": "-", + "Dur2": 0, + "HeroDur2": "-", + "Cool2": 10, + "Cost2": 100, + "Area2": 100, + "Rng2": 700, + "DataA2": 135, + "DataB2": 700, + "DataC2": 800, + "DataD2": 300, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUcs", + "targs3": "ground,air", + "Cast3": "-", + "Dur3": 0, + "HeroDur3": "-", + "Cool3": 10, + "Cost3": 100, + "Area3": 100, + "Rng3": 700, + "DataA3": 200, + "DataB3": 1200, + "DataC3": 800, + "DataD3": 300, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUcs", + "targs4": "ground,air", + "Cast4": "-", + "Dur4": 0, + "HeroDur4": "-", + "Cool4": 10, + "Cost4": 100, + "Area4": 100, + "Rng4": 700, + "DataA4": 200, + "DataB4": 1000, + "DataC4": 800, + "DataD4": 300, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUcs", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCarrionSwarm.blp", + "Animnames": "attack,slam", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCarrionSwarm.blp", + "Specialart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmDamage.mdl", + "Missileart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmMissile.mdl" + }, + "AUin": { + "alias": "AUin", + "code": "AUin", + "comments": "Dreadlord - Inferno", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 2, + "Cool1": 180, + "Cost1": 175, + "Area1": 250, + "Rng1": 900, + "DataA1": 50, + "DataB1": 180, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ninf", + "BuffID1": "BNin", + "targs2": "ground,structure,debris,enemy,neutral", + "Cast2": "-", + "Dur2": 4, + "HeroDur2": 2, + "Cool2": 180, + "Cost2": 175, + "Area2": 250, + "Rng2": 900, + "DataA2": 50, + "DataB2": 180, + "DataC2": 1, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ninf", + "BuffID2": "BNin", + "targs3": "ground,structure,debris,enemy,neutral", + "Cast3": "-", + "Dur3": 4, + "HeroDur3": 2, + "Cool3": 180, + "Cost3": 175, + "Area3": 250, + "Rng3": 900, + "DataA3": 50, + "DataB3": 180, + "DataC3": 1, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "ninf", + "BuffID3": "BNin", + "targs4": "ground,structure,debris,enemy,neutral", + "Cast4": "-", + "Dur4": 4, + "HeroDur4": 2, + "Cool4": 180, + "Cost4": 175, + "Area4": 250, + "Rng4": 900, + "DataA4": 50, + "DataB4": 180, + "DataC4": 1, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "ninf", + "BuffID4": "BNin", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "inferno", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp" + }, + "AOcl": { + "alias": "AOcl", + "code": "AOcl", + "comments": "Farseer - Chain Lightning", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 110, + "Area1": 500, + "Rng1": 700, + "DataA1": 85, + "DataB1": 4, + "DataC1": 0.1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,enemy,neutral,organic", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 9, + "Cost2": 110, + "Area2": 500, + "Rng2": 700, + "DataA2": 125, + "DataB2": 6, + "DataC2": 0.1, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,enemy,neutral,organic", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 9, + "Cost3": 110, + "Area3": 500, + "Rng3": 700, + "DataA3": 180, + "DataB3": 8, + "DataC3": 0.1, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,enemy,neutral,organic", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 9, + "Cost4": 110, + "Area4": 500, + "Rng4": 700, + "DataA4": 180, + "DataB4": 8, + "DataC4": 0.1, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1500", + "Order": "chainlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Missileart": "Abilities\\Spells\\Orc\\LightningBolt\\LightningBoltMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "Animnames": "spell,chain", + "LightningEffect": "CLPB,CLSB" + }, + "AOeq": { + "alias": "AOeq", + "code": "AOeq", + "comments": "Farseer - Earthquake", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,tree", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 90, + "Cost1": 125, + "Area1": 250, + "Rng1": 1000, + "DataA1": 0.5, + "DataB1": 60, + "DataC1": 0.75, + "DataD1": 250, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOeq,BOea", + "EfctID1": "XOeq", + "targs2": "ground,structure,debris,enemy,tree", + "Cast2": "-", + "Dur2": 20, + "HeroDur2": 20, + "Cool2": 90, + "Cost2": 125, + "Area2": 400, + "Rng2": 1000, + "DataA2": 0.5, + "DataB2": 60, + "DataC2": 0.75, + "DataD2": 400, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOeq,BOea", + "EfctID2": "XOeq", + "targs3": "ground,structure,debris,tree", + "Cast3": "-", + "Dur3": 20, + "HeroDur3": 20, + "Cool3": 90, + "Cost3": 150, + "Area3": 400, + "Rng3": 1000, + "DataA3": 0.5, + "DataB3": 40, + "DataC3": 0.75, + "DataD3": 400, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOeq,BOea", + "EfctID3": "XOeq", + "targs4": "ground,structure,debris,tree", + "Cast4": "-", + "Dur4": 20, + "HeroDur4": 20, + "Cool4": 90, + "Cost4": 150, + "Area4": 400, + "Rng4": 1000, + "DataA4": 0.5, + "DataB4": 40, + "DataC4": 0.75, + "DataD4": 400, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOeq,BOea", + "EfctID4": "XOeq", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "earthquake", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Animnames": "spell,looping" + }, + "AOfs": { + "alias": "AOfs", + "code": "AOfs", + "comments": "Farseer - Far Sight", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 8, + "Cool1": 30, + "Cost1": 0, + "Area1": 900, + "Rng1": 99999, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "Xbdt", + "targs2": "_", + "Cast2": "-", + "Dur2": 8, + "HeroDur2": 8, + "Cool2": 30, + "Cost2": 0, + "Area2": 1800, + "Rng2": 99999, + "DataA2": 3, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "EfctID2": "Xbdt", + "targs3": "_", + "Cast3": "-", + "Dur3": 8, + "HeroDur3": 8, + "Cool3": 30, + "Cost3": 0, + "Area3": 2700, + "Rng3": 99999, + "DataA3": 3, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "EfctID3": "Xbdt", + "targs4": "_", + "Cast4": "-", + "Dur4": 8, + "HeroDur4": 8, + "Cool4": 30, + "Cost4": 0, + "Area4": 2700, + "Rng4": 99999, + "DataA4": 3, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "EfctID4": "Xbdt", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "farsight", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFarSight.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFarSight.blp" + }, + "AOsf": { + "alias": "AOsf", + "code": "AOsf", + "comments": "Farseer - Spirit Wolf", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 30, + "Cost1": 85, + "Area1": 200, + "Rng1": 800, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "osw1", + "BuffID1": "BOsf", + "targs2": "_", + "Cast2": "-", + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 30, + "Cost2": 85, + "Area2": 200, + "Rng2": 800, + "DataB2": 2, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "osw2", + "BuffID2": "BOsf", + "targs3": "_", + "Cast3": "-", + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 30, + "Cost3": 85, + "Area3": 200, + "Rng3": 800, + "DataB3": 2, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "osw3", + "BuffID3": "BOsf", + "targs4": "_", + "Cast4": "-", + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 30, + "Cost4": 100, + "Area4": 200, + "Rng4": 800, + "DataB4": 2, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "osw3", + "BuffID4": "BOsf", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "osw1,osw2,osw3,osw3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AEer": { + "alias": "AEer", + "code": "AEer", + "comments": "Keeper - Entangling Roots", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 9, + "HeroDur1": 3, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 600, + "DataA1": 15, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEer", + "targs2": "ground,enemy,neutral,organic", + "Cast2": "-", + "Dur2": 17, + "HeroDur2": 4, + "Cool2": 8, + "Cost2": 75, + "Area2": "-", + "Rng2": 600, + "DataA2": 20, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BEer", + "targs3": "ground,enemy,neutral,organic", + "Cast3": "-", + "Dur3": 25, + "HeroDur3": 6, + "Cool3": 8, + "Cost3": 75, + "Area3": "-", + "Rng3": 800, + "DataA3": 30, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BEer", + "targs4": "ground,enemy,neutral,organic", + "Cast4": "-", + "Dur4": 36, + "HeroDur4": 7, + "Cool4": 8, + "Cost4": 85, + "Area4": "-", + "Rng4": 600, + "DataA4": 25, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BEer", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "entanglingroots", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp" + }, + "AEfn": { + "alias": "AEfn", + "code": "AEfn", + "comments": "Keeper - Force of Nature", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "tree", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 100, + "Area1": 150, + "Rng1": 800, + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "efon", + "BuffID1": "BEfn", + "targs2": "tree", + "Cast2": "-", + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 20, + "Cost2": 100, + "Area2": 225, + "Rng2": 800, + "DataA2": 3, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "efon", + "BuffID2": "BEfn", + "targs3": "tree", + "Cast3": "-", + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 20, + "Cost3": 100, + "Area3": 300, + "Rng3": 800, + "DataA3": 4, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "efon", + "BuffID3": "BEfn", + "targs4": "tree", + "Cast4": "-", + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 20, + "Cost4": 100, + "Area4": 300, + "Rng4": 800, + "DataA4": 4, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "efon", + "BuffID4": "BEfn", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "forceofnature", + "skinType": "ability", + "UnitSkinID": "efon,efon,efon,efon", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp" + }, + "AEah": { + "alias": "AEah", + "code": "AEah", + "comments": "Keeper - Thorns Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.15, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEah", + "targs2": "air,ground,friend,self,vuln,invu", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": 900, + "Rng2": "-", + "DataA2": 0.3, + "DataB2": 1, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BEah", + "targs3": "air,ground,friend,self,vuln,invu", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": 900, + "Rng3": "-", + "DataA3": 0.45, + "DataB3": 1, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BEah", + "targs4": "air,ground,friend,self,vuln,invu", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": 900, + "Rng4": "-", + "DataA4": 0.3, + "DataB4": 1, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BEah", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThorns.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThorns.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ThornsAura\\ThornsAura.mdl", + "Targetattach": "origin" + }, + "AEtq": { + "alias": "AEtq", + "code": "AEtq", + "comments": "Keeper - Tranquility", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 100, + "Cost1": 125, + "Area1": 900, + "Rng1": " - ", + "DataA1": 48, + "DataB1": 1, + "DataC1": 1, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "AEtr", + "EfctID1": "XEtq", + "targs2": "air,ground,friend,self,vuln,invu,neutral", + "Cast2": "-", + "Dur2": 15, + "HeroDur2": 15, + "Cool2": 100, + "Cost2": 300, + "Area2": 900, + "Rng2": " - ", + "DataA2": 40, + "DataB2": 1, + "DataC2": "-", + "DataD2": 1, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "AEtr", + "EfctID2": "XEtq", + "targs3": "air,ground,friend,self,vuln,invu,neutral", + "Cast3": "-", + "Dur3": 15, + "HeroDur3": 15, + "Cool3": 100, + "Cost3": 300, + "Area3": 900, + "Rng3": " - ", + "DataA3": 40, + "DataB3": 1, + "DataC3": "-", + "DataD3": 1, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "AEtr", + "EfctID3": "XEtq", + "targs4": "air,ground,friend,self,vuln,invu,neutral", + "Cast4": "-", + "Dur4": 15, + "HeroDur4": 15, + "Cool4": 120, + "Cost4": 300, + "Area4": 900, + "Rng4": " - ", + "DataA4": 40, + "DataB4": 1, + "DataC4": "-", + "DataD4": 1, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "AEtr", + "EfctID4": "XEtq", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "tranquility", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTranquility.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTranquility.blp", + "Animnames": "stand,channel" + }, + "AUdr": { + "alias": "AUdr", + "code": "AUdr", + "comments": "Lich - Dark Ritual", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,player,nonhero,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 25, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.33, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,player,nonhero,vuln,invu", + "Cast2": "-", + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 20, + "Cost2": 25, + "Area2": "-", + "Rng2": 800, + "DataA2": 0.55, + "DataB2": 0, + "DataC2": 0, + "DataD2": 0, + "DataE2": 0, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,player,nonhero,vuln,invu", + "Cast3": "-", + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 20, + "Cost3": 25, + "Area3": "-", + "Rng3": 800, + "DataA3": 0.8, + "DataB3": 0, + "DataC3": 0, + "DataD3": 0, + "DataE3": 0, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,player,nonhero,vuln,invu", + "Cast4": "-", + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 15, + "Cost4": 25, + "Area4": "-", + "Rng4": 800, + "DataA4": 1, + "DataB4": 0, + "DataC4": 0, + "DataD4": 0, + "DataE4": 0, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "darkritual", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\DarkRitual\\DarkRitualTarget.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkRitual.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDarkRitual.blp", + "Casterart": "Abilities\\Spells\\Undead\\DarkRitual\\DarkRitualCaster.mdl" + }, + "AUdd": { + "alias": "AUdd", + "code": "AUdd", + "comments": "Lich - Death and Decay", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,ward", + "Cast1": 0, + "Dur1": 35, + "HeroDur1": 35, + "Cool1": 150, + "Cost1": 200, + "Area1": 300, + "Rng1": 1000, + "DataA1": 0.04, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUdd", + "EfctID1": "XUdd", + "targs2": "air,ground,structure,ward", + "Cast2": "-", + "Dur2": 35, + "HeroDur2": 35, + "Cool2": 150, + "Cost2": 250, + "Area2": 400, + "Rng2": 1000, + "DataA2": 0.04, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUdd", + "EfctID2": "XUdd", + "targs3": "air,ground,structure,ward", + "Cast3": "-", + "Dur3": 35, + "HeroDur3": 35, + "Cool3": 150, + "Cost3": 250, + "Area3": 400, + "Rng3": 1000, + "DataA3": 0.04, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUdd", + "EfctID3": "XUdd", + "targs4": "air,ground,structure,ward", + "Cast4": "-", + "Dur4": 35, + "HeroDur4": 35, + "Cool4": 150, + "Cost4": 250, + "Area4": 400, + "Rng4": 1000, + "DataA4": 0.04, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUdd", + "EfctID4": "XUdd", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "deathanddecay", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp", + "Animnames": "stand,channel", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp" + }, + "AUfa": { + "alias": "AUfa", + "code": "AUfa", + "comments": "Lich - Frost Armor", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,neutral", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 4, + "Cool1": 2, + "Cost1": 40, + "Area1": "-", + "Rng1": 800, + "DataA1": 45, + "DataB1": 3, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUfa", + "targs2": "air,ground,friend,self,neutral", + "Cast2": "-", + "Dur2": 4, + "HeroDur2": 4, + "Cool2": 2, + "Cost2": 40, + "Area2": "-", + "Rng2": 800, + "DataA2": 45, + "DataB2": 5, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUfa", + "targs3": "air,ground,friend,self,neutral", + "Cast3": "-", + "Dur3": 4, + "HeroDur3": 4, + "Cool3": 2, + "Cost3": 40, + "Area3": "-", + "Rng3": 800, + "DataA3": 45, + "DataB3": 7, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUfa", + "targs4": "air,ground,friend,self,neutral", + "Cast4": "-", + "Dur4": 4, + "HeroDur4": 4, + "Cool4": 2, + "Cost4": 40, + "Area4": "-", + "Rng4": 800, + "DataA4": 45, + "DataB4": 7, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUfa", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "frostarmor", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp" + }, + "AUfu": { + "alias": "AUfu", + "code": "AUfu", + "comments": "Lich - Frost Armor (Autocast)", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,neutral", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 2, + "Cost1": 40, + "Area1": "-", + "Rng1": 800, + "DataA1": 45, + "DataB1": 3, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUfa", + "targs2": "air,ground,friend,self,neutral", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 5, + "Cool2": 2, + "Cost2": 40, + "Area2": "-", + "Rng2": 800, + "DataA2": 45, + "DataB2": 5, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUfa", + "targs3": "air,ground,friend,self,neutral", + "Cast3": "-", + "Dur3": 7, + "HeroDur3": 7, + "Cool3": 2, + "Cost3": 40, + "Area3": "-", + "Rng3": 800, + "DataA3": 45, + "DataB3": 7, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUfa", + "targs4": "air,ground,friend,self,neutral", + "Cast4": "-", + "Dur4": 4, + "HeroDur4": 4, + "Cool4": 2, + "Cost4": 40, + "Area4": "-", + "Rng4": 800, + "DataA4": 45, + "DataB4": 7, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUfa", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "frostarmor", + "Orderon": "frostarmoron", + "Orderoff": "frostarmoroff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOff.blp" + }, + "AUfn": { + "alias": "AUfn", + "code": "AUfn", + "comments": "Lich - Frost Nova", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,air,neutral,organic", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 2, + "Cool1": 8, + "Cost1": 125, + "Area1": 200, + "Rng1": 750, + "DataA1": 50, + "DataB1": 100, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "ground,enemy,air,neutral,organic", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 3, + "Cool2": 8, + "Cost2": 125, + "Area2": 200, + "Rng2": 750, + "DataA2": 100, + "DataB2": 100, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "Bfro", + "targs3": "ground,enemy,air,neutral,organic", + "Cast3": "-", + "Dur3": 6, + "HeroDur3": 4, + "Cool3": 8, + "Cost3": 125, + "Area3": 200, + "Rng3": 750, + "DataA3": 150, + "DataB3": 100, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "Bfro", + "targs4": "ground,enemy,air,neutral,organic", + "Cast4": "-", + "Dur4": 8, + "HeroDur4": 8, + "Cool4": 8, + "Cost4": 125, + "Area4": 200, + "Rng4": 750, + "DataA4": 150, + "DataB4": 100, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "Bfro", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "frostnova", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlacier.blp", + "Effectart": "Abilities\\Spells\\Undead\\FrostNova\\FrostNovaTarget.mdl", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNGlacier.blp" + }, + "AHav": { + "alias": "AHav", + "code": "AHav", + "comments": "Mountain King - Avatar", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 180, + "Cost1": 150, + "Area1": 0.5, + "Rng1": "-", + "DataA1": 5, + "DataB1": 500, + "DataC1": 20, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 180, + "Cost2": 150, + "Area2": 0.5, + "Rng2": "-", + "DataA2": 5, + "DataB2": 500, + "DataC2": 20, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 180, + "Cost3": 150, + "Area3": 0.5, + "Rng3": "-", + "DataA3": 5, + "DataB3": 500, + "DataC3": 20, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 180, + "Cost4": 150, + "Area4": 0.5, + "Rng4": "-", + "DataA4": 5, + "DataB4": 500, + "DataC4": 20, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "avatar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAvatarOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAvatarOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAvatar.blp", + "Casterart": "Abilities\\Spells\\Human\\Avatar\\AvatarCaster.mdl" + }, + "AHbh": { + "alias": "AHbh", + "code": "AHbh", + "comments": "Mountain King - Bash", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": "-", + "Area1": 0, + "Rng1": "-", + "DataA1": 20, + "DataB1": 0, + "DataC1": 25, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "ground,air", + "Cast2": "-", + "Dur2": 2, + "HeroDur2": 1, + "Cool2": "-", + "Cost2": "-", + "Area2": 0, + "Rng2": "-", + "DataA2": 30, + "DataB2": 0, + "DataC2": 40, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BPSE", + "targs3": "ground,air", + "Cast3": "-", + "Dur3": 2, + "HeroDur3": 1, + "Cool3": "-", + "Cost3": "-", + "Area3": 0, + "Rng3": "-", + "DataA3": 40, + "DataB3": 0, + "DataC3": 55, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BPSE", + "targs4": "ground,air", + "Cast4": "-", + "Dur4": 2, + "HeroDur4": 1, + "Cool4": "-", + "Cost4": "-", + "Area4": 0, + "Rng4": "-", + "DataA4": 35, + "DataB4": 0, + "DataC4": 25, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BPSE", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBash.blp" + }, + "AHtb": { + "alias": "AHtb", + "code": "AHtb", + "comments": "Mountain King - Thunder Bolt", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,debris,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 3, + "Cool1": 9, + "Cost1": 75, + "Area1": "-", + "Rng1": 600, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "air,ground,debris,enemy,neutral,organic", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 3, + "Cool2": 9, + "Cost2": 75, + "Area2": "-", + "Rng2": 600, + "DataA2": 200, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BPSE", + "targs3": "air,ground,debris,enemy,neutral,organic", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 3, + "Cool3": 9, + "Cost3": 75, + "Area3": "-", + "Rng3": 600, + "DataA3": 310, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BPSE", + "targs4": "air,ground,debris,enemy,neutral,organic", + "Cast4": "-", + "Dur4": 5, + "HeroDur4": 3, + "Cool4": 9, + "Cost4": 75, + "Area4": "-", + "Rng4": 600, + "DataA4": 325, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BPSE", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "thunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Missileart": "Abilities\\Spells\\Human\\StormBolt\\StormBoltMissile.mdl", + "Animnames": "spell,throw" + }, + "AHtc": { + "alias": "AHtc", + "code": "AHtc", + "comments": "Mountain King - Thunder Clap", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,neutral,organic", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 3, + "Cool1": 7, + "Cost1": 90, + "Area1": 300, + "Rng1": "-", + "DataA1": 60, + "DataB1": 0, + "DataC1": 0.5, + "DataD1": 0.5, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHtc", + "targs2": "ground,neutral,organic", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 3, + "Cool2": 7, + "Cost2": 90, + "Area2": 325, + "Rng2": "-", + "DataA2": 110, + "DataB2": 0, + "DataC2": 0.5, + "DataD2": 0.5, + "DataE2": 0, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHtc", + "targs3": "ground,neutral,organic", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 3, + "Cool3": 7, + "Cost3": 90, + "Area3": 350, + "Rng3": "-", + "DataA3": 150, + "DataB3": 0, + "DataC3": 0.5, + "DataD3": 0.5, + "DataE3": 0, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHtc", + "targs4": "ground,neutral,organic", + "Cast4": "-", + "Dur4": 5, + "HeroDur4": 3, + "Cool4": 7, + "Cost4": 90, + "Area4": 400, + "Rng4": "-", + "DataA4": 175, + "DataB4": 0, + "DataC4": 0.5, + "DataD4": 0.5, + "DataE4": 1400, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHtc", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "thunderclap", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThunderclap.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThunderclap.blp", + "Casterart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderClapCaster.mdl", + "Casterattach": "origin", + "Animnames": "spell,slam" + }, + "ANfl": { + "alias": "ANfl", + "code": "ANfl", + "comments": "Sea Witch - Forked Lightning", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 0.7, + "HeroDur1": 0, + "Cool1": 11, + "Cost1": 110, + "Area1": 125, + "Rng1": 600, + "DataA1": 85, + "DataB1": 3, + "DataC1": 900, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,enemy,neutral,organic", + "Cast2": 0, + "Dur2": 0.7, + "HeroDur2": 0, + "Cool2": 11, + "Cost2": 110, + "Area2": 125, + "Rng2": 600, + "DataA2": 160, + "DataB2": 3, + "DataC2": 900, + "DataD2": 300, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,enemy,neutral,organic", + "Cast3": 0, + "Dur3": 0.7, + "HeroDur3": 0, + "Cool3": 11, + "Cost3": 110, + "Area3": 125, + "Rng3": 600, + "DataA3": 250, + "DataB3": 3, + "DataC3": 900, + "DataD3": 300, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,enemy,neutral,organic", + "Cast4": 0, + "Dur4": 0.7, + "HeroDur4": 0, + "Cool4": 11, + "Cost4": 110, + "Area4": 125, + "Rng4": 600, + "DataA4": 250, + "DataB4": 3, + "DataC4": 900, + "DataD4": 300, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "forkedlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Specialart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "FORK" + }, + "ANfa": { + "alias": "ANfa", + "code": "AHca", + "comments": "Sea Witch - Frost Arrows", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 1.5, + "Cool1": 0, + "Cost1": 10, + "Area1": "-", + "Rng1": 600, + "DataA1": 5, + "DataB1": 0.3, + "DataC1": 0.3, + "DataD1": 7, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHca,Bcsd", + "targs2": "air,ground,enemy,neutral", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 1.5, + "Cool2": "-", + "Cost2": 10, + "Area2": "-", + "Rng2": 600, + "DataA2": 10, + "DataB2": 0.5, + "DataC2": 0.5, + "DataD2": 7, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHca,Bcsd", + "targs3": "air,ground,enemy,neutral", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 1.5, + "Cool3": "-", + "Cost3": 10, + "Area3": "-", + "Rng3": 600, + "DataA3": 15, + "DataB3": 0.7, + "DataC3": 0.7, + "DataD3": 7, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHca,Bcsd", + "targs4": "air,ground,enemy,neutral", + "Cast4": "-", + "Dur4": 5, + "HeroDur4": 1.5, + "Cool4": "-", + "Cost4": 7, + "Area4": "-", + "Rng4": 600, + "DataA4": 15, + "DataB4": 0.7, + "DataC4": 0.7, + "DataD4": 7, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHca,Bcsd,Bcsi", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp", + "Missileart": "Abilities\\Spells\\Other\\FrostArrows\\NagaColdArrowMissile.mdl", + "Missilearc": "0.15", + "Animnames": "attack" + }, + "ANto": { + "alias": "ANto", + "code": "ANto", + "comments": "Sea Witch - Tornado", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 120, + "Cost1": 125, + "Area1": "-", + "Rng1": 700, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ntor", + "BuffID1": "BNto", + "targs2": "_", + "Cast2": 0, + "Dur2": 30, + "HeroDur2": 30, + "Cool2": 120, + "Cost2": 150, + "Area2": "-", + "Rng2": 700, + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ntor", + "BuffID2": "BNto", + "targs3": "_", + "Cast3": 0, + "Dur3": 30, + "HeroDur3": 30, + "Cool3": 120, + "Cost3": 150, + "Area3": "-", + "Rng3": 700, + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "ntor", + "BuffID3": "BNto", + "targs4": "_", + "Cast4": 0, + "Dur4": 30, + "HeroDur4": 30, + "Cool4": 120, + "Cost4": 150, + "Area4": "-", + "Rng4": 700, + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "ntor", + "BuffID4": "BNto", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "tornado", + "skinType": "ability", + "UnitSkinID": "ntor,ntor,ntor,ntor", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Animnames": "spell,channel" + }, + "ANms": { + "alias": "ANms", + "code": "ANms", + "comments": "Sea Witch - Mana Shield", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "self", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 10, + "Cost1": 10, + "Area1": "-", + "Rng1": 128, + "DataA1": 2, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNms", + "targs2": "self", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 10, + "Cost2": 10, + "Area2": "-", + "Rng2": 128, + "DataA2": 3, + "DataB2": 1, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNms", + "targs3": "self", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 10, + "Cost3": 10, + "Area3": "-", + "Rng3": 128, + "DataA3": 4, + "DataB3": 1, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNms", + "targs4": "self", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 10, + "Cost4": 25, + "Area4": "-", + "Rng4": 128, + "DataA4": 4, + "DataB4": 1, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNms", + "InBeta": 1, + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Orderon": "manashieldon", + "Orderoff": "manashieldoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShieldOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Effectsound": "ManaShieldCastSound" + }, + "AHad": { + "alias": "AHad", + "code": "AHad", + "comments": "Paladin - Devotion Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 2, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHad", + "targs2": "air,ground,friend,self,vuln,invu", + "Cast2": "-", + "Dur2": 4, + "HeroDur2": 2, + "Cool2": "-", + "Cost2": "-", + "Area2": 900, + "Rng2": "-", + "DataA2": 3.5, + "DataB2": 0, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHad", + "targs3": "air,ground,friend,self,vuln,invu", + "Cast3": "-", + "Dur3": 4, + "HeroDur3": 2, + "Cool3": "-", + "Cost3": "-", + "Area3": 900, + "Rng3": "-", + "DataA3": 5, + "DataB3": 0, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHad", + "targs4": "air,ground,friend,self,vuln,invu", + "Cast4": "-", + "Dur4": 4, + "HeroDur4": 2, + "Cool4": "-", + "Cost4": "-", + "Area4": 900, + "Rng4": "-", + "DataA4": 4.5, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHad", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDevotion.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Human\\DevotionAura\\DevotionAura.mdl", + "Targetattach": "origin" + }, + "AHds": { + "alias": "AHds", + "code": "AHds", + "comments": "Paladin - Divine Shield", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "invu,vuln", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 35, + "Cost1": 25, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHds", + "targs2": "invu,vuln", + "Cast2": "-", + "Dur2": 25, + "HeroDur2": 25, + "Cool2": 50, + "Cost2": 25, + "Area2": "-", + "Rng2": "-", + "DataA2": 0, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHds", + "targs3": "invu,vuln", + "Cast3": "-", + "Dur3": 35, + "HeroDur3": 35, + "Cool3": 65, + "Cost3": 25, + "Area3": "-", + "Rng3": "-", + "DataA3": 0, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHds", + "targs4": "invu,vuln", + "Cast4": "-", + "Dur4": 45, + "HeroDur4": 45, + "Cool4": 65, + "Cost4": 25, + "Area4": "-", + "Rng4": "-", + "DataA4": 0, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHds", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "divineshield", + "Unorder": "undivineshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDivineShieldOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp" + }, + "AHhb": { + "alias": "AHhb", + "code": "AHhb", + "comments": "Paladin - Holy Light", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5.5, + "Cost1": 65, + "Area1": "-", + "Rng1": 800, + "DataA1": 200, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 5.5, + "Cost2": 65, + "Area2": "-", + "Rng2": 800, + "DataA2": 400, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 5.5, + "Cost3": 65, + "Area3": "-", + "Rng3": 800, + "DataA3": 600, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 5.5, + "Cost4": 65, + "Area4": "-", + "Rng4": 800, + "DataA4": 600, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "holybolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHolyBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHolyBolt.blp", + "Targetart": "Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl" + }, + "AHre": { + "alias": "AHre", + "code": "AHre", + "comments": "Paladin - Resurrection", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead,friend", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 240, + "Cost1": 150, + "Area1": 900, + "Rng1": 400, + "DataA1": 6, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,dead,friend", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 240, + "Cost2": 150, + "Area2": 900, + "Rng2": 400, + "DataA2": 6, + "DataB2": 0, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,dead,friend", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 240, + "Cost3": 150, + "Area3": 900, + "Rng3": 400, + "DataA3": 6, + "DataB3": 0, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,dead,friend", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 240, + "Cost4": 150, + "Area4": 900, + "Rng4": 400, + "DataA4": 6, + "DataB4": 0, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl" + }, + "ANbf": { + "alias": "ANbf", + "code": "ANbf", + "comments": "Brewmaster - Breath of Fire", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,structure", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 10, + "Cost1": 75, + "Area1": 90, + "Rng1": 375, + "DataA1": 80, + "DataB1": 600, + "DataC1": 375, + "DataD1": 175, + "DataE1": 10, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNbf", + "targs2": "ground,air,structure", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 5, + "Cool2": 10, + "Cost2": 75, + "Area2": 90, + "Rng2": 375, + "DataA2": 130, + "DataB2": 900, + "DataC2": 375, + "DataD2": 175, + "DataE2": 15, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNbf", + "targs3": "ground,air,structure", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 5, + "Cool3": 10, + "Cost3": 75, + "Area3": 90, + "Rng3": 375, + "DataA3": 180, + "DataB3": 1200, + "DataC3": 375, + "DataD3": 175, + "DataE3": 25, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNbf", + "targs4": "ground,air,structure", + "Cast4": "-", + "Dur4": 5, + "HeroDur4": 5, + "Cool4": 10, + "Cost4": 75, + "Area4": 90, + "Rng4": 375, + "DataA4": 170, + "DataB4": 1360, + "DataC4": 375, + "DataD4": 175, + "DataE4": 21, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNbf", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireMissile.mdl", + "Animnames": "spell,slam" + }, + "ANdb": { + "alias": "ANdb", + "code": "ANdb", + "comments": "Brewmaster - Drunken Brawler", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": 2, + "DataC1": 0, + "DataD1": 0.07, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": 10, + "DataB2": 3, + "DataC2": 0, + "DataD2": 0.14, + "DataE2": 0, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": 10, + "DataB3": 4, + "DataC3": 0, + "DataD3": 0.21, + "DataE3": 0, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": 10, + "DataB4": 5, + "DataC4": 0, + "DataD4": 0.2, + "DataE4": 0, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrunkenDodge.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDrunkenDodge.blp" + }, + "ANdh": { + "alias": "ANdh", + "code": "ANdh", + "comments": "Brewmaster - Drunken Haze", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 5, + "Cool1": 12, + "Cost1": 70, + "Area1": 200, + "Rng1": 550, + "DataA1": 0, + "DataB1": 0.45, + "DataC1": 0.15, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNdh", + "targs2": "air,ground,enemy,organic,neutral", + "Cast2": 0, + "Dur2": 12, + "HeroDur2": 5, + "Cool2": 12, + "Cost2": 70, + "Area2": 200, + "Rng2": 550, + "DataA2": 0, + "DataB2": 0.65, + "DataC2": 0.3, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNdh", + "targs3": "air,ground,enemy,organic,neutral", + "Cast3": 0, + "Dur3": 12, + "HeroDur3": 5, + "Cool3": 12, + "Cost3": 70, + "Area3": 200, + "Rng3": 550, + "DataA3": 0, + "DataB3": 0.8, + "DataC3": 0.5, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNdh", + "targs4": "air,ground,enemy,organic,neutral", + "Cast4": 0, + "Dur4": 12, + "HeroDur4": 5, + "Cool4": 12, + "Cost4": 70, + "Area4": 200, + "Rng4": 550, + "DataA4": 0, + "DataB4": 0.8, + "DataC4": 0.5, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNdh", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "Order": "drunkenhaze", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Missileart": "Abilities\\Spells\\Other\\StrongDrink\\BrewmasterMissile.mdl", + "Missilearc": "0.15" + }, + "ANef": { + "alias": "ANef", + "code": "ANef", + "comments": "Brewmaster - Storm, Earth and Fire", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 180, + "Cost1": 150, + "Area1": 128, + "Rng1": "-", + "DataA1": "npn1,npn2,npn3", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNef", + "targs2": "_", + "Cast2": 0, + "Dur2": 45, + "HeroDur2": 45, + "Cool2": 180, + "Cost2": 150, + "Area2": 128, + "Rng2": "-", + "DataA2": "npn1,npn2,npn3", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNef", + "targs3": "_", + "Cast3": 0, + "Dur3": 45, + "HeroDur3": 45, + "Cool3": 180, + "Cost3": 150, + "Area3": 128, + "Rng3": "-", + "DataA3": "npn1,npn2,npn3", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNef", + "targs4": "_", + "Cast4": 0, + "Dur4": 45, + "HeroDur4": 45, + "Cool4": 180, + "Cost4": 150, + "Area4": 128, + "Rng4": "-", + "DataA4": "npn1,npn2,npn3", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNef", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "elementalfury", + "Missilespeed": "150", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl", + "Missileart": "Units\\Creeps\\FirePandarenBrewmaster\\ChenStormstoutFire_Missile.mdl,Units\\Creeps\\StormPandarenBrewmaster\\ChenStormstoutStorm_Missile.mdl,Units\\Creeps\\EarthPandarenBrewmaster\\ChenStormstoutEarth_Missile.mdl", + "Missilearc": "0.75", + "Effectsound": "StormEarthFireSound", + "Animnames": "spell,throw" + }, + "ANdo": { + "alias": "ANdo", + "code": "ANdo", + "comments": "Pit Lord - Doom", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 120, + "Cost1": 150, + "Area1": "-", + "Rng1": 650, + "DataA1": 40, + "DataB1": 1, + "DataC1": 120, + "DataD1": 5, + "DataE1": 0.5, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nba2", + "BuffID1": "BNdo,BNdi", + "targs2": "air,ground,nonhero,organic", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 120, + "Cost2": 125, + "Area2": "-", + "Rng2": 400, + "DataA2": 5, + "DataB2": 1, + "DataC2": 80, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nba2", + "BuffID2": "BNdo,BNdi", + "targs3": "air,ground,nonhero,organic", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 120, + "Cost3": 125, + "Area3": "-", + "Rng3": 400, + "DataA3": 5, + "DataB3": 1, + "DataC3": 80, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nba2", + "BuffID3": "BNdo,BNdi", + "targs4": "air,ground,nonhero,organic", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 120, + "Cost4": 125, + "Area4": "-", + "Rng4": 400, + "DataA4": 5, + "DataB4": 1, + "DataC4": 80, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nba2", + "BuffID4": "BNdo,BNdi", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "doom", + "skinType": "ability", + "UnitSkinID": "nba2,nba2,nba2,nba2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDoom.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDoom.blp" + }, + "ANht": { + "alias": "ANht", + "code": "ANht", + "comments": "Pit Lord - Howl of Terror", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 12, + "Cost1": 75, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.3, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNht", + "targs2": "air,ground,enemy,neutral", + "Cast2": 0, + "Dur2": 15, + "HeroDur2": 15, + "Cool2": 12, + "Cost2": 75, + "Area2": 500, + "Rng2": "-", + "DataA2": 0.4, + "DataB2": 0, + "DataC2": 0, + "DataD2": 0, + "DataE2": 0, + "DataF2": 0, + "DataG2": 0, + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNht", + "targs3": "air,ground,enemy,neutral", + "Cast3": 0, + "Dur3": 15, + "HeroDur3": 15, + "Cool3": 12, + "Cost3": 75, + "Area3": 500, + "Rng3": "-", + "DataA3": 0.5, + "DataB3": 0, + "DataC3": 0, + "DataD3": 0, + "DataE3": 0, + "DataF3": 0, + "DataG3": 0, + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNht", + "targs4": "air,ground,enemy,neutral", + "Cast4": 0, + "Dur4": 15, + "HeroDur4": 15, + "Cool4": 12, + "Cost4": 75, + "Area4": 500, + "Rng4": "-", + "DataA4": 0.45, + "DataB4": 0, + "DataC4": 0, + "DataD4": 0, + "DataE4": 0, + "DataF4": 0, + "DataG4": 0, + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNht", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "howlofterror", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Casterart": "Abilities\\Spells\\Other\\HowlOfTerror\\HowlCaster.mdl", + "Animnames": "spell,slam" + }, + "ANca": { + "alias": "ANca", + "code": "ANca", + "comments": "Pit Lord - Cleaving Attack", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": "-", + "DataA1": 0.4, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "ground,enemy,neutral,ward", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 0, + "Cost2": 0, + "Area2": 250, + "Rng2": "-", + "DataA2": 0.65, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "ground,enemy,neutral,ward", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 0, + "Cost3": 0, + "Area3": 250, + "Rng3": "-", + "DataA3": 0.9, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "ground,enemy,neutral,ward", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 0, + "Cost4": 0, + "Area4": 200, + "Rng4": "-", + "DataA4": 0.8, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCleavingAttack.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCleavingAttack.blp", + "Specialart": "Abilities\\Spells\\Other\\Cleave\\CleaveDamageTarget.mdl", + "Specialattach": "chest" + }, + "ANrf": { + "alias": "ANrf", + "code": "ANrf", + "comments": "Pit Lord - Rain of Fire", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 1, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 8, + "Cost1": 85, + "Area1": 200, + "Rng1": 800, + "DataA1": 6, + "DataB1": 25, + "DataC1": 6, + "DataD1": 0.5, + "DataE1": 5, + "DataF1": 125, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNrd,BNrf", + "EfctID1": "XErf", + "targs2": "_", + "Cast2": 1, + "Dur2": 3, + "HeroDur2": 3, + "Cool2": 8, + "Cost2": 85, + "Area2": 200, + "Rng2": 800, + "DataA2": 8, + "DataB2": 30, + "DataC2": 7, + "DataD2": 0.5, + "DataE2": 10, + "DataF2": 150, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNrd,BNrf", + "EfctID2": "XErf", + "targs3": "_", + "Cast3": 1, + "Dur3": 3, + "HeroDur3": 3, + "Cool3": 8, + "Cost3": 85, + "Area3": 200, + "Rng3": 800, + "DataA3": 10, + "DataB3": 35, + "DataC3": 10, + "DataD3": 0.5, + "DataE3": 15, + "DataF3": 175, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNrd,BNrf", + "EfctID3": "XErf", + "targs4": "_", + "Cast4": 1, + "Dur4": 3, + "HeroDur4": 3, + "Cool4": 8, + "Cost4": 85, + "Area4": 200, + "Rng4": 800, + "DataA4": 10, + "DataB4": 35, + "DataC4": 10, + "DataD4": 0.5, + "DataE4": 15, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNrd,BNrf", + "EfctID4": "XErf", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "rainoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Animnames": "spell,looping" + }, + "AHfa": { + "alias": "AHfa", + "code": "AHfa", + "comments": "Priestess - Searing Arrows", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 8, + "Area1": "-", + "Rng1": 600, + "DataA1": 12, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,structure,enemy,neutral", + "Cast2": "-", + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 0, + "Cost2": 8, + "Area2": "-", + "Rng2": 700, + "DataA2": 24, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,structure,enemy,neutral", + "Cast3": "-", + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 0, + "Cost3": 8, + "Area3": "-", + "Rng3": 700, + "DataA3": 48, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,structure,enemy,neutral", + "Cast4": "-", + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 0, + "Cost4": 5, + "Area4": "-", + "Rng4": 700, + "DataA4": 30, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "flamingarrows", + "Unorder": "unflamingarrows", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrows.blp", + "Missileart": "Abilities\\Weapons\\SearingArrow\\SearingArrowMissile.mdl", + "Animnames": "attack" + }, + "AEst": { + "alias": "AEst", + "code": "AEst", + "comments": "Priestess - Scout", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 50, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nowl", + "BuffID1": "BEst", + "targs2": "_", + "Cast2": "-", + "Dur2": 90, + "HeroDur2": 90, + "Cool2": 20, + "Cost2": 50, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "now2", + "BuffID2": "BEst", + "targs3": "_", + "Cast3": "-", + "Dur3": 120, + "HeroDur3": 120, + "Cool3": 20, + "Cost3": 50, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "now3", + "BuffID3": "BEst", + "targs4": "_", + "Cast4": "-", + "Dur4": 120, + "HeroDur4": 120, + "Cool4": 20, + "Cost4": 50, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "now3", + "BuffID4": "BEst", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "MissileSpeed": "650", + "Order": "scout", + "skinType": "ability", + "UnitSkinID": "nowl,now2,now3,now3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScout.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNScout.blp", + "Missileart": "Units\\NightElf\\Owl\\Owl.mdl" + }, + "AEsf": { + "alias": "AEsf", + "code": "AEsf", + "comments": "Priestess - Starfall", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 120, + "Cost1": 150, + "Area1": 1000, + "Rng1": " - ", + "DataA1": 60, + "DataB1": 1.5, + "DataC1": 0.35, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "AEsd", + "EfctID1": "XEsf", + "targs2": "air,ground,structure,enemy,neutral", + "Cast2": "-", + "Dur2": 30, + "HeroDur2": 30, + "Cool2": 120, + "Cost2": 300, + "Area2": 900, + "Rng2": " - ", + "DataA2": 30, + "DataB2": 2, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "AEsd", + "EfctID2": "XEsf", + "targs3": "air,ground,structure,enemy,neutral", + "Cast3": "-", + "Dur3": 30, + "HeroDur3": 30, + "Cool3": 120, + "Cost3": 300, + "Area3": 900, + "Rng3": " - ", + "DataA3": 30, + "DataB3": 2, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "AEsd", + "EfctID3": "XEsf", + "targs4": "air,ground,structure,enemy,neutral", + "Cast4": "-", + "Dur4": 30, + "HeroDur4": 30, + "Cool4": 120, + "Cost4": 300, + "Area4": 900, + "Rng4": " - ", + "DataA4": 30, + "DataB4": 2, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "AEsd", + "EfctID4": "XEsf", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "starfall", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Animnames": "spell,looping" + }, + "AEar": { + "alias": "AEar", + "code": "AEar", + "comments": "Priestess - Trueshot Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": " - ", + "Area1": 900, + "Rng1": " - ", + "DataA1": 0.1, + "DataB1": 0, + "DataC1": 1, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEar", + "targs2": "air,ground,friend,self,vuln,invu", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": 900, + "Rng2": " - ", + "DataA2": 0.2, + "DataB2": 0, + "DataC2": 1, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BEar", + "targs3": "air,ground,friend,self,vuln,invu", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": 900, + "Rng3": " - ", + "DataA3": 0.3, + "DataB3": 0, + "DataC3": 1, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BEar", + "targs4": "air,ground,friend,self,vuln,invu", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": 900, + "Rng4": " - ", + "DataA4": 0.3, + "DataB4": 0, + "DataC4": 1, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BEar", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNTrueShot.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TrueshotAura\\TrueshotAura.mdl", + "Targetattach": "origin" + }, + "AOae": { + "alias": "AOae", + "code": "AOae", + "comments": "Chieftain - Endurance Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 0.05, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOae", + "targs2": "air,ground,friend,self,vuln,invu", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": 900, + "Rng2": "-", + "DataA2": 0.15, + "DataB2": 0.1, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOae", + "targs3": "air,ground,friend,self,vuln,invu", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": 900, + "Rng3": "-", + "DataA3": 0.2, + "DataB3": 0.15, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOae", + "targs4": "air,ground,friend,self,vuln,invu", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": 900, + "Rng4": "-", + "DataA4": 0.3, + "DataB4": 0.15, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOae", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCommand.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "AOre": { + "alias": "AOre", + "code": "AOre", + "comments": "Chieftain - Reincarnation", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 3, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 240, + "Cost1": " - ", + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XOre", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 240, + "Cost2": " - ", + "Area2": "-", + "Rng2": "-", + "DataA2": 5, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "EfctID2": "XOre", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 240, + "Cost3": " - ", + "Area3": "-", + "Rng3": "-", + "DataA3": 5, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "EfctID3": "XOre", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 240, + "Cost4": " - ", + "Area4": "-", + "Rng4": "-", + "DataA4": 5, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "EfctID4": "XOre", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "AOsh": { + "alias": "AOsh", + "code": "AOsh", + "comments": "Chieftain - Shock Wave", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 90, + "Area1": 125, + "Rng1": 700, + "DataA1": 75, + "DataB1": 900, + "DataC1": 800, + "DataD1": 125, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOsh", + "targs2": "ground,structure", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 8, + "Cost2": 90, + "Area2": 125, + "Rng2": 700, + "DataA2": 130, + "DataB2": 1560, + "DataC2": 800, + "DataD2": 125, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOsh", + "targs3": "ground,structure", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 8, + "Cost3": 90, + "Area3": 125, + "Rng3": 700, + "DataA3": 200, + "DataB3": 2400, + "DataC3": 800, + "DataD3": 125, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOsh", + "targs4": "ground,structure", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 8, + "Cost4": 100, + "Area4": 125, + "Rng4": 700, + "DataA4": 200, + "DataB4": 2400, + "DataC4": 800, + "DataD4": 125, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOsh", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "AOws": { + "alias": "AOws", + "code": "AOws", + "comments": "Chieftain - War Stomp", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,organic", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 2, + "Cool1": 7, + "Cost1": 90, + "Area1": 250, + "Rng1": "-", + "DataA1": 30, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "ground,organic", + "Cast2": "-", + "Dur2": 4, + "HeroDur2": 2.5, + "Cool2": 7, + "Cost2": 90, + "Area2": 300, + "Rng2": "-", + "DataA2": 60, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BPSE", + "targs3": "ground,organic", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 3, + "Cool3": 7, + "Cost3": 90, + "Area3": 350, + "Rng3": "-", + "DataA3": 90, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BPSE", + "targs4": "ground,organic", + "Cast4": "-", + "Dur4": 5, + "HeroDur4": 4, + "Cool4": 7, + "Cost4": 90, + "Area4": 350, + "Rng4": "-", + "DataA4": 90, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BPSE", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "spell,slam" + }, + "AOhw": { + "alias": "AOhw", + "code": "AOhw", + "comments": "Shadow Hunter - Healing Wave", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 90, + "Area1": 500, + "Rng1": 700, + "DataA1": 130, + "DataB1": 3, + "DataC1": 0.25, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,friend,self,vuln,invu,organic", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 9, + "Cost2": 90, + "Area2": 500, + "Rng2": 700, + "DataA2": 215, + "DataB2": 4, + "DataC2": 0.25, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,friend,self,vuln,invu,organic", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 9, + "Cost3": 90, + "Area3": 500, + "Rng3": 700, + "DataA3": 300, + "DataB3": 5, + "DataC3": 0.25, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,friend,self,vuln,invu,organic", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 9, + "Cost4": 90, + "Area4": 500, + "Rng4": 700, + "DataA4": 300, + "DataB4": 5, + "DataC4": 0.25, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "healingwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Targetart": "Abilities\\Spells\\Orc\\HealingWave\\HealingWaveTarget.mdl", + "Animnames": "spell,throw", + "LightningEffect": "HWPB,HWSB" + }, + "AOhx": { + "alias": "AOhx", + "code": "AOhx", + "comments": "Shadow Hunter - Hex", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 4, + "Cool1": 7, + "Cost1": 70, + "Area1": "-", + "Rng1": 800, + "DataA1": 99, + "DataB1": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC1": "nalb,nvul,nsno", + "DataD1": "nsha,npng", + "DataE1": "nshw,npnw", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOhx", + "targs2": "air,ground,enemy,organic,neutral", + "Cast2": 0, + "Dur2": 30, + "HeroDur2": 5, + "Cool2": 7, + "Cost2": 70, + "Area2": "-", + "Rng2": 800, + "DataA2": 99, + "DataB2": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC2": "nalb,nvul,nsno", + "DataD2": "nsha,npng", + "DataE2": "nshw,npnw", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOhx", + "targs3": "air,ground,enemy,organic,neutral", + "Cast3": 0, + "Dur3": 45, + "HeroDur3": 6, + "Cool3": 7, + "Cost3": 70, + "Area3": "-", + "Rng3": 800, + "DataA3": 99, + "DataB3": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC3": "nalb,nvul,nsno", + "DataD3": "nsha,npng", + "DataE3": "nshw,npnw", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOhx", + "targs4": "air,ground,enemy,organic,neutral", + "Cast4": 0, + "Dur4": 45, + "HeroDur4": 6, + "Cool4": 7, + "Cost4": 70, + "Area4": "-", + "Rng4": 800, + "DataA4": 99, + "DataB4": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC4": "nalb,nvul,nsno", + "DataD4": "nsha,npng", + "DataE4": "nshw,npnw", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOhx", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "hex", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "AOsw": { + "alias": "AOsw", + "code": "AOwd", + "comments": "Shadow Hunter - Serpent Ward", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 6.5, + "Cost1": 30, + "Area1": "-", + "Rng1": 500, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "osp1", + "BuffID1": "BOwd", + "targs2": "_", + "Cast2": 0, + "Dur2": 40, + "HeroDur2": 40, + "Cool2": 6.5, + "Cost2": 30, + "Area2": "-", + "Rng2": 500, + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "osp2", + "BuffID2": "BOwd", + "targs3": "_", + "Cast3": 0, + "Dur3": 40, + "HeroDur3": 40, + "Cool3": 6.5, + "Cost3": 30, + "Area3": "-", + "Rng3": 500, + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "osp3", + "BuffID3": "BOwd", + "targs4": "_", + "Cast4": 0, + "Dur4": 40, + "HeroDur4": 40, + "Cool4": 6.5, + "Cost4": 30, + "Area4": "-", + "Rng4": 500, + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "osp3", + "BuffID4": "BOwd", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "ward", + "skinType": "ability", + "UnitSkinID": "osp1,osp2,osp3,osp3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp" + }, + "AOvd": { + "alias": "AOvd", + "code": "AOvd", + "comments": "Shadow Hunter - Voodooo", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 180, + "Cost1": 150, + "Area1": 800, + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOvd,BOvc", + "targs2": "air,ground,friend,vuln,invu", + "Cast2": 0, + "Dur2": 30, + "HeroDur2": 30, + "Cool2": 180, + "Cost2": 150, + "Area2": 800, + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOvd,BOvc", + "targs3": "air,ground,friend,vuln,invu", + "Cast3": 0, + "Dur3": 30, + "HeroDur3": 30, + "Cool3": 180, + "Cost3": 150, + "Area3": 800, + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOvd,BOvc", + "targs4": "air,ground,friend,vuln,invu", + "Cast4": 0, + "Dur4": 30, + "HeroDur4": 30, + "Cool4": 180, + "Cost4": 150, + "Area4": 800, + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOvd,BOvc", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "voodoo", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBigBadVoodooSpell.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBigBadVoodooSpell.blp", + "Animnames": "stand,channel" + }, + "AEbl": { + "alias": "AEbl", + "code": "AEbl", + "comments": "Warden - Blink", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.33, + "HeroDur1": 0, + "Cool1": 10, + "Cost1": 50, + "Area1": "-", + "Rng1": 99999, + "DataA1": 1000, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": 0.33, + "HeroDur2": "-", + "Cool2": 5, + "Cost2": 10, + "Area2": "-", + "Rng2": 99999, + "DataA2": 1075, + "DataB2": 200, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": 0.33, + "HeroDur3": "-", + "Cool3": 2.5, + "Cost3": 10, + "Area3": "-", + "Rng3": 99999, + "DataA3": 1150, + "DataB3": 200, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": 0.33, + "HeroDur4": "-", + "Cool4": 4, + "Cost4": 10, + "Area4": "-", + "Rng4": 99999, + "DataA4": 1150, + "DataB4": 200, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "blink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlink.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBlink.blp", + "Areaeffectart": "Abilities\\Spells\\NightElf\\Blink\\BlinkTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Blink\\BlinkCaster.mdl", + "Animnames": "spell,throw" + }, + "AEfk": { + "alias": "AEfk", + "code": "AEfk", + "comments": "Warden - Fan of Knives", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 100, + "Area1": 400, + "Rng1": "-", + "DataA1": 70, + "DataB1": 420, + "DataC1": 0, + "DataD1": 100, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,enemy,organic", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 9, + "Cost2": 100, + "Area2": 450, + "Rng2": "-", + "DataA2": 130, + "DataB2": 780, + "DataC2": 0, + "DataD2": 100, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,enemy,organic", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 9, + "Cost3": 100, + "Area3": 475, + "Rng3": "-", + "DataA3": 200, + "DataB3": 1200, + "DataC3": 0, + "DataD3": 100, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,enemy,organic", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 9, + "Cost4": 100, + "Area4": 475, + "Rng4": "-", + "DataA4": 180, + "DataB4": 950, + "DataC4": 0, + "DataD4": 100, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "fanofknives", + "Missilespeed": "700", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFanOfKnives.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFanOfKnives.blp", + "Effectart": "Abilities\\Spells\\NightElf\\FanOfKnives\\FanOfKnivesCaster.mdl", + "Missileart": "Abilities\\Spells\\NightElf\\FanOfKnives\\FanOfKnivesMissile.mdl", + "MissileArc": "0.10", + "Animnames": "spell,slam" + }, + "AEsh": { + "alias": "AEsh", + "code": "AEsh", + "comments": "Warden - Shadow Strike", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,enemy,neutral,organic", + "Cast1": 3, + "Dur1": 15.1, + "HeroDur1": 15.1, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 300, + "DataA1": 10, + "DataB1": 0.5, + "DataC1": 0, + "DataD1": 3, + "DataE1": 75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEsh", + "targs2": "ground,air,enemy,neutral,organic", + "Cast2": 3, + "Dur2": 15.1, + "HeroDur2": 15.1, + "Cool2": 8, + "Cost2": 75, + "Area2": "-", + "Rng2": 300, + "DataA2": 30, + "DataB2": 0.5, + "DataC2": 0, + "DataD2": 3, + "DataE2": 150, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BEsh", + "targs3": "ground,air,enemy,neutral,organic", + "Cast3": 3, + "Dur3": 15.1, + "HeroDur3": 15.1, + "Cool3": 8, + "Cost3": 75, + "Area3": "-", + "Rng3": 300, + "DataA3": 45, + "DataB3": 0.5, + "DataC3": 0, + "DataD3": 3, + "DataE3": 225, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BEsh", + "targs4": "ground,air,enemy,neutral,organic", + "Cast4": 3, + "Dur4": 15.1, + "HeroDur4": 15.1, + "Cool4": 8, + "Cost4": 65, + "Area4": "-", + "Rng4": 300, + "DataA4": 45, + "DataB4": 0.5, + "DataC4": 0, + "DataD4": 3, + "DataE4": 225, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BEsh", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "1200", + "MissileHoming": "1", + "Order": "shadowstrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Missileart": "Abilities\\Spells\\NightElf\\shadowstrike\\ShadowStrikeMissile.mdl", + "MissileArc": "0.0" + }, + "AEsv": { + "alias": "AEsv", + "code": "AEsv", + "comments": "Warden - Spirit of Vengeance", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 180, + "Cool1": 180, + "Cost1": 150, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "espv", + "BuffID1": "BEsv", + "targs2": "_", + "Cast2": 0, + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 20, + "Cost2": 125, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "espv", + "BuffID2": "BEsv", + "targs3": "_", + "Cast3": 0, + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 20, + "Cost3": 125, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "espv", + "BuffID3": "BEsv", + "targs4": "_", + "Cast4": 0, + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 20, + "Cost4": 125, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "espv", + "BuffID4": "BEsv", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "700", + "Order": "spiritofvengeance", + "skinType": "ability", + "UnitSkinID": "espv,espv,espv,espv", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritOfVengeance.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSpiritOfVengeance.blp", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceBirthMissile.mdl", + "MissileArc": "0.50", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "ANab": { + "alias": "ANab", + "code": "ANab", + "comments": "Alchemist - Acid Bomb", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic,air", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 12, + "Cost1": 75, + "Area1": 200, + "Rng1": 700, + "DataA1": 0, + "DataB1": 0, + "DataC1": 3, + "DataD1": 5, + "DataE1": 3, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNab", + "targs2": "ground,enemy,neutral,organic,air", + "Cast2": 0, + "Dur2": 15, + "HeroDur2": 15, + "Cool2": 12, + "Cost2": 75, + "Area2": 200, + "Rng2": 700, + "DataA2": 0, + "DataB2": 0, + "DataC2": 4, + "DataD2": 10, + "DataE2": 6, + "DataF2": 1, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNab", + "targs3": "ground,enemy,neutral,organic,air", + "Cast3": 0, + "Dur3": 15, + "HeroDur3": 15, + "Cool3": 12, + "Cost3": 75, + "Area3": 200, + "Rng3": 700, + "DataA3": 0, + "DataB3": 0, + "DataC3": 5, + "DataD3": 17, + "DataE3": 11, + "DataF3": 1, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNab", + "targs4": "ground,enemy,neutral,organic,air", + "Cast4": 0, + "Dur4": 15, + "HeroDur4": 15, + "Cool4": 12, + "Cost4": 75, + "Area4": 200, + "Rng4": 700, + "DataA4": 0, + "DataB4": 0, + "DataC4": 4, + "DataD4": 17, + "DataE4": 11, + "DataF4": 1, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNab", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "700", + "MissileHoming": "1", + "order": "acidbomb", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAcidBomb.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAcidBomb.blp", + "Missileart": "Abilities\\Spells\\Other\\AcidBomb\\BottleMissile.mdl", + "Missilearc": "0.4", + "Animnames": "Attack,two,Spell" + }, + "ANcr": { + "alias": "ANcr", + "code": "ANcr", + "comments": "Alchemist - Chemical Rage", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "self", + "Cast1": 0, + "Dur1": 0.35, + "HeroDur1": 15, + "Cool1": 30, + "Cost1": 25, + "Area1": "-", + "Rng1": "-", + "DataA1": "Nalc", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": 0.5, + "DataF1": 0.25, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Nalm", + "BuffID1": "BNcr", + "targs2": "_", + "Cast2": 0, + "Dur2": 0.35, + "HeroDur2": 15, + "Cool2": 30, + "Cost2": 25, + "Area2": "-", + "Rng2": "-", + "DataA2": "Nalc", + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": 0.5, + "DataF2": 0.75, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Nal2", + "BuffID2": "BNcr", + "targs3": "_", + "Cast3": 0, + "Dur3": 0.35, + "HeroDur3": 15, + "Cool3": 30, + "Cost3": 25, + "Area3": "-", + "Rng3": "-", + "DataA3": "Nalc", + "DataB3": 1, + "DataC3": 0, + "DataD3": "-", + "DataE3": 0.5, + "DataF3": 1.25, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Nal3", + "BuffID3": "BNcr", + "targs4": "_", + "Cast4": 0, + "Dur4": 0.35, + "HeroDur4": 15, + "Cool4": 30, + "Cost4": 25, + "Area4": "-", + "Rng4": "-", + "DataA4": "Nalc", + "DataB4": 1, + "DataC4": 0, + "DataD4": "-", + "DataE4": 0.5, + "DataF4": 1.25, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Nal3", + "BuffID4": "BNcr", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "order": "chemicalrage", + "skinType": "ability", + "UnitSkinID": "Nalm,Nal2,Nal3,Nal3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChemicalRage.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNChemicalRage.blp" + }, + "ANhs": { + "alias": "ANhs", + "code": "ANhs", + "comments": "Alchemist - Healing Spray", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "friend,self,ground,air,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 6, + "Cost1": 75, + "Area1": 250, + "Rng1": 800, + "DataA1": 30, + "DataB1": 1, + "DataC1": 6, + "DataD1": 280, + "DataE1": 1, + "DataF1": 3, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNhs", + "EfctID1": "XNhs", + "targs2": "friend,self,ground,air,organic,vuln,invu", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 6, + "Cost2": 75, + "Area2": 250, + "Rng2": 800, + "DataA2": 45, + "DataB2": 1, + "DataC2": 6, + "DataD2": 385, + "DataE2": 1, + "DataF2": 4, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNhs", + "EfctID2": "XNhs", + "targs3": "friend,self,ground,air,organic,vuln,invu", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 6, + "Cost3": 75, + "Area3": 250, + "Rng3": 800, + "DataA3": 60, + "DataB3": 1, + "DataC3": 6, + "DataD3": 490, + "DataE3": 1, + "DataF3": 5, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNhs", + "EfctID3": "XNhs", + "targs4": "friend,self,ground,air,organic,vuln,invu", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 6, + "Cost4": 75, + "Area4": 200, + "Rng4": 800, + "DataA4": 70, + "DataB4": 1, + "DataC4": 6, + "DataD4": 490, + "DataE4": 1, + "DataF4": 10, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNhs", + "EfctID4": "XNhs", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "700", + "Order": "healingspray", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingSpray.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHealingSpray.blp", + "Missileart": "Abilities\\Spells\\Other\\HealingSpray\\HealBottleMissile.mdl", + "Missilearc": "0.4", + "Animnames": "spell,looping" + }, + "ANtm": { + "alias": "ANtm", + "code": "ANtm", + "comments": "Alchemist - Transmute", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,nonhero", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 45, + "Cost1": 150, + "Area1": "-", + "Rng1": 650, + "DataA1": 1, + "DataB1": 0, + "DataC1": 5, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNtm", + "targs2": "air,ground,enemy,neutral", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 45, + "Cost2": 200, + "Area2": "-", + "Rng2": 200, + "DataA2": 2, + "DataB2": 0, + "DataC2": 5, + "DataD2": 1, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNtm", + "targs3": "air,ground,enemy,neutral", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 45, + "Cost3": 200, + "Area3": "-", + "Rng3": 200, + "DataA3": 2, + "DataB3": 0, + "DataC3": 5, + "DataD3": 1, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNtm", + "targs4": "air,ground,enemy,neutral", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 45, + "Cost4": 200, + "Area4": "-", + "Rng4": 200, + "DataA4": 2, + "DataB4": 0, + "DataC4": 5, + "DataD4": 1, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNtm", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "700", + "MissileHoming": "1", + "order": "transmute", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Missileart": "Abilities\\Spells\\Other\\Transmute\\GoldBottleMissile.mdl", + "Missilearc": "0.4", + "Animnames": "Attack,two,Spell" + }, + "ANeg": { + "alias": "ANeg", + "code": "ANeg", + "comments": "Tinkerer - Engineering Upgrade", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 2, + "DataC1": "ANsy,ANs1", + "DataD1": "ANcs,ANc1", + "DataE1": "ANrg,ANg1", + "DataF1": "ANde,ANd1", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNeg", + "targs2": "_", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 0, + "Cost2": 0, + "Area2": "-", + "Rng2": "-", + "DataA2": 0.2, + "DataB2": 4, + "DataC2": "ANs1,ANs2", + "DataD2": "ANc1,ANc2", + "DataE2": "ANg1,ANg2", + "DataF2": "ANd1,ANd2", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNeg", + "targs3": "_", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 0, + "Cost3": 0, + "Area3": "-", + "Rng3": "-", + "DataA3": 0.3, + "DataB3": 6, + "DataC3": "ANs2,ANs3", + "DataD3": "ANc2,ANc3", + "DataE3": "ANg2,ANg3", + "DataF3": "ANd2,ANd3", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNeg", + "targs4": "_", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 0, + "Cost4": 0, + "Area4": "-", + "Rng4": "-", + "DataA4": 0.3, + "DataB4": 9, + "DataC4": "ANs2,ANs3", + "DataD4": "ANc2,ANc3", + "DataE4": "ANg2,ANg3", + "DataF4": "ANd2,ANd3", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNeg", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "engineeringupgrade", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\PASBTNEngineeringUpgrade.blp", + "Art:hd": "ReplaceableTextures\\PassiveButtons\\PASBTNEngineeringUpgrade.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEngineeringUpgrade.blp" + }, + "ANcs": { + "alias": "ANcs", + "code": "ANcs", + "comments": "Tinkerer - Cluster Rockets (Level 0)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,structure", + "Cast1": 0, + "Dur1": 1.01, + "HeroDur1": 1.01, + "Cool1": 6, + "Cost1": 70, + "Area1": 200, + "Rng1": 800, + "DataA1": 11.25, + "DataB1": 0.25, + "DataC1": 6, + "DataD1": 200, + "DataE1": 1, + "DataF1": 1.01, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNcs", + "EfctID1": "XNcs", + "targs2": "air,ground,enemy,neutral,structure", + "Cast2": 0, + "Dur2": 1.01, + "HeroDur2": 1.01, + "Cool2": 6, + "Cost2": 70, + "Area2": 200, + "Rng2": 800, + "DataA2": 19.75, + "DataB2": 0.25, + "DataC2": 12, + "DataD2": 250, + "DataE2": 1, + "DataF2": 1.01, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNcs", + "EfctID2": "XNcs", + "targs3": "air,ground,enemy,neutral,structure", + "Cast3": 0, + "Dur3": 1.01, + "HeroDur3": 1.01, + "Cool3": 6, + "Cost3": 70, + "Area3": 200, + "Rng3": 800, + "DataA3": 30.5, + "DataB3": 0.25, + "DataC3": 18, + "DataD3": 300, + "DataE3": 1, + "DataF3": 1.01, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNcs", + "EfctID3": "XNcs", + "targs4": "air,ground,enemy,neutral,structure", + "Cast4": 0, + "Dur4": 1.01, + "HeroDur4": 1.01, + "Cool4": 6, + "Cost4": 70, + "Area4": 200, + "Rng4": 800, + "DataA4": 27.5, + "DataB4": 0.25, + "DataC4": 24, + "DataD4": 300, + "DataE4": 1, + "DataF4": 1.01, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNcs", + "EfctID4": "XNcs", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANc1": { + "alias": "ANc1", + "code": "ANcs", + "comments": "Tinkerer - Cluster Rockets (Level 1)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,structure", + "Cast1": 0, + "Dur1": 1.01, + "HeroDur1": 1.01, + "Cool1": 6, + "Cost1": 70, + "Area1": 230, + "Rng1": 800, + "DataA1": 11.25, + "DataB1": 0.25, + "DataC1": 6, + "DataD1": 200, + "DataE1": 1, + "DataF1": 1.01, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNcs", + "EfctID1": "XNcs", + "targs2": "air,ground,enemy,neutral,structure", + "Cast2": 0, + "Dur2": 1.01, + "HeroDur2": 1.01, + "Cool2": 6, + "Cost2": 70, + "Area2": 230, + "Rng2": 800, + "DataA2": 19.75, + "DataB2": 0.25, + "DataC2": 12, + "DataD2": 250, + "DataE2": 1, + "DataF2": 1.01, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNcs", + "EfctID2": "XNcs", + "targs3": "air,ground,enemy,neutral,structure", + "Cast3": 0, + "Dur3": 1.01, + "HeroDur3": 1.01, + "Cool3": 6, + "Cost3": 70, + "Area3": 230, + "Rng3": 800, + "DataA3": 30.5, + "DataB3": 0.25, + "DataC3": 18, + "DataD3": 300, + "DataE3": 1, + "DataF3": 1.01, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNcs", + "EfctID3": "XNcs", + "targs4": "air,ground,enemy,neutral,structure", + "Cast4": 0, + "Dur4": 1.01, + "HeroDur4": 1.01, + "Cool4": 6, + "Cost4": 70, + "Area4": 230, + "Rng4": 800, + "DataA4": 27.5, + "DataB4": 0.25, + "DataC4": 24, + "DataD4": 300, + "DataE4": 1, + "DataF4": 1.01, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNcs", + "EfctID4": "XNcs", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANc2": { + "alias": "ANc2", + "code": "ANcs", + "comments": "Tinkerer - Cluster Rockets (Level 2)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,structure", + "Cast1": 0, + "Dur1": 1.01, + "HeroDur1": 1.01, + "Cool1": 6, + "Cost1": 70, + "Area1": 260, + "Rng1": 800, + "DataA1": 11.25, + "DataB1": 0.25, + "DataC1": 6, + "DataD1": 200, + "DataE1": 1, + "DataF1": 1.01, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNcs", + "EfctID1": "XNcs", + "targs2": "air,ground,enemy,neutral,structure", + "Cast2": 0, + "Dur2": 1.01, + "HeroDur2": 1.01, + "Cool2": 6, + "Cost2": 70, + "Area2": 260, + "Rng2": 800, + "DataA2": 19.75, + "DataB2": 0.25, + "DataC2": 12, + "DataD2": 250, + "DataE2": 1, + "DataF2": 1.01, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNcs", + "EfctID2": "XNcs", + "targs3": "air,ground,enemy,neutral,structure", + "Cast3": 0, + "Dur3": 1.01, + "HeroDur3": 1.01, + "Cool3": 6, + "Cost3": 70, + "Area3": 260, + "Rng3": 800, + "DataA3": 30.5, + "DataB3": 0.25, + "DataC3": 18, + "DataD3": 300, + "DataE3": 1, + "DataF3": 1.01, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNcs", + "EfctID3": "XNcs", + "targs4": "air,ground,enemy,neutral,structure", + "Cast4": 0, + "Dur4": 1.01, + "HeroDur4": 1.01, + "Cool4": 6, + "Cost4": 70, + "Area4": 260, + "Rng4": 800, + "DataA4": 27.5, + "DataB4": 0.25, + "DataC4": 24, + "DataD4": 300, + "DataE4": 1, + "DataF4": 1.01, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNcs", + "EfctID4": "XNcs", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANc3": { + "alias": "ANc3", + "code": "ANcs", + "comments": "Tinkerer - Cluster Rockets (Level 3)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,structure", + "Cast1": 0, + "Dur1": 1.01, + "HeroDur1": 1.01, + "Cool1": 6, + "Cost1": 70, + "Area1": 290, + "Rng1": 800, + "DataA1": 11.25, + "DataB1": 0.25, + "DataC1": 6, + "DataD1": 200, + "DataE1": 1, + "DataF1": 1.01, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNcs", + "EfctID1": "XNcs", + "targs2": "air,ground,enemy,neutral,structure", + "Cast2": 0, + "Dur2": 1.01, + "HeroDur2": 1.01, + "Cool2": 6, + "Cost2": 70, + "Area2": 290, + "Rng2": 800, + "DataA2": 19.75, + "DataB2": 0.25, + "DataC2": 12, + "DataD2": 250, + "DataE2": 1, + "DataF2": 1.01, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNcs", + "EfctID2": "XNcs", + "targs3": "air,ground,enemy,neutral,structure", + "Cast3": 0, + "Dur3": 1.01, + "HeroDur3": 1.01, + "Cool3": 6, + "Cost3": 70, + "Area3": 290, + "Rng3": 800, + "DataA3": 30.5, + "DataB3": 0.25, + "DataC3": 18, + "DataD3": 300, + "DataE3": 1, + "DataF3": 1.01, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNcs", + "EfctID3": "XNcs", + "targs4": "air,ground,enemy,neutral,structure", + "Cast4": 0, + "Dur4": 1.01, + "HeroDur4": 1.01, + "Cool4": 6, + "Cost4": 70, + "Area4": 290, + "Rng4": 800, + "DataA4": 27.5, + "DataB4": 0.25, + "DataC4": 24, + "DataD4": 300, + "DataE4": 1, + "DataF4": 1.01, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNcs", + "EfctID4": "XNcs", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANrg": { + "alias": "ANrg", + "code": "ANrg", + "comments": "Tinkerer - Robo-Goblin (Level 0)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 25, + "Area1": "-", + "Rng1": "-", + "DataA1": "Ntin", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": 5, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Nrob", + "targs2": "_", + "Cast2": 0, + "Dur2": 1.5, + "HeroDur2": 0, + "Cool2": 1, + "Cost2": 25, + "Area2": "-", + "Rng2": "-", + "DataA2": "Ntin", + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": 7, + "DataF2": 3, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Nrob", + "targs3": "_", + "Cast3": 0, + "Dur3": 1.5, + "HeroDur3": 0, + "Cool3": 1, + "Cost3": 25, + "Area3": "-", + "Rng3": "-", + "DataA3": "Ntin", + "DataB3": 1, + "DataC3": 0, + "DataD3": "-", + "DataE3": 7, + "DataF3": 3, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Nrob", + "targs4": "_", + "Cast4": 0, + "Dur4": 1.5, + "HeroDur4": 0, + "Cool4": 1, + "Cost4": 25, + "Area4": "-", + "Rng4": "-", + "DataA4": "Ntin", + "DataB4": 1, + "DataC4": 0, + "DataD4": "-", + "DataE4": 7, + "DataF4": 3, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Nrob", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANg1": { + "alias": "ANg1", + "code": "ANrg", + "comments": "Tinkerer - Robo-Goblin (Level 1)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 25, + "Area1": "-", + "Rng1": "-", + "DataA1": "Ntin", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": 7, + "DataF1": 2, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Nrob", + "targs2": "_", + "Cast2": 0, + "Dur2": 1.5, + "HeroDur2": 0, + "Cool2": 1, + "Cost2": 25, + "Area2": "-", + "Rng2": "-", + "DataA2": "Ntin", + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": 10, + "DataF2": 4, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Nrob", + "targs3": "_", + "Cast3": 0, + "Dur3": 1.5, + "HeroDur3": 0, + "Cool3": 1, + "Cost3": 25, + "Area3": "-", + "Rng3": "-", + "DataA3": "Ntin", + "DataB3": 1, + "DataC3": 0, + "DataD3": "-", + "DataE3": 10, + "DataF3": 4, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Nrob", + "targs4": "_", + "Cast4": 0, + "Dur4": 1.5, + "HeroDur4": 0, + "Cool4": 1, + "Cost4": 25, + "Area4": "-", + "Rng4": "-", + "DataA4": "Ntin", + "DataB4": 1, + "DataC4": 0, + "DataD4": "-", + "DataE4": 10, + "DataF4": 4, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Nrob", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANg2": { + "alias": "ANg2", + "code": "ANrg", + "comments": "Tinkerer - Robo-Goblin (Level 2)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 25, + "Area1": "-", + "Rng1": "-", + "DataA1": "Ntin", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": 9, + "DataF1": 3, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Nrob", + "targs2": "_", + "Cast2": 0, + "Dur2": 1.5, + "HeroDur2": 0, + "Cool2": 1, + "Cost2": 25, + "Area2": "-", + "Rng2": "-", + "DataA2": "Ntin", + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": 13, + "DataF2": 5, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Nrob", + "targs3": "_", + "Cast3": 0, + "Dur3": 1.5, + "HeroDur3": 0, + "Cool3": 1, + "Cost3": 25, + "Area3": "-", + "Rng3": "-", + "DataA3": "Ntin", + "DataB3": 1, + "DataC3": 0, + "DataD3": "-", + "DataE3": 13, + "DataF3": 5, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Nrob", + "targs4": "_", + "Cast4": 0, + "Dur4": 1.5, + "HeroDur4": 0, + "Cool4": 1, + "Cost4": 25, + "Area4": "-", + "Rng4": "-", + "DataA4": "Ntin", + "DataB4": 1, + "DataC4": 0, + "DataD4": "-", + "DataE4": 13, + "DataF4": 5, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Nrob", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANg3": { + "alias": "ANg3", + "code": "ANrg", + "comments": "Tinkerer - Robo-Goblin (Level 3)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 25, + "Area1": "-", + "Rng1": "-", + "DataA1": "Ntin", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": 11, + "DataF1": 4, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Nrob", + "targs2": "_", + "Cast2": 0, + "Dur2": 1.5, + "HeroDur2": 0, + "Cool2": 1, + "Cost2": 25, + "Area2": "-", + "Rng2": "-", + "DataA2": "Ntin", + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": 16, + "DataF2": 6, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Nrob", + "targs3": "_", + "Cast3": 0, + "Dur3": 1.5, + "HeroDur3": 0, + "Cool3": 1, + "Cost3": 25, + "Area3": "-", + "Rng3": "-", + "DataA3": "Ntin", + "DataB3": 1, + "DataC3": 0, + "DataD3": "-", + "DataE3": 16, + "DataF3": 6, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Nrob", + "targs4": "_", + "Cast4": 0, + "Dur4": 1.5, + "HeroDur4": 0, + "Cool4": 1, + "Cost4": 25, + "Area4": "-", + "Rng4": "-", + "DataA4": "Ntin", + "DataB4": 1, + "DataC4": 0, + "DataD4": "-", + "DataE4": 16, + "DataF4": 6, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Nrob", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANsy": { + "alias": "ANsy", + "code": "ANsy", + "comments": "Tinkerer - Summon Factory (Level 0)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 35, + "Cost1": 125, + "Area1": "-", + "Rng1": 500, + "DataA1": 4.5, + "DataB1": "ncgb", + "DataC1": 12, + "DataD1": 200, + "DataE1": 1100, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nfac", + "BuffID1": "BNfy,BNcg", + "targs2": "_", + "Cast2": 0, + "Dur2": 40, + "HeroDur2": 40, + "Cool2": 35, + "Cost2": 125, + "Area2": "-", + "Rng2": 500, + "DataA2": 4.5, + "DataB2": "ncg1", + "DataC2": 12, + "DataD2": 200, + "DataE2": 1100, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nfa1", + "BuffID2": "BNfy,BNcg", + "targs3": "_", + "Cast3": 0, + "Dur3": 40, + "HeroDur3": 40, + "Cool3": 35, + "Cost3": 125, + "Area3": "-", + "Rng3": 500, + "DataA3": 4.5, + "DataB3": "ncg2", + "DataC3": 12, + "DataD3": 200, + "DataE3": 1100, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nfa2", + "BuffID3": "BNfy,BNcg", + "targs4": "_", + "Cast4": 0, + "Dur4": 40, + "HeroDur4": 40, + "Cool4": 35, + "Cost4": 125, + "Area4": "-", + "Rng4": 500, + "DataA4": 4.5, + "DataB4": "ncg3", + "DataC4": 12, + "DataD4": 200, + "DataE4": 1100, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nfa2", + "BuffID4": "BNfy,BNcg", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANs1": { + "alias": "ANs1", + "code": "ANsy", + "comments": "Tinkerer - Summon Factory (Level 1)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 35, + "Cost1": 125, + "Area1": "-", + "Rng1": 500, + "DataA1": 4, + "DataB1": "ncgb", + "DataC1": 12, + "DataD1": 200, + "DataE1": 1100, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nfac", + "BuffID1": "BNfy,BNcg", + "targs2": "_", + "Cast2": 0, + "Dur2": 40, + "HeroDur2": 40, + "Cool2": 35, + "Cost2": 125, + "Area2": "-", + "Rng2": 500, + "DataA2": 4, + "DataB2": "ncg1", + "DataC2": 12, + "DataD2": 200, + "DataE2": 1100, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nfa1", + "BuffID2": "BNfy,BNcg", + "targs3": "_", + "Cast3": 0, + "Dur3": 40, + "HeroDur3": 40, + "Cool3": 35, + "Cost3": 125, + "Area3": "-", + "Rng3": 500, + "DataA3": 4, + "DataB3": "ncg2", + "DataC3": 12, + "DataD3": 200, + "DataE3": 1100, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nfa2", + "BuffID3": "BNfy,BNcg", + "targs4": "_", + "Cast4": 0, + "Dur4": 40, + "HeroDur4": 40, + "Cool4": 35, + "Cost4": 125, + "Area4": "-", + "Rng4": 500, + "DataA4": 4, + "DataB4": "ncg3", + "DataC4": 12, + "DataD4": 200, + "DataE4": 1100, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nfa2", + "BuffID4": "BNfy,BNcg", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANs2": { + "alias": "ANs2", + "code": "ANsy", + "comments": "Tinkerer - Summon Factory (Level 2)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 35, + "Cost1": 125, + "Area1": "-", + "Rng1": 500, + "DataA1": 3.5, + "DataB1": "ncgb", + "DataC1": 12, + "DataD1": 200, + "DataE1": 1100, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nfac", + "BuffID1": "BNfy,BNcg", + "targs2": "_", + "Cast2": 0, + "Dur2": 40, + "HeroDur2": 40, + "Cool2": 35, + "Cost2": 125, + "Area2": "-", + "Rng2": 500, + "DataA2": 3.5, + "DataB2": "ncg1", + "DataC2": 12, + "DataD2": 200, + "DataE2": 1100, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nfa1", + "BuffID2": "BNfy,BNcg", + "targs3": "_", + "Cast3": 0, + "Dur3": 40, + "HeroDur3": 40, + "Cool3": 35, + "Cost3": 125, + "Area3": "-", + "Rng3": 500, + "DataA3": 3.5, + "DataB3": "ncg2", + "DataC3": 12, + "DataD3": 200, + "DataE3": 1100, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nfa2", + "BuffID3": "BNfy,BNcg", + "targs4": "_", + "Cast4": 0, + "Dur4": 40, + "HeroDur4": 40, + "Cool4": 35, + "Cost4": 125, + "Area4": "-", + "Rng4": 500, + "DataA4": 3.5, + "DataB4": "ncg3", + "DataC4": 12, + "DataD4": 200, + "DataE4": 1100, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nfa2", + "BuffID4": "BNfy,BNcg", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANs3": { + "alias": "ANs3", + "code": "ANsy", + "comments": "Tinkerer - Summon Factory (Level 3)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 35, + "Cost1": 125, + "Area1": "-", + "Rng1": 500, + "DataA1": 3, + "DataB1": "ncgb", + "DataC1": 12, + "DataD1": 200, + "DataE1": 1100, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nfac", + "BuffID1": "BNfy,BNcg", + "targs2": "_", + "Cast2": 0, + "Dur2": 40, + "HeroDur2": 40, + "Cool2": 35, + "Cost2": 125, + "Area2": "-", + "Rng2": 500, + "DataA2": 3, + "DataB2": "ncg1", + "DataC2": 12, + "DataD2": 200, + "DataE2": 1100, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nfa1", + "BuffID2": "BNfy,BNcg", + "targs3": "_", + "Cast3": 0, + "Dur3": 40, + "HeroDur3": 40, + "Cool3": 35, + "Cost3": 125, + "Area3": "-", + "Rng3": 500, + "DataA3": 3, + "DataB3": "ncg2", + "DataC3": 12, + "DataD3": 200, + "DataE3": 1100, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nfa2", + "BuffID3": "BNfy,BNcg", + "targs4": "_", + "Cast4": 0, + "Dur4": 40, + "HeroDur4": 40, + "Cool4": 35, + "Cost4": 125, + "Area4": "-", + "Rng4": 500, + "DataA4": 3, + "DataB4": "ncg3", + "DataC4": 12, + "DataD4": 200, + "DataE4": 1100, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nfa2", + "BuffID4": "BNfy,BNcg", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANde": { + "alias": "ANde", + "code": "ANde", + "comments": "Tinkerer - Demolish (Level 0)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 2, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANd1": { + "alias": "ANd1", + "code": "ANde", + "comments": "Tinkerer - Demolish (Level 1)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 2.5, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANd2": { + "alias": "ANd2", + "code": "ANde", + "comments": "Tinkerer - Demolish (Level 2)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 3, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANd3": { + "alias": "ANd3", + "code": "ANde", + "comments": "Tinkerer - Demolish (Level 3)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 3.5, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANic": { + "alias": "ANic", + "code": "ANic", + "comments": "Firelord - Incinerate", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,neutral,organic,nonancient", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 4, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 30, + "DataC1": 120, + "DataD1": 15, + "DataE1": 240, + "DataF1": 0.2, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNic", + "targs2": "enemy,neutral,organic,nonancient", + "Cast2": 0, + "Dur2": 4, + "HeroDur2": 4, + "Cool2": 0, + "Cost2": 0, + "Area2": "-", + "Rng2": "-", + "DataA2": 3, + "DataB2": 45, + "DataC2": 120, + "DataD2": 22, + "DataE2": 240, + "DataF2": 0.2, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNic", + "targs3": "enemy,neutral,organic,nonancient", + "Cast3": 0, + "Dur3": 4, + "HeroDur3": 4, + "Cool3": 0, + "Cost3": 0, + "Area3": "-", + "Rng3": "-", + "DataA3": 4, + "DataB3": 60, + "DataC3": 120, + "DataD3": 30, + "DataE3": 240, + "DataF3": 0.2, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNic", + "targs4": "enemy,neutral,organic,nonancient", + "Cast4": 0, + "Dur4": 4, + "HeroDur4": 4, + "Cool4": 0, + "Cost4": 0, + "Area4": "-", + "Rng4": "-", + "DataA4": 4, + "DataB4": 80, + "DataC4": 120, + "DataD4": 40, + "DataE4": 240, + "DataF4": 0.2, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNic", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "order": "incinerate", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNIncinerate.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNIncinerate.blp", + "Missileart": "Abilities\\Weapons\\LordofFlameMissile\\LordofFlameMissile.mdl", + "Missilearc": "0.35" + }, + "ANia": { + "alias": "ANia", + "code": "ANia", + "comments": "Firelord - Incinerate", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,neutral,organic,nonancient", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 4, + "Cool1": 0, + "Cost1": 3, + "Area1": "-", + "Rng1": 550, + "DataA1": 2, + "DataB1": 30, + "DataC1": 120, + "DataD1": 15, + "DataE1": 240, + "DataF1": 0.2, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNic", + "targs2": "enemy,neutral,organic,nonancient", + "Cast2": 0, + "Dur2": 4, + "HeroDur2": 4, + "Cool2": 0, + "Cost2": 3, + "Area2": "-", + "Rng2": 550, + "DataA2": 3, + "DataB2": 45, + "DataC2": 120, + "DataD2": 22, + "DataE2": 240, + "DataF2": 0.2, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNic", + "targs3": "enemy,neutral,organic,nonancient", + "Cast3": 0, + "Dur3": 4, + "HeroDur3": 4, + "Cool3": 0, + "Cost3": 3, + "Area3": "-", + "Rng3": 550, + "DataA3": 4, + "DataB3": 60, + "DataC3": 120, + "DataD3": 30, + "DataE3": 240, + "DataF3": 0.2, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNic", + "targs4": "enemy,neutral,organic,nonancient", + "Cast4": 0, + "Dur4": 4, + "HeroDur4": 4, + "Cool4": 0, + "Cost4": 2, + "Area4": "-", + "Rng4": 550, + "DataA4": 4, + "DataB4": 80, + "DataC4": 120, + "DataD4": 40, + "DataE4": 240, + "DataF4": 0.2, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNic", + "InBeta": 1, + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Researchbuttonpos": "2,0", + "order": "incineratearrow", + "orderon": "incineratearrowon", + "orderoff": "incineratearrowon", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIncinerateOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNIncinerateOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNIncinerate.blp", + "Missileart": "Abilities\\Weapons\\LordofFlameMissile\\LordofFlameMissile.mdl", + "Missilearc": "0.35" + }, + "ANso": { + "alias": "ANso", + "code": "ANso", + "comments": "Firelord - Soul Burn", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 16, + "HeroDur1": 8, + "Cool1": 12, + "Cost1": 65, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 1, + "DataC1": 0.75, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNso", + "targs2": "air,ground,enemy,neutral,organic", + "Cast2": 0, + "Dur2": 18, + "HeroDur2": 9, + "Cool2": 12, + "Cost2": 65, + "Area2": "-", + "Rng2": 700, + "DataA2": 11.11, + "DataB2": 1, + "DataC2": 0.75, + "DataD2": 0, + "DataE2": 0, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNso", + "targs3": "air,ground,enemy,neutral,organic", + "Cast3": 0, + "Dur3": 20, + "HeroDur3": 10, + "Cool3": 12, + "Cost3": 65, + "Area3": "-", + "Rng3": 700, + "DataA3": 17, + "DataB3": 1, + "DataC3": 0.75, + "DataD3": 0, + "DataE3": 0, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNso", + "targs4": "air,ground,enemy,neutral,organic", + "Cast4": 0, + "Dur4": 20, + "HeroDur4": 9, + "Cool4": 12, + "Cost4": 65, + "Area4": "-", + "Rng4": 700, + "DataA4": 17, + "DataB4": 1, + "DataC4": 0.5, + "DataD4": 0, + "DataE4": 0, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNso", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "order": "soulburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSoulBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSoulBurn.blp" + }, + "ANlm": { + "alias": "ANlm", + "code": "ANlm", + "comments": "Firelord - Summon Lava Spawn", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,neutral,air,ground,ward", + "Cast1": 0, + "Dur1": 70, + "HeroDur1": 70, + "Cool1": 32, + "Cost1": 150, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": 5, + "DataC1": 13, + "DataD1": 0.5, + "DataE1": 12, + "DataF1": 3, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nlv1", + "BuffID1": "BNlm", + "targs2": "enemy,neutral,air,ground,ward", + "Cast2": 0, + "Dur2": 70, + "HeroDur2": 70, + "Cool2": 32, + "Cost2": 150, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": 5, + "DataC2": 13, + "DataD2": 0.75, + "DataE2": 12, + "DataF2": 3, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nlv2", + "BuffID2": "BNlm", + "targs3": "enemy,neutral,air,ground,ward", + "Cast3": 0, + "Dur3": 70, + "HeroDur3": 70, + "Cool3": 32, + "Cost3": 150, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": 5, + "DataC3": 13, + "DataD3": 0.75, + "DataE3": 12, + "DataF3": 3, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nlv3", + "BuffID3": "BNlm", + "targs4": "enemy,neutral,air,ground,ward", + "Cast4": 0, + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 35, + "Cost4": 150, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": 5, + "DataC4": 9, + "DataD4": 0.5, + "DataE4": 12, + "DataF4": 3, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nlv3", + "BuffID4": "BNlm", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "order": "slimemonster", + "skinType": "ability", + "UnitSkinID": "nlv1,nlv2,nlv3,nlv3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawn.blp" + }, + "ANvc": { + "alias": "ANvc", + "code": "ANvc", + "comments": "Firelord - Volcano", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,enemy,tree,debris", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 1, + "Cool1": 180, + "Cost1": 200, + "Area1": 500, + "Rng1": 800, + "DataA1": 3, + "DataB1": 5, + "DataC1": 3, + "DataD1": 2, + "DataE1": 125, + "DataF1": 0.5, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Volc", + "BuffID1": "BNvc,BNva", + "EfctID1": "XNvc", + "targs2": "ground,structure,enemy,tree,debris", + "Cast2": 0, + "Dur2": 2, + "HeroDur2": 1, + "Cool2": 180, + "Cost2": 150, + "Area2": 500, + "Rng2": 800, + "DataA2": 3, + "DataB2": 5, + "DataC2": 3, + "DataD2": 3, + "DataE2": 100, + "DataF2": 0.5, + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Volc", + "BuffID2": "BNvc,BNva", + "EfctID2": "XNvc", + "targs3": "ground,structure,enemy,tree,debris", + "Cast3": 0, + "Dur3": 2, + "HeroDur3": 1, + "Cool3": 180, + "Cost3": 150, + "Area3": 500, + "Rng3": 800, + "DataA3": 3, + "DataB3": 5, + "DataC3": 3, + "DataD3": 3, + "DataE3": 100, + "DataF3": 0.5, + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Volc", + "BuffID3": "BNvc,BNva", + "EfctID3": "XNvc", + "targs4": "ground,structure,enemy,tree,debris", + "Cast4": 0, + "Dur4": 2, + "HeroDur4": 1, + "Cool4": 180, + "Cost4": 150, + "Area4": 500, + "Rng4": 800, + "DataA4": 3, + "DataB4": 5, + "DataC4": 3, + "DataD4": 3, + "DataE4": 100, + "DataF4": 0.5, + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Volc", + "BuffID4": "BNvc,BNva", + "EfctID4": "XNvc", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "order": "volcano", + "skinType": "ability", + "UnitSkinID": "Volc,Volc,Volc,Volc", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVolcano.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNVolcano.blp", + "Animnames": "stand,channel" + }, + "ANin": { + "alias": "ANin", + "code": "ANin", + "comments": "Inferno", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 2, + "Cool1": 180, + "Cost1": 175, + "Area1": 250, + "Rng1": 900, + "DataA1": 50, + "DataB1": 360, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ninf", + "BuffID1": "BNin", + "targs2": "ground,structure,debris,enemy,neutral", + "Cast2": 0, + "Dur2": 4, + "HeroDur2": 2, + "Cool2": 180, + "Cost2": 175, + "Area2": 250, + "Rng2": 900, + "DataA2": 50, + "DataB2": 360, + "DataC2": 1, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ninf", + "BuffID2": "BNin", + "targs3": "ground,structure,debris,enemy,neutral", + "Cast3": 0, + "Dur3": 4, + "HeroDur3": 2, + "Cool3": 180, + "Cost3": 175, + "Area3": 250, + "Rng3": 900, + "DataA3": 50, + "DataB3": 360, + "DataC3": 1, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "ninf", + "BuffID3": "BNin", + "targs4": "ground,structure,debris,enemy,neutral", + "Cast4": 0, + "Dur4": 4, + "HeroDur4": 2, + "Cool4": 180, + "Cost4": 175, + "Area4": 250, + "Rng4": 900, + "DataA4": 50, + "DataB4": 360, + "DataC4": 1, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "ninf", + "BuffID4": "BNin", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "inferno", + "skinType": "ability", + "UnitSkinID": "ninf,ninf,ninf,ninf", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl" + }, + "SNin": { + "alias": "SNin", + "code": "AUin", + "comments": "Tichondrius - Inferno", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 2, + "Cool1": 30, + "Cost1": 100, + "Area1": 250, + "Rng1": 900, + "DataA1": 50, + "DataB1": 360, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ninf", + "BuffID1": "BNin", + "targs2": "ground,structure,debris,enemy,neutral", + "Cast2": "-", + "Dur2": 4, + "HeroDur2": 2, + "Cool2": 30, + "Cost2": 100, + "Area2": 250, + "Rng2": 900, + "DataA2": 50, + "DataB2": 360, + "DataC2": 1, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ninf", + "BuffID2": "BNin", + "targs3": "ground,structure,debris,enemy,neutral", + "Cast3": "-", + "Dur3": 4, + "HeroDur3": 2, + "Cool3": 30, + "Cost3": 100, + "Area3": 250, + "Rng3": 900, + "DataA3": 50, + "DataB3": 360, + "DataC3": 1, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "ninf", + "BuffID3": "BNin", + "targs4": "ground,structure,debris,enemy,neutral", + "Cast4": "-", + "Dur4": 4, + "HeroDur4": 2, + "Cool4": 30, + "Cost4": 100, + "Area4": 250, + "Rng4": 900, + "DataA4": 50, + "DataB4": 360, + "DataC4": 1, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "ninf", + "BuffID4": "BNin", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "inferno", + "skinType": "ability", + "UnitSkinID": "ninf,ninf,ninf,ninf", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl" + }, + "ANfb": { + "alias": "ANfb", + "code": "ANfb", + "comments": "Fire Bolt", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,enemy,neutral", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 800, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,organic,enemy,neutral", + "Cast2": "-", + "Dur2": 3, + "HeroDur2": 3, + "Cool2": 8, + "Cost2": 75, + "Area2": "-", + "Rng2": 800, + "DataA2": 150, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,organic,enemy,neutral", + "Cast3": "-", + "Dur3": 4, + "HeroDur3": 4, + "Cool3": 8, + "Cost3": 75, + "Area3": "-", + "Rng3": 800, + "DataA3": 200, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,organic,enemy,neutral", + "Cast4": "-", + "Dur4": 4, + "HeroDur4": 4, + "Cool4": 8, + "Cost4": 75, + "Area4": "-", + "Rng4": 800, + "DataA4": 200, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Animnames": "spell,throw" + }, + "ANfd": { + "alias": "ANfd", + "code": "ANfd", + "comments": "Finger of Death", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,structure,ancient,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 15, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.25, + "DataB1": 1, + "DataC1": 500, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,nonhero,structure,ancient,nonancient", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 15, + "Cost2": 0, + "Area2": "-", + "Rng2": 800, + "DataA2": 0.25, + "DataB2": 1, + "DataC2": 500, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,nonhero,structure,ancient,nonancient", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 15, + "Cost3": 0, + "Area3": "-", + "Rng3": 800, + "DataA3": 0.25, + "DataB3": 1, + "DataC3": 500, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,nonhero,structure,ancient,nonancient", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 15, + "Cost4": 0, + "Area4": "-", + "Rng4": 800, + "DataA4": 0.25, + "DataB4": 1, + "DataC4": 500, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "ACfd": { + "alias": "ACfd", + "code": "ANfd", + "comments": "Finger of Pain", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,structure,ancient,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 50, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.25, + "DataB1": 1, + "DataC1": 250, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,nonhero,structure,ancient,nonancient", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "air,ground,nonhero,structure,ancient,nonancient", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,nonhero,structure,ancient,nonancient", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "ACf3": { + "alias": "ACf3", + "code": "ANfd", + "comments": "Finger of Pain (2,1 Button)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,structure,ancient,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 50, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.25, + "DataB1": 1, + "DataC1": 250, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,nonhero,structure,ancient,nonancient", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "air,ground,nonhero,structure,ancient,nonancient", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,nonhero,structure,ancient,nonancient", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,1", + "Researchbuttonpos": "0,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "ANdp": { + "alias": "ANdp", + "code": "ANdp", + "comments": "Dark Portal", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 0, + "Cool1": 100, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": "nbal,nfel", + "DataB1": 3, + "DataC1": 5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": 0, + "Dur2": 1, + "HeroDur2": 0, + "Cool2": 100, + "Cost2": 0, + "Area2": "-", + "Rng2": 800, + "DataA2": "nbal,nfel", + "DataB2": 3, + "DataC2": 6, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": 0, + "Dur3": 1, + "HeroDur3": 0, + "Cool3": 100, + "Cost3": 0, + "Area3": "-", + "Rng3": 800, + "DataA3": "nbal,nfel", + "DataB3": 5, + "DataC3": 6, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": 0, + "Dur4": 1, + "HeroDur4": 0, + "Cool4": 100, + "Cost4": 0, + "Area4": "-", + "Rng4": 800, + "DataA4": "nbal,nfel", + "DataB4": 5, + "DataC4": 6, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDizzy.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDizzy.blp", + "Effectart": "Abilities\\Spells\\Demon\\DarkPortal\\DarkPortalTarget.mdl" + }, + "ANrc": { + "alias": "ANrc", + "code": "ANrc", + "comments": "Rain of Chaos", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 0, + "Cool1": 120, + "Cost1": 0, + "Area1": 900, + "Rng1": 1000, + "DataA1": "ANin", + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XErc", + "targs2": "_", + "Cast2": 0, + "Dur2": 0.8, + "HeroDur2": 0, + "Cool2": 120, + "Cost2": 0, + "Area2": 900, + "Rng2": 1000, + "DataA2": "ANin", + "DataB2": 3, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "EfctID2": "XErc", + "targs3": "_", + "Cast3": 0, + "Dur3": 0.6, + "HeroDur3": 0, + "Cool3": 120, + "Cost3": 0, + "Area3": 900, + "Rng3": 1000, + "DataA3": "ANin", + "DataB3": 4, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "EfctID3": "XErc", + "targs4": "_", + "Cast4": 0, + "Dur4": 0.6, + "HeroDur4": 0, + "Cool4": 120, + "Cost4": 0, + "Area4": 900, + "Rng4": 1000, + "DataA4": "ANin", + "DataB4": 4, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "EfctID4": "XErc", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Animnames": "spell,slam" + }, + "ANr3": { + "alias": "ANr3", + "code": "ANrc", + "comments": "Rain of Chaos(Button 0,2)", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 0, + "Cool1": 120, + "Cost1": 0, + "Area1": 900, + "Rng1": 1000, + "DataA1": "ANin", + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XErc", + "targs2": "_", + "Cast2": 0, + "Dur2": 0.8, + "HeroDur2": 0, + "Cool2": 120, + "Cost2": 0, + "Area2": 900, + "Rng2": 1000, + "DataA2": "ANin", + "DataB2": 3, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "EfctID2": "XErc", + "targs3": "_", + "Cast3": 0, + "Dur3": 0.6, + "HeroDur3": 0, + "Cool3": 120, + "Cost3": 0, + "Area3": 900, + "Rng3": 1000, + "DataA3": "ANin", + "DataB3": 4, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "EfctID3": "XErc", + "targs4": "_", + "Cast4": 0, + "Dur4": 0.6, + "HeroDur4": 0, + "Cool4": 120, + "Cost4": 0, + "Area4": 900, + "Rng4": 1000, + "DataA4": "ANin", + "DataB4": 4, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "EfctID4": "XErc", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Animnames": "spell,slam" + }, + "AEsb": { + "alias": "AEsb", + "code": "AEsf", + "comments": "Cenarius - Beefy Starfall", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 35, + "HeroDur1": 35, + "Cool1": 100, + "Cost1": 300, + "Area1": 900, + "Rng1": " - ", + "DataA1": 50, + "DataB1": 2, + "DataC1": 0.35, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "AEsd", + "EfctID1": "XEsf", + "targs2": "air,ground,structure,enemy,neutral", + "Cast2": "-", + "Dur2": 30, + "HeroDur2": 30, + "Cool2": 120, + "Cost2": 300, + "Area2": 900, + "Rng2": " - ", + "DataA2": 30, + "DataB2": 2, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "AEsd", + "EfctID2": "XEsf", + "targs3": "air,ground,structure,enemy,neutral", + "Cast3": "-", + "Dur3": 30, + "HeroDur3": 30, + "Cool3": 120, + "Cost3": 300, + "Area3": 900, + "Rng3": " - ", + "DataA3": 30, + "DataB3": 2, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "AEsd", + "EfctID3": "XEsf", + "targs4": "air,ground,structure,enemy,neutral", + "Cast4": "-", + "Dur4": 30, + "HeroDur4": 30, + "Cool4": 120, + "Cost4": 300, + "Area4": 900, + "Rng4": " - ", + "DataA4": 30, + "DataB4": 2, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "AEsd", + "EfctID4": "XEsf", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "starfall", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Animnames": "spell,looping" + }, + "ANrn": { + "alias": "ANrn", + "code": "AOre", + "comments": "Mannoroth - Reincarnation", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 3, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 240, + "Cost1": " - ", + "Area1": "-", + "Rng1": "-", + "DataA1": 7, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XOre", + "targs2": "_", + "Cast2": 3, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 240, + "Cost2": " - ", + "Area2": "-", + "Rng2": "-", + "DataA2": 7, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "EfctID2": "XOre", + "targs3": "_", + "Cast3": 3, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 240, + "Cost3": " - ", + "Area3": "-", + "Rng3": "-", + "DataA3": 7, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "EfctID3": "XOre", + "targs4": "_", + "Cast4": 3, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 240, + "Cost4": " - ", + "Area4": "-", + "Rng4": "-", + "DataA4": 7, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "EfctID4": "XOre", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "ANdc": { + "alias": "ANdc", + "code": "ANdc", + "comments": "Malganis - Dark Conversion", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,nonhero", + "Cast1": 5, + "Dur1": 6, + "HeroDur1": 6, + "Cool1": 0.1, + "Cost1": 0, + "Area1": "-", + "Rng1": 1000, + "DataA1": "commoner", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nzom", + "BuffID1": "BNdc", + "targs2": "air,ground,organic,nonhero", + "Cast2": 5, + "Dur2": 6, + "HeroDur2": 6, + "Cool2": 0.1, + "Cost2": 0, + "Area2": "-", + "Rng2": 1000, + "DataA2": "commoner", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nzom", + "BuffID2": "BNdc", + "targs3": "air,ground,organic,nonhero", + "Cast3": 5, + "Dur3": 6, + "HeroDur3": 6, + "Cool3": 0.1, + "Cost3": 0, + "Area3": "-", + "Rng3": 1000, + "DataA3": "commoner", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nzom", + "BuffID3": "BNdc", + "targs4": "air,ground,organic,nonhero", + "Cast4": 5, + "Dur4": 6, + "HeroDur4": 6, + "Cool4": 0.1, + "Cost4": 0, + "Area4": "-", + "Rng4": 1000, + "DataA4": "commoner", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nzom", + "BuffID4": "BNdc", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "darkconversion", + "skinType": "ability", + "UnitSkinID": "nzom,nzom,nzom,nzom", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "SNdc": { + "alias": "SNdc", + "code": "ANdc", + "comments": "Dark Conversion (Fast)", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,nonhero", + "Cast1": 0, + "Dur1": 6, + "HeroDur1": 6, + "Cool1": 0.1, + "Cost1": 0, + "Area1": "-", + "Rng1": 1000, + "DataA1": "commoner", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nzom", + "BuffID1": "BNdc", + "targs2": "air,ground,organic,nonhero", + "Cast2": 0, + "Dur2": 6, + "HeroDur2": 6, + "Cool2": 0.1, + "Cost2": 0, + "Area2": "-", + "Rng2": 1000, + "DataA2": "commoner", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nzom", + "BuffID2": "BNdc", + "targs3": "air,ground,organic,nonhero", + "Cast3": 0, + "Dur3": 6, + "HeroDur3": 6, + "Cool3": 0.1, + "Cost3": 0, + "Area3": "-", + "Rng3": 1000, + "DataA3": "commoner", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nzom", + "BuffID3": "BNdc", + "targs4": "air,ground,organic,nonhero", + "Cast4": 0, + "Dur4": 6, + "HeroDur4": 6, + "Cool4": 0.1, + "Cost4": 0, + "Area4": "-", + "Rng4": 1000, + "DataA4": "commoner", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nzom", + "BuffID4": "BNdc", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "darkconversion", + "skinType": "ability", + "UnitSkinID": "nzom,nzom,nzom,nzom", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "ANsl": { + "alias": "ANsl", + "code": "ANsl", + "comments": "Malganis - Soul Preservation", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,nonhero", + "Cast1": 0.5, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 0.1, + "Cost1": 0, + "Area1": "-", + "Rng1": 1000, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nzom", + "BuffID1": "BNsl", + "targs2": "air,ground,organic,nonhero", + "Cast2": 0.5, + "Dur2": 3, + "HeroDur2": 3, + "Cool2": 0.1, + "Cost2": 0, + "Area2": "-", + "Rng2": 1000, + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nzom", + "BuffID2": "BNsl", + "targs3": "air,ground,organic,nonhero", + "Cast3": 0.5, + "Dur3": 3, + "HeroDur3": 3, + "Cool3": 0.1, + "Cost3": 0, + "Area3": "-", + "Rng3": 1000, + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nzom", + "BuffID3": "BNsl", + "targs4": "air,ground,organic,nonhero", + "Cast4": 0.5, + "Dur4": 3, + "HeroDur4": 3, + "Cool4": 0.1, + "Cost4": 0, + "Area4": "-", + "Rng4": 1000, + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nzom", + "BuffID4": "BNsl", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "soulpreservation", + "skinType": "ability", + "UnitSkinID": "nzom,nzom,nzom,nzom", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "AEIl": { + "alias": "AEIl", + "code": "AEme", + "comments": "Illidan - Metamorphosis", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 0, + "Cool1": 120, + "Cost1": 150, + "Area1": "-", + "Rng1": "-", + "DataA1": "Eill", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": 500, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Eilm", + "BuffID1": "BEme", + "targs2": "_", + "Cast2": 0, + "Dur2": 1.5, + "HeroDur2": 0, + "Cool2": 120, + "Cost2": 150, + "Area2": "-", + "Rng2": "-", + "DataA2": "Eill", + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": 500, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Eilm", + "BuffID2": "BEme", + "targs3": "_", + "Cast3": 0, + "Dur3": 1.5, + "HeroDur3": 0, + "Cool3": 120, + "Cost3": 150, + "Area3": "-", + "Rng3": "-", + "DataA3": "Eill", + "DataB3": 1, + "DataC3": 0, + "DataD3": "-", + "DataE3": 500, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Eilm", + "BuffID3": "BEme", + "targs4": "_", + "Cast4": 0, + "Dur4": 1.5, + "HeroDur4": 0, + "Cool4": 120, + "Cost4": 150, + "Area4": "-", + "Rng4": "-", + "DataA4": "Eill", + "DataB4": 1, + "DataC4": 0, + "DataD4": "-", + "DataE4": 500, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Eilm", + "BuffID4": "BEme", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "metamorphosis", + "skinType": "ability", + "UnitSkinID": "Eilm,Eilm,Eilm,Eilm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "AEvi": { + "alias": "AEvi", + "code": "AEme", + "comments": "Evil Illidan - Metamorphosis", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 60, + "Cool1": 120, + "Cost1": 150, + "Area1": "-", + "Rng1": "-", + "DataA1": "Eevi", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": 500, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Eevm", + "BuffID1": "BEme", + "targs2": "_", + "Cast2": 0, + "Dur2": 1.5, + "HeroDur2": 60, + "Cool2": 120, + "Cost2": 150, + "Area2": "-", + "Rng2": "-", + "DataA2": "Eevi", + "DataB2": 1, + "DataC2": 0, + "DataD2": "-", + "DataE2": 500, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Eevm", + "BuffID2": "BEme", + "targs3": "_", + "Cast3": 0, + "Dur3": 1.5, + "HeroDur3": 60, + "Cool3": 120, + "Cost3": 150, + "Area3": "-", + "Rng3": "-", + "DataA3": "Eevi", + "DataB3": 1, + "DataC3": 0, + "DataD3": "-", + "DataE3": 500, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "Eevm", + "BuffID3": "BEme", + "targs4": "_", + "Cast4": 0, + "Dur4": 1.5, + "HeroDur4": 60, + "Cool4": 120, + "Cost4": 150, + "Area4": "-", + "Rng4": "-", + "DataA4": "Eevi", + "DataB4": 1, + "DataC4": 0, + "DataD4": "-", + "DataE4": 500, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "Eevm", + "BuffID4": "BEme", + "InBeta": 0, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "metamorphosis", + "skinType": "ability", + "UnitSkinID": "Eevm,Eevm,Eevm,Eevm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "SNeq": { + "alias": "SNeq", + "code": "AOeq", + "comments": "Super Earthquake", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,tree", + "Cast1": 0, + "Dur1": 25, + "HeroDur1": 20, + "Cool1": 90, + "Cost1": 150, + "Area1": 250, + "Rng1": 1000, + "DataA1": 0.5, + "DataB1": 50, + "DataC1": 0.75, + "DataD1": 250, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOeq", + "EfctID1": "XOeq", + "targs2": "ground,structure,debris,tree", + "Cast2": 0, + "Dur2": 25, + "HeroDur2": 20, + "Cool2": 90, + "Cost2": 150, + "Area2": 250, + "Rng2": 1000, + "DataA2": 0.5, + "DataB2": 50, + "DataC2": 0.75, + "DataD2": 250, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOeq", + "EfctID2": "XOeq", + "targs3": "ground,structure,debris,tree", + "Cast3": 0, + "Dur3": 25, + "HeroDur3": 20, + "Cool3": 90, + "Cost3": 150, + "Area3": 250, + "Rng3": 1000, + "DataA3": 0.5, + "DataB3": 50, + "DataC3": 0.75, + "DataD3": 250, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOeq", + "EfctID3": "XOeq", + "targs4": "ground,structure,debris,tree", + "Cast4": 0, + "Dur4": 25, + "HeroDur4": 20, + "Cool4": 90, + "Cost4": 150, + "Area4": 250, + "Rng4": 1000, + "DataA4": 0.5, + "DataB4": 50, + "DataC4": 0.75, + "DataD4": 250, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOeq", + "EfctID4": "XOeq", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "earthquake", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Animnames": "spell,looping" + }, + "SNdd": { + "alias": "SNdd", + "code": "AUdd", + "comments": "Super Death and Decay", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,ward", + "Cast1": 0, + "Dur1": 35, + "HeroDur1": 35, + "Cool1": 150, + "Cost1": 250, + "Area1": 300, + "Rng1": 1000, + "DataA1": 0.04, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUdd", + "EfctID1": "XUdd", + "targs2": "air,ground,structure,ward", + "Cast2": 0, + "Dur2": 35, + "HeroDur2": 35, + "Cool2": 150, + "Cost2": 250, + "Area2": 300, + "Rng2": 1000, + "DataA2": 0.04, + "DataB2": 1, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUdd", + "EfctID2": "XUdd", + "targs3": "air,ground,structure,ward", + "Cast3": 0, + "Dur3": 35, + "HeroDur3": 35, + "Cool3": 150, + "Cost3": 250, + "Area3": 300, + "Rng3": 1000, + "DataA3": 0.04, + "DataB3": 1, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUdd", + "EfctID3": "XUdd", + "targs4": "air,ground,structure,ward", + "Cast4": 0, + "Dur4": 35, + "HeroDur4": 35, + "Cool4": 150, + "Cost4": 250, + "Area4": 300, + "Rng4": 1000, + "DataA4": 0.04, + "DataB4": 1, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUdd", + "EfctID4": "XUdd", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "deathanddecay", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp", + "Animnames": "spell,looping" + }, + "ANmo": { + "alias": "ANmo", + "code": "ANmo", + "comments": "Monsoon", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 10, + "Cost1": 75, + "Area1": 300, + "Rng1": 500, + "DataA1": 20, + "DataB1": 1.5, + "DataC1": 0.35, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "ANmd", + "EfctID1": "XNmo", + "targs2": "air,ground,structure,enemy,neutral", + "Cast2": "-", + "Dur2": 15, + "HeroDur2": 15, + "Cool2": 10, + "Cost2": 75, + "Area2": 400, + "Rng2": 300, + "DataA2": 20, + "DataB2": 1.5, + "DataC2": 0.35, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "ANmd", + "EfctID2": "XNmo", + "targs3": "air,ground,structure,enemy,neutral", + "Cast3": "-", + "Dur3": 15, + "HeroDur3": 15, + "Cool3": 10, + "Cost3": 75, + "Area3": 500, + "Rng3": 300, + "DataA3": 20, + "DataB3": 1.5, + "DataC3": 0.35, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "ANmd", + "EfctID3": "XNmo", + "targs4": "air,ground,structure,enemy,neutral", + "Cast4": "-", + "Dur4": 15, + "HeroDur4": 15, + "Cool4": 10, + "Cost4": 75, + "Area4": 500, + "Rng4": 300, + "DataA4": 20, + "DataB4": 1.5, + "DataC4": 0.35, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "ANmd", + "EfctID4": "XNmo", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "monsoon", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Animnames": "stand,channel" + }, + "AEpa": { + "alias": "AEpa", + "code": "AEpa", + "comments": "Poison Arrows", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 700, + "DataA1": 10, + "DataB1": 4, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bpoi,Bpsd,Bpsi", + "targs2": "air,ground,organic", + "Cast2": 0, + "Dur2": 10, + "HeroDur2": 10, + "Cool2": 0, + "Cost2": 0, + "Area2": "-", + "Rng2": "-", + "DataA2": 20, + "DataB2": 6, + "DataC2": 0, + "DataD2": 0, + "DataE2": 0, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "Bpoi,Bpsd,Bpsi", + "targs3": "air,ground,organic", + "Cast3": 0, + "Dur3": 10, + "HeroDur3": 10, + "Cool3": 0, + "Cost3": 0, + "Area3": "-", + "Rng3": "-", + "DataA3": 30, + "DataB3": 8, + "DataC3": 0, + "DataD3": 0, + "DataE3": 0, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "Bpoi,Bpsd,Bpsi", + "targs4": "air,ground,organic", + "Cast4": 0, + "Dur4": 10, + "HeroDur4": 10, + "Cool4": 0, + "Cost4": 0, + "Area4": "-", + "Rng4": "-", + "DataA4": 30, + "DataB4": 8, + "DataC4": 0, + "DataD4": 0, + "DataE4": 0, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "Bpoi,Bpsd,Bpsi", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "poisonarrowstarg", + "Orderon": "poisonarrows", + "Orderoff": "unpoisonarrows", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrows.blp", + "Missileart": "Abilities\\Weapons\\SearingArrow\\SearingArrowMissile.mdl", + "Animnames": "attack" + }, + "ANwm": { + "alias": "ANwm", + "code": "ANwm", + "comments": "Watery Minion", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 75, + "Area1": 200, + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ncfs", + "BuffID1": "BNwm", + "targs2": "_", + "Cast2": 0, + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 20, + "Cost2": 75, + "Area2": 200, + "Rng2": "-", + "DataA2": 2, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ntws", + "BuffID2": "BNwm", + "targs3": "_", + "Cast3": 0, + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 20, + "Cost3": 75, + "Area3": 200, + "Rng3": "-", + "DataA3": 2, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nsns", + "BuffID3": "BNwm", + "targs4": "_", + "Cast4": 0, + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 20, + "Cost4": 75, + "Area4": 200, + "Rng4": "-", + "DataA4": 2, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nsns", + "BuffID4": "BNwm", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "wateryminion", + "skinType": "ability", + "UnitSkinID": "ncfs,ntws,nsns,nsns", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AHca": { + "alias": "AHca", + "code": "AHca", + "comments": "Cold Arrows", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 6, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 8, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0.3, + "DataC1": 0.3, + "DataD1": 7, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHca,Bcsd,Bcsi", + "targs2": "air,ground,enemy,neutral", + "Cast2": "-", + "Dur2": 6, + "HeroDur2": 1, + "Cool2": "-", + "Cost2": 8, + "Area2": "-", + "Rng2": 700, + "DataA2": 10, + "DataB2": 0.5, + "DataC2": 0.5, + "DataD2": 7, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BHca,Bcsd,Bcsi", + "targs3": "air,ground,enemy,neutral", + "Cast3": "-", + "Dur3": 6, + "HeroDur3": 1, + "Cool3": "-", + "Cost3": 8, + "Area3": "-", + "Rng3": 700, + "DataA3": 15, + "DataB3": 0.7, + "DataC3": 0.7, + "DataD3": 7, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BHca,Bcsd,Bcsi", + "targs4": "air,ground,enemy,neutral", + "Cast4": "-", + "Dur4": 6, + "HeroDur4": 1, + "Cool4": "-", + "Cost4": 8, + "Area4": "-", + "Rng4": 700, + "DataA4": 15, + "DataB4": 0.7, + "DataC4": 0.7, + "DataD4": 7, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BHca,Bcsd,Bcsi", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp", + "Missileart": "Abilities\\Weapons\\ColdArrow\\ColdArrowMissile.mdl", + "Missilearc": "0.15", + "Animnames": "attack" + }, + "ANbr": { + "alias": "ANbr", + "code": "ANbr", + "comments": "Battle Roar", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 25, + "Cost1": 50, + "Area1": 650, + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNbr", + "targs2": "air,ground,friend,self", + "Cast2": 0, + "Dur2": 10, + "HeroDur2": 10, + "Cool2": 25, + "Cost2": 50, + "Area2": 650, + "Rng2": "-", + "DataA2": 20, + "DataB2": 0, + "DataC2": 0, + "DataD2": 0, + "DataE2": 0, + "DataF2": 0, + "DataG2": 0, + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNbr", + "targs3": "air,ground,friend,self", + "Cast3": 0, + "Dur3": 10, + "HeroDur3": 10, + "Cool3": 25, + "Cost3": 50, + "Area3": 650, + "Rng3": "-", + "DataA3": 30, + "DataB3": 0, + "DataC3": 0, + "DataD3": 0, + "DataE3": 0, + "DataF3": 0, + "DataG3": 0, + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNbr", + "targs4": "air,ground,friend,self", + "Cast4": 0, + "Dur4": 10, + "HeroDur4": 10, + "Cool4": 25, + "Cost4": 50, + "Area4": 650, + "Rng4": "-", + "DataA4": 40, + "DataB4": 0, + "DataC4": 0, + "DataD4": 0, + "DataE4": 0, + "DataF4": 0, + "DataG4": 0, + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNbr", + "InBeta": 0, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "battleroar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "Arsg": { + "alias": "Arsg", + "code": "AOsf", + "comments": "Rexxar - Summon Bear", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 150, + "Area1": 200, + "Rng1": 800, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ngzc", + "BuffID1": "BOsf", + "targs2": "_", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 30, + "Cost2": 150, + "Area2": 200, + "Rng2": 800, + "DataB2": 1, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "ngzd", + "BuffID2": "BOsf", + "targs3": "_", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 30, + "Cost3": 150, + "Area3": 200, + "Rng3": 800, + "DataB3": 1, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "ngza", + "BuffID3": "BOsf", + "targs4": "_", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 30, + "Cost4": 150, + "Area4": 200, + "Rng4": 800, + "DataB4": 1, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "ngz4", + "BuffID4": "BOsf", + "InBeta": 0, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "ngzc,ngzd,ngza,ngz4", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMisha.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Researchart:hd": "ReplaceableTextures\\CommandButtons\\BTNMisha.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "Aamk": { + "alias": "Aamk", + "code": "Aamk", + "comments": "Attribute Modifier Skill", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": 3, + "DataC1": 3, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 0, + "Cost2": 0, + "Area2": "-", + "Rng2": "-", + "DataA2": 6, + "DataB2": 6, + "DataC2": 6, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 0, + "Cost3": 0, + "Area3": "-", + "Rng3": "-", + "DataA3": 9, + "DataB3": 9, + "DataC3": 9, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 0, + "Cost4": 0, + "Area4": "-", + "Rng4": "-", + "DataA4": 12, + "DataB4": 12, + "DataC4": 12, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "1,1", + "Researchbuttonpos": "3,1", + "Order": "attributemodskill", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNStatUp.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStatUp.blp" + }, + "Arsq": { + "alias": "Arsq", + "code": "ANsq", + "comments": "Rexxar - Summon Quilbeast", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 70, + "HeroDur1": 70, + "Cool1": 20, + "Cost1": 50, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nqb1", + "BuffID1": "BNsq", + "targs2": "_", + "Cast2": 0, + "Dur2": 70, + "HeroDur2": 70, + "Cool2": 20, + "Cost2": 50, + "Area2": 200, + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nqb2", + "BuffID2": "BNsq", + "targs3": "_", + "Cast3": 0, + "Dur3": 70, + "HeroDur3": 70, + "Cool3": 20, + "Cost3": 50, + "Area3": 200, + "Rng3": "-", + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nqb3", + "BuffID3": "BNsq", + "targs4": "_", + "Cast4": 0, + "Dur4": 70, + "HeroDur4": 70, + "Cool4": 20, + "Cost4": 50, + "Area4": 200, + "Rng4": "-", + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nqb4", + "BuffID4": "BNsq", + "InBeta": 0, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "summonquillbeast", + "skinType": "ability", + "UnitSkinID": "nqb1,nqb2,nqb3,nqb4", + "Art": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "Arsp": { + "alias": "Arsp", + "code": "ANst", + "comments": "Rexxar - Stampede", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 2, + "reqLevel": 6, + "levelSkip": 6, + "priority": 0, + "targs1": "ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 180, + "Cost1": 150, + "Area1": 1000, + "Rng1": 300, + "DataA1": 2, + "DataB1": 55, + "DataC1": 80, + "DataD1": 275, + "DataE1": 0.2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNst", + "targs2": "ground,structure,enemy,neutral", + "Cast2": 0, + "Dur2": 30, + "HeroDur2": 30, + "Cool2": 180, + "Cost2": 150, + "Area2": 1300, + "Rng2": 400, + "DataA2": 2, + "DataB2": 55, + "DataC2": 130, + "DataD2": 275, + "DataE2": 0.2, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNst", + "targs3": "ground,structure,enemy,neutral", + "Cast3": 0, + "Dur3": 20, + "HeroDur3": 20, + "Cool3": 180, + "Cost3": 200, + "Area3": 600, + "Rng3": 1000, + "DataA3": 2, + "DataB3": 48, + "DataC3": 50, + "DataD3": 200, + "DataE3": 0.2, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNst", + "targs4": "ground,structure,enemy,neutral", + "Cast4": 0, + "Dur4": 20, + "HeroDur4": 20, + "Cool4": 180, + "Cost4": 200, + "Area4": 600, + "Rng4": 1000, + "DataA4": 3.5, + "DataB4": 48, + "DataC4": 50, + "DataD4": 200, + "DataE4": 0.2, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNst", + "InBeta": 0, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "500", + "Order": "stampede", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Specialart": "Abilities\\Spells\\Other\\Stampede\\MissileDeath.mdl", + "Missileart": "Abilities\\Spells\\Other\\Stampede\\StampedeMissile.mdl", + "Effectsoundlooped": "StampedeLoop", + "Effectsound": "StampedeCast", + "Animnames": "spell,looping" + }, + "ANsb": { + "alias": "ANsb", + "code": "AHtb", + "comments": "Rexxar - Storm Bolt", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,debris,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 3, + "Cool1": 9, + "Cost1": 75, + "Area1": "-", + "Rng1": 600, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "air,ground,debris,enemy,neutral,organic", + "Cast2": "-", + "Dur2": 7, + "HeroDur2": 4, + "Cool2": 9, + "Cost2": 75, + "Area2": "-", + "Rng2": 600, + "DataA2": 200, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BPSE", + "targs3": "air,ground,debris,enemy,neutral,organic", + "Cast3": "-", + "Dur3": 9, + "HeroDur3": 5, + "Cool3": 9, + "Cost3": 75, + "Area3": "-", + "Rng3": 600, + "DataA3": 300, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BPSE", + "targs4": "air,ground,debris,enemy,neutral,organic", + "Cast4": "-", + "Dur4": 12, + "HeroDur4": 6, + "Cool4": 9, + "Cost4": 75, + "Area4": "-", + "Rng4": 600, + "DataA4": 450, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BPSE", + "InBeta": 0, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "thunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Missileart": "Abilities\\Spells\\Human\\StormBolt\\StormBoltMissile.mdl", + "Animnames": "spell,throw" + }, + "ANhw": { + "alias": "ANhw", + "code": "AOhw", + "comments": "Rokhan - Healing Wave", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 90, + "Area1": 500, + "Rng1": 700, + "DataA1": 130, + "DataB1": 3, + "DataC1": 0.25, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "air,ground,friend,self,vuln,invu,organic", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 9, + "Cost2": 90, + "Area2": 500, + "Rng2": 700, + "DataA2": 215, + "DataB2": 4, + "DataC2": 0.25, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "air,ground,friend,self,vuln,invu,organic", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 9, + "Cost3": 90, + "Area3": 500, + "Rng3": 700, + "DataA3": 300, + "DataB3": 5, + "DataC3": 0.25, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "air,ground,friend,self,vuln,invu,organic", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 9, + "Cost4": 90, + "Area4": 500, + "Rng4": 700, + "DataA4": 425, + "DataB4": 6, + "DataC4": 0.25, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "healingwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Targetart": "Abilities\\Spells\\Orc\\HealingWave\\HealingWaveTarget.mdl", + "Animnames": "spell,throw", + "LightningEffect": "HWPB,HWSB" + }, + "Arsw": { + "alias": "Arsw", + "code": "AOwd", + "comments": "Rokhan - Serpent Ward", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 6.5, + "Cost1": 30, + "Area1": "-", + "Rng1": 500, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "osp1", + "BuffID1": "BOwd", + "targs2": "_", + "Cast2": 0, + "Dur2": 40, + "HeroDur2": 40, + "Cool2": 6.5, + "Cost2": 30, + "Area2": "-", + "Rng2": 500, + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "osp2", + "BuffID2": "BOwd", + "targs3": "_", + "Cast3": 0, + "Dur3": 40, + "HeroDur3": 40, + "Cool3": 6.5, + "Cost3": 30, + "Area3": "-", + "Rng3": 500, + "DataA3": 1, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "osp3", + "BuffID3": "BOwd", + "targs4": "_", + "Cast4": 0, + "Dur4": 40, + "HeroDur4": 40, + "Cool4": 6.5, + "Cost4": 30, + "Area4": "-", + "Rng4": 500, + "DataA4": 1, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "osp4", + "BuffID4": "BOwd", + "InBeta": 0, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "Serpentward", + "skinType": "ability", + "UnitSkinID": "osp1,osp2,osp3,osp4", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp" + }, + "ANhx": { + "alias": "ANhx", + "code": "AOhx", + "comments": "Rokhan - Hex", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 4, + "Cool1": 7, + "Cost1": 70, + "Area1": "-", + "Rng1": 800, + "DataA1": 99, + "DataB1": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC1": "nalb,nvul,nsno", + "DataD1": "nsha,npng", + "DataE1": "nshw,npnw", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOhx", + "targs2": "air,ground,enemy,organic,neutral", + "Cast2": 0, + "Dur2": 30, + "HeroDur2": 5, + "Cool2": 7, + "Cost2": 70, + "Area2": "-", + "Rng2": 800, + "DataA2": 99, + "DataB2": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC2": "nalb,nvul,nsno", + "DataD2": "nsha,npng", + "DataE2": "nshw,npnw", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOhx", + "targs3": "air,ground,enemy,organic,neutral", + "Cast3": 0, + "Dur3": 45, + "HeroDur3": 6, + "Cool3": 7, + "Cost3": 70, + "Area3": "-", + "Rng3": 800, + "DataA3": 99, + "DataB3": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC3": "nalb,nvul,nsno", + "DataD3": "nsha,npng", + "DataE3": "nshw,npnw", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOhx", + "targs4": "air,ground,enemy,organic,neutral", + "Cast4": 0, + "Dur4": 45, + "HeroDur4": 6, + "Cool4": 7, + "Cost4": 25, + "Area4": "-", + "Rng4": 800, + "DataA4": 99, + "DataB4": "npig,nsea,ncrb,nhmc,nrat,nfro,nech,necr,nrac", + "DataC4": "nalb,nvul,nsno", + "DataD4": "nsha,npng", + "DataE4": "nshw,npnw", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOhx", + "InBeta": 0, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "hex", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "AOls": { + "alias": "AOls", + "code": "AUls", + "comments": "Rokhan - Voodoo Spirits", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 2, + "reqLevel": 6, + "levelSkip": 6, + "priority": 0, + "targs1": "air,ground,structure,neutral,enemy", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 180, + "Cost1": 150, + "Area1": 800, + "Rng1": "-", + "DataA1": 20, + "DataB1": 0.2, + "DataC1": 7, + "DataD1": 0.75, + "DataE1": 20, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uloc", + "targs2": "air,ground,structure,neutral,enemy", + "Cast2": 0, + "Dur2": 30, + "HeroDur2": 30, + "Cool2": 180, + "Cost2": 150, + "Area2": 800, + "Rng2": "-", + "DataA2": 35, + "DataB2": 0.2, + "DataC2": 12, + "DataD2": 1, + "DataE2": 25, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "uloc", + "targs3": "air,ground,structure,neutral,enemy", + "Cast3": 0, + "Dur3": 30, + "HeroDur3": 30, + "Cool3": 180, + "Cost3": 150, + "Area3": 800, + "Rng3": "-", + "DataA3": 20, + "DataB3": 0.2, + "DataC3": 7, + "DataD3": 1, + "DataE3": 20, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "uloc", + "targs4": "air,ground,structure,neutral,enemy", + "Cast4": 0, + "Dur4": 30, + "HeroDur4": 30, + "Cool4": 180, + "Cost4": 150, + "Area4": 800, + "Rng4": "-", + "DataA4": 20, + "DataB4": 0.2, + "DataC4": 7, + "DataD4": 1, + "DataE4": 20, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "uloc", + "InBeta": 0, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "Locustswarm", + "skinType": "ability", + "UnitSkinID": "uloc,uloc,uloc,uloc", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Effectsoundlooped": "LocustSwarmLoop" + }, + "ANcf": { + "alias": "ANcf", + "code": "ANbf", + "comments": "Chen - Breath of Fire", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,structure", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 10, + "Cost1": 75, + "Area1": 150, + "Rng1": 500, + "DataA1": 50, + "DataB1": 99999, + "DataC1": 500, + "DataD1": 250, + "DataE1": 7, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNbf", + "targs2": "ground,air,structure", + "Cast2": "-", + "Dur2": 5, + "HeroDur2": 5, + "Cool2": 10, + "Cost2": 75, + "Area2": 150, + "Rng2": 700, + "DataA2": 100, + "DataB2": 99999, + "DataC2": 800, + "DataD2": 150, + "DataE2": 14, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNbf", + "targs3": "ground,air,structure", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 5, + "Cool3": 10, + "Cost3": 75, + "Area3": 150, + "Rng3": 700, + "DataA3": 150, + "DataB3": 99999, + "DataC3": 800, + "DataD3": 150, + "DataE3": 21, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNbf", + "targs4": "ground,air,structure", + "Cast4": "-", + "Dur4": 5, + "HeroDur4": 5, + "Cool4": 10, + "Cost4": 75, + "Area4": 150, + "Rng4": 700, + "DataA4": 225, + "DataB4": 99999, + "DataC4": 800, + "DataD4": 150, + "DataE4": 30, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNbf", + "InBeta": 0, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireMissile.mdl", + "Animnames": "spell,slam" + }, + "Acdb": { + "alias": "Acdb", + "code": "ANdb", + "comments": "Chen- Drunken Brawler", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": 2, + "DataC1": 0, + "DataD1": 0.07, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": 10, + "DataB2": 3, + "DataC2": 0, + "DataD2": 0.14, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": 10, + "DataB3": 4, + "DataC3": 0, + "DataD3": 0.21, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": 10, + "DataB4": 6, + "DataC4": 0, + "DataD4": 0.3, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrunkenDodge.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDrunkenDodge.blp" + }, + "Acdh": { + "alias": "Acdh", + "code": "ANdh", + "comments": "Chen - Drunken Haze", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 5, + "Cool1": 12, + "Cost1": 75, + "Area1": 200, + "Rng1": 550, + "DataA1": 0, + "DataB1": 0.45, + "DataC1": 0.5, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNdh", + "targs2": "air,ground,enemy,organic,neutral", + "Cast2": 0, + "Dur2": 12, + "HeroDur2": 5, + "Cool2": 12, + "Cost2": 75, + "Area2": 200, + "Rng2": 550, + "DataA2": 0, + "DataB2": 0.65, + "DataC2": 0.5, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNdh", + "targs3": "air,ground,enemy,organic,neutral", + "Cast3": 0, + "Dur3": 12, + "HeroDur3": 5, + "Cool3": 12, + "Cost3": 75, + "Area3": 200, + "Rng3": 550, + "DataA3": 0, + "DataB3": 0.8, + "DataC3": 0.5, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNdh", + "targs4": "air,ground,enemy,organic,neutral", + "Cast4": 0, + "Dur4": 12, + "HeroDur4": 5, + "Cool4": 12, + "Cost4": 75, + "Area4": 200, + "Rng4": 550, + "DataA4": 0, + "DataB4": 0.95, + "DataC4": 0.5, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNdh", + "InBeta": 0, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "Order": "drunkenhaze", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Missileart": "Abilities\\Spells\\Other\\StrongDrink\\BrewmasterMissile.mdl", + "Missilearc": "0.15" + }, + "Acef": { + "alias": "Acef", + "code": "ANef", + "comments": "Chen - Storm, Earth and Fire", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 2, + "reqLevel": 6, + "levelSkip": 6, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 180, + "Cost1": 150, + "Area1": 128, + "Rng1": "-", + "DataA1": "npn1,npn2,npn3", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNef", + "targs2": "_", + "Cast2": 0, + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 180, + "Cost2": 150, + "Area2": 128, + "Rng2": "-", + "DataA2": "npn4,npn5,npn6", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNef", + "targs3": "_", + "Cast3": 0, + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 180, + "Cost3": 150, + "Area3": 128, + "Rng3": "-", + "DataA3": "npn1,npn2,npn3", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNef", + "targs4": "_", + "Cast4": 0, + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 180, + "Cost4": 150, + "Area4": 128, + "Rng4": "-", + "DataA4": "npn1,npn2,npn3", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNef", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "elementalfury", + "Missilespeed": "150", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl", + "Missileart": "Units\\Creeps\\FirePandarenBrewmaster\\FirePandarenBrewmaster_Missile.mdl,Units\\Creeps\\StormPandarenBrewmaster\\StormPandarenBrewmaster_Missile.mdl,Units\\Creeps\\EarthPandarenBrewmaster\\EarthPandarenBrewmaster_Missile.mdl", + "Missilearc": "0.75", + "Effectsound": "StormEarthFireSound", + "Animnames": "spell,throw" + }, + "AOr2": { + "alias": "AOr2", + "code": "AOae", + "comments": "Cairne - Endurance Aura", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 0.05, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOae", + "targs2": "air,ground,friend,self,vuln,invu", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": 900, + "Rng2": "-", + "DataA2": 0.2, + "DataB2": 0.1, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOae", + "targs3": "air,ground,friend,self,vuln,invu", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": 900, + "Rng3": "-", + "DataA3": 0.3, + "DataB3": 0.15, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOae", + "targs4": "air,ground,friend,self,vuln,invu", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": 900, + "Rng4": "-", + "DataA4": 0.4, + "DataB4": 0.25, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOae", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCommand.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "AOr3": { + "alias": "AOr3", + "code": "AOre", + "comments": "Cairne - Reincarnation", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 2, + "reqLevel": 6, + "levelSkip": 6, + "priority": 0, + "targs1": "_", + "Cast1": 3, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 240, + "Cost1": " - ", + "Area1": "-", + "Rng1": "-", + "DataA1": 7, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XOre", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 120, + "Cost2": " - ", + "Area2": "-", + "Rng2": "-", + "DataA2": 2, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "EfctID2": "XOre", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 240, + "Cost3": " - ", + "Area3": "-", + "Rng3": "-", + "DataA3": 7, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "EfctID3": "XOre", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 240, + "Cost4": " - ", + "Area4": "-", + "Rng4": "-", + "DataA4": 7, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "EfctID4": "XOre", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "AOs2": { + "alias": "AOs2", + "code": "AOsh", + "comments": "Cairne - Shock Wave", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 100, + "Area1": 150, + "Rng1": 700, + "DataA1": 75, + "DataB1": 99999, + "DataC1": 800, + "DataD1": 150, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOsh", + "targs2": "ground,structure", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 8, + "Cost2": 100, + "Area2": 150, + "Rng2": 700, + "DataA2": 130, + "DataB2": 9999, + "DataC2": 800, + "DataD2": 150, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOsh", + "targs3": "ground,structure", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 8, + "Cost3": 100, + "Area3": 150, + "Rng3": 700, + "DataA3": 200, + "DataB3": 9999, + "DataC3": 800, + "DataD3": 150, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOsh", + "targs4": "ground,structure", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 8, + "Cost4": 100, + "Area4": 150, + "Rng4": 700, + "DataA4": 300, + "DataB4": 9999, + "DataC4": 800, + "DataD4": 150, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOsh", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "AOw2": { + "alias": "AOw2", + "code": "AOws", + "comments": "Cairne- War Stomp", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "orc", + "checkDep": 1, + "levels": 4, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,organic", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 2, + "Cool1": 6, + "Cost1": 90, + "Area1": 250, + "Rng1": "-", + "DataA1": 25, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "ground,organic", + "Cast2": "-", + "Dur2": 4, + "HeroDur2": 3, + "Cool2": 6, + "Cost2": 90, + "Area2": 300, + "Rng2": "-", + "DataA2": 50, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BPSE", + "targs3": "ground,organic", + "Cast3": "-", + "Dur3": 5, + "HeroDur3": 4, + "Cool3": 6, + "Cost3": 90, + "Area3": 350, + "Rng3": "-", + "DataA3": 75, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BPSE", + "targs4": "ground,organic", + "Cast4": "-", + "Dur4": 6, + "HeroDur4": 4.5, + "Cool4": 6, + "Cost4": 90, + "Area4": 350, + "Rng4": "-", + "DataA4": 100, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BPSE", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "spell,slam" + }, + "ANcl": { + "alias": "ANcl", + "code": "ANcl", + "comments": "Illidan - Channel", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": 180, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0.98, + "DataE1": 1, + "DataF1": "channel", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 0, + "Cost2": 0, + "Area2": "-", + "Rng2": 500, + "DataA2": 180, + "DataB2": 0, + "DataC2": 0, + "DataD2": 0.98, + "DataE2": 1, + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 0, + "Cost3": 0, + "Area3": "-", + "Rng3": 500, + "DataA3": 180, + "DataB3": 0, + "DataC3": 0, + "DataD3": 0.98, + "DataE3": 1, + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 0, + "Cost4": 0, + "Area4": "-", + "Rng4": 500, + "DataA4": 180, + "DataB4": 0, + "DataC4": 0, + "DataD4": 0.98, + "DataE4": 1, + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,0", + "Order": "channel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Casterart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Targetattach": "origin", + "Effectart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Animnames": "spell,channel" + }, + "Aadm": { + "alias": "Aadm", + "code": "Aadm", + "comments": "Abolish Magic", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 250, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Resi", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Andm": { + "alias": "Andm", + "code": "Aadm", + "comments": "Abolish Magic(naga)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 250, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rnsi", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "ACdm": { + "alias": "ACdm", + "code": "Aadm", + "comments": "Abolish Magic (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 75, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 150, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Resi", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "ACd2": { + "alias": "ACd2", + "code": "Aadm", + "comments": "Abolish Magic (Creep, 1,2 pos)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 75, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 150, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Resi", + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Aabs": { + "alias": "Aabs", + "code": "Aabs", + "comments": "Absorb Mana", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "player,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 0, + "DataB1": 99999, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "absorbmana", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAbsorbMagic.blp", + "Missileart": "Abilities\\Spells\\Undead\\AbsorbMana\\AbsorbManaBirthMissile.mdl" + }, + "Aaha": { + "alias": "Aaha", + "code": "Aaha", + "comments": "Acolyte Harvest", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 200, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Effectsound": "AcolyteMining", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "ANav": { + "alias": "ANav", + "code": "AHav", + "comments": "Avatar(Garithos)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 180, + "Cost1": 150, + "Area1": 0.5, + "Rng1": "-", + "DataA1": 5, + "DataB1": 500, + "DataC1": 20, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 180, + "Cost2": 150, + "Area2": 0.5, + "Rng2": "-", + "DataA2": 5, + "DataB2": 500, + "DataC2": 20, + "DataD2": 0, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 180, + "Cost3": 150, + "Area3": 0.5, + "Rng3": "-", + "DataA3": 5, + "DataB3": 500, + "DataC3": 20, + "DataD3": 0, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 180, + "Cost4": 150, + "Area4": 0.5, + "Rng4": "-", + "DataA4": 5, + "DataB4": 500, + "DataC4": 20, + "DataD4": 0, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "avatar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAvatarOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAvatarOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAvatar.blp", + "Effectsound": "HowlOfTerror" + }, + "Aalr": { + "alias": "Aalr", + "code": "Aalr", + "comments": "Alarm", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,vuln,invu", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Aalr" + }, + "Aall": { + "alias": "Aall", + "code": "Aall", + "comments": "Allied Building", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 350, + "DataA1": 600, + "DataB1": 1, + "DataC1": 1, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "Unbuttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOff.blp", + "Casterart": "Abilities\\Spells\\Other\\Aneu\\AneuCaster.mdl", + "Targetart": "Abilities\\Spells\\Other\\Aneu\\AneuTarget.mdl", + "Casterattach": "overhead", + "Targetattach": "overhead" + }, + "Aast": { + "alias": "Aast", + "code": "Aast", + "comments": "Ancestral Spirit", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,player,dead", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 250, + "Area1": "-", + "Rng1": 350, + "DataA1": 1, + "DataB1": 0.25, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rowt", + "Requiresamount": "2", + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAncestralSpirit.blp", + "Casterart": "Abilities\\Spells\\Orc\\AncestralSpirit\\AncestralSpiritCaster.mdl", + "Targetart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "ACad": { + "alias": "ACad", + "code": "ACad", + "comments": "Animate Dead (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 180, + "Cost1": 150, + "Area1": 900, + "Rng1": 400, + "DataA1": 6, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUan", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "Aams": { + "alias": "Aams", + "code": "Aams", + "comments": "Anti-magic Shield", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,vuln,invu", + "Cast1": 0, + "Dur1": 90, + "HeroDur1": 90, + "Cool1": 0, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bams,Bam2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Ruba", + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Aam2": { + "alias": "Aam2", + "code": "Aams", + "comments": "Anti-magic Shield (Matrix)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,vuln,invu,friend,self", + "Cast1": 0, + "Dur1": 90, + "HeroDur1": 90, + "Cool1": 0, + "Cost1": 75, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 0, + "DataC1": 300, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bams,Bam2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Ruba", + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "ACam": { + "alias": "ACam", + "code": "Aams", + "comments": "Anti-magic Shield (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,vuln,invu", + "Cast1": 0, + "Dur1": 90, + "HeroDur1": 90, + "Cool1": 0, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bams,Bam2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Ruba", + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Aatk": { + "alias": "Aatk", + "code": "Aatk", + "comments": "Attack", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Aatk" + }, + "ACba": { + "alias": "ACba", + "code": "AHab", + "comments": "Aura - Brilliance (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.5, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHab", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Human\\Brilliance\\Brilliance.mdl", + "Targetattach": "origin" + }, + "ACac": { + "alias": "ACac", + "code": "AOac", + "comments": "Aura - Command (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 1, + "DataC1": 1, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOac", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "ACav": { + "alias": "ACav", + "code": "AHad", + "comments": "Aura - Devotion (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 3, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHad", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Human\\DevotionAura\\DevotionAura.mdl", + "Targetattach": "origin" + }, + "SCae": { + "alias": "SCae", + "code": "AOae", + "comments": "Aura - Endurance (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 0.05, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOae", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "Aap1": { + "alias": "Aap1", + "code": "Aapl", + "comments": "Aura - Plague (Abomination)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 176, + "Rng1": "-", + "DataA1": 75, + "DataB1": 2, + "DataC1": 10, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uplg", + "BuffID1": "Bapl", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap2": { + "alias": "Aap2", + "code": "Aapl", + "comments": "Aura - Plague (Plague Ward)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": "-", + "DataA1": 75, + "DataB1": 2, + "DataC1": -1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bapl,Bplg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Rupc", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap3": { + "alias": "Aap3", + "code": "Aapl", + "comments": "Aura - Plague (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": "-", + "DataA1": 75, + "DataB1": 1, + "DataC1": 10, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uplg", + "BuffID1": "Bapl,Bplg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap4": { + "alias": "Aap4", + "code": "Aapl", + "comments": "Aura - Plague (Creep gfx)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": -1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bapl,Bplg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap5": { + "alias": "Aap5", + "code": "Aapl", + "comments": "Aura - Plague (Animated Dead)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 176, + "Rng1": "-", + "DataA1": 75, + "DataB1": 2, + "DataC1": 10, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uplg", + "BuffID1": "Bapl", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aoar": { + "alias": "Aoar", + "code": "Aoar", + "comments": "Aura - Regeneration (Ward)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,organic,vuln,invu,friend,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 450, + "Rng1": "-", + "DataA1": 0.02, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Boar", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "Aabr": { + "alias": "Aabr", + "code": "Aabr", + "comments": "Aura - Regeneration (Statue)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,organic,vuln,invu,friend,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 700, + "Rng1": "-", + "DataA1": 0.004, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Babr", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\RegenerationAura\\ObsidianRegenAura.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNRegenerationAura.blp", + "Targetattach": "origin" + }, + "Aasl": { + "alias": "Aasl", + "code": "Aasl", + "comments": "Aura - Slow", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": " - ", + "DataA1": -0.6, + "DataB1": 0, + "DataC1": " - ", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Basl", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": "-", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": "-", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": "-", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "ACat": { + "alias": "ACat", + "code": "AEar", + "comments": "Aura - Trueshot (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 0, + "DataC1": 1, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEar", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TrueshotAura\\TrueshotAura.mdl", + "Targetattach": "origin" + }, + "Aakb": { + "alias": "Aakb", + "code": "Aakb", + "comments": "Aura - War Drums", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 1, + "DataC1": 1, + "DataD1": 0, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bakb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrum.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "Aave": { + "alias": "Aave", + "code": "Aave", + "comments": "Avenger Form", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 1, + "Dur1": 1.1, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": -1, + "Rng1": "-", + "DataA1": "uobs", + "DataB1": 31, + "DataC1": 1, + "DataD1": 0, + "DataE1": 8, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ubsp", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "sphinxform", + "Unorder": "unsphinxform", + "Requires": "Rusp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDestroyer.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNObsidianStatue.blp" + }, + "Aawa": { + "alias": "Aawa", + "code": "Aawa", + "comments": "Awaken", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "awaken", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\Awaken\\Awaken.mdl" + }, + "Abof": { + "alias": "Abof", + "code": "Abof", + "comments": "Balls of Fire", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,friend,structure,self,ward", + "Cast1": 0, + "Dur1": 2.51, + "HeroDur1": 1.01, + "Cool1": 10, + "Cost1": 125, + "Area1": 150, + "Rng1": 800, + "DataA1": 6, + "DataB1": 0.5, + "DataC1": 3, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bbof", + "EfctID1": "Xbof", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "900", + "Requires": "Robf", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFireRocks.blp", + "Missileart": "Abilities\\Weapons\\DemolisherFireMissile\\DemolisherFireMissile.mdl", + "Missilearc": "0.35" + }, + "ACbn": { + "alias": "ACbn", + "code": "AHbn", + "comments": "Banish(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonsapper,organic", + "Cast1": 0, + "Dur1": 24, + "HeroDur1": 6, + "Cool1": 10, + "Cost1": 50, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.5, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHbn", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "banish", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp" + }, + "ACbh": { + "alias": "ACbh", + "code": "AHbh", + "comments": "Bash (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 15, + "DataB1": 0, + "DataC1": 25, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "ANbh": { + "alias": "ANbh", + "code": "AHbh", + "comments": "Bash (Beastmaster Bear)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 25, + "DataB1": 0, + "DataC1": 25, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "ANb2": { + "alias": "ANb2", + "code": "AHbh", + "comments": "Bash (maul , SP Bear, level 3)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 35, + "DataB1": 0, + "DataC1": 50, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "Abtl": { + "alias": "Abtl", + "code": "Abtl", + "comments": "Battlestations", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,player,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 2000, + "Rng1": "-", + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "opeo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "battlestations", + "skinType": "ability", + "UnitSkinID": "opeo", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleStations.blp", + "Effectsound": "BurrowBattleStations" + }, + "Sbtl": { + "alias": "Sbtl", + "code": "Abtl", + "comments": "Battlestations (Chaos)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,player,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 2000, + "Rng1": "-", + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ncpn", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "battlestations", + "skinType": "ability", + "UnitSkinID": "ncpn", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleStations.blp", + "Effectsound": "BurrowBattleStations" + }, + "Abrf": { + "alias": "Abrf", + "code": "Abrf", + "comments": "Bearform", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.45, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 25, + "Area1": "-", + "Rng1": "-", + "DataA1": "edoc", + "DataB1": 1, + "DataC1": 0, + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "edcm", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": " - ", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": " - ", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": " - ", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": " - ", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": " - ", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": " - ", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Requires": "Redc", + "Requiresamount": "2", + "Order": "bearform", + "Unorder": "unbearform", + "skinType": "ability", + "UnitSkinID": "edcm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBearForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDruidOfTheClaw.blp" + }, + "Absk": { + "alias": "Absk", + "code": "Absk", + "comments": "Beserk", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.2, + "DataB1": 0.5, + "DataC1": 0.4, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bbsk", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "berserk", + "Requires": "Robk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBerserkForTrolls.blp" + }, + "Sbsk": { + "alias": "Sbsk", + "code": "Acha", + "comments": "Berserker Upgrade", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "otbk", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Robk", + "skinType": "ability", + "UnitSkinID": "otbk" + }, + "ACbk": { + "alias": "ACbk", + "code": "ANba", + "comments": "Black Arrow (melee, creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 2, + "Cost1": 6, + "Area1": "-", + "Rng1": 600, + "DataA1": 2, + "DataB1": 1, + "DataC1": 80, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ndr1", + "BuffID1": "BNba,BNdm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1050", + "MissileHoming": "1", + "Orderon": "blackarrowon", + "Orderoff": "blackarrowoff", + "Order": "blackarrow", + "skinType": "ability", + "UnitSkinID": "ndr1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Missileart": "Abilities\\Spells\\Other\\BlackArrow\\BlackArrowMissile.mdl", + "Animnames": "attack" + }, + "Abds": { + "alias": "Abds", + "code": "Abli", + "comments": "Blight Dispel (Small)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.08, + "HeroDur1": 0.08, + "Cool1": 0, + "Cost1": 0, + "Area1": 768, + "Rng1": "-", + "DataA1": 64, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Abds" + }, + "Abdl": { + "alias": "Abdl", + "code": "Abli", + "comments": "Blight Dispel (Large)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.08, + "HeroDur1": 0.08, + "Cool1": 0, + "Cost1": 0, + "Area1": 960, + "Rng1": "-", + "DataA1": 64, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Abdl" + }, + "Abgs": { + "alias": "Abgs", + "code": "Abli", + "comments": "Blight Growth (Small)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.08, + "HeroDur1": 0.08, + "Cool1": 0, + "Cost1": 0, + "Area1": 768, + "Rng1": "-", + "DataA1": 64, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Abgs" + }, + "Abgl": { + "alias": "Abgl", + "code": "Abli", + "comments": "Blight Growth (Large)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.08, + "HeroDur1": 0.08, + "Cool1": 0, + "Cost1": 0, + "Area1": 960, + "Rng1": "-", + "DataA1": 64, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Abgl" + }, + "Abgm": { + "alias": "Abgm", + "code": "Abgm", + "comments": "Blighted Gold mine", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": 1, + "DataC1": 5, + "DataD1": 200, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": " - ", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": " - ", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": " - ", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": " - ", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": " - ", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": " - ", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectart": "Abilities\\Spells\\Undead\\UndeadMine\\UndeadMineCircle.mdl", + "Effectsoundlooped": "MineDomeLoop" + }, + "ANbl": { + "alias": "ANbl", + "code": "AEbl", + "comments": "Blink(Beastmaster Bear)", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "nightelf", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.33, + "HeroDur1": 0, + "Cool1": 15, + "Cost1": 0, + "Area1": "-", + "Rng1": 99999, + "DataA1": 1050, + "DataB1": 150, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": 0.33, + "HeroDur2": "-", + "Cool2": 10, + "Cost2": 10, + "Area2": "-", + "Rng2": 99999, + "DataA2": 1075, + "DataB2": 200, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": 0.33, + "HeroDur3": "-", + "Cool3": 1, + "Cost3": 10, + "Area3": "-", + "Rng3": 99999, + "DataA3": 1150, + "DataB3": 200, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": 0.33, + "HeroDur4": "-", + "Cool4": 1, + "Cost4": 10, + "Area4": "-", + "Rng4": 99999, + "DataA4": 1150, + "DataB4": 200, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "blink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBearBlink.blp", + "Areaeffectart": "Abilities\\Spells\\NightElf\\Blink\\BlinkTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Blink\\BlinkCaster.mdl", + "Animnames": "spell,throw" + }, + "ACbz": { + "alias": "ACbz", + "code": "AHbz", + "comments": "Blizzard (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0.599, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 12, + "Cost1": 125, + "Area1": 200, + "Rng1": 800, + "DataA1": 6, + "DataB1": 15, + "DataC1": 6, + "DataD1": 0.5, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHbd,BHbz", + "EfctID1": "XHbz", + "targs2": "_", + "Cast2": "-", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": "-", + "Cost2": "-", + "Area2": " - ", + "Rng2": " - ", + "DataA2": " - ", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": " - ", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": " - ", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": " - ", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": " - ", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": " - ", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "blizzard", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Animnames": "spell,looping" + }, + "Ablo": { + "alias": "Ablo", + "code": "Ablo", + "comments": "Bloodlust", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 11, + "targs1": "air,ground,friend,organic,self,neutral", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 1, + "Cost1": 35, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.4, + "DataB1": 0.25, + "DataC1": 0.3, + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bblo", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": " - ", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": " - ", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": " - ", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": " - ", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": " - ", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": " - ", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Requires": "Rost", + "Requiresamount": "2", + "Order": "bloodlust", + "OrderOn": "bloodluston", + "OrderOff": "bloodlustoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "ACbl": { + "alias": "ACbl", + "code": "Ablo", + "comments": "Bloodlust (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 11, + "targs1": "air,ground,friend,organic,self,neutral", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.4, + "DataB1": 0.25, + "DataC1": 0.3, + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bblo", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": " - ", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": " - ", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": " - ", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": " - ", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": " - ", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": " - ", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "bloodlust", + "OrderOn": "bloodluston", + "OrderOff": "bloodlustoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "ACbb": { + "alias": "ACbb", + "code": "Ablo", + "comments": "Bloodlust (creep, Hotkey B)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 11, + "targs1": "air,ground,friend,organic,self,neutral", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 8, + "Cost1": 50, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.4, + "DataB1": 0.25, + "DataC1": 0.3, + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bblo", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": " - ", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": " - ", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": " - ", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": " - ", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": " - ", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": " - ", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "bloodlust", + "OrderOn": "bloodluston", + "OrderOff": "bloodlustoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "ACbc": { + "alias": "ACbc", + "code": "ANbf", + "comments": "Breath of Fire(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 10, + "Cost1": 125, + "Area1": 150, + "Rng1": 700, + "DataA1": 150, + "DataB1": 99999, + "DataC1": 800, + "DataD1": 150, + "DataE1": 21, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNbf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireForTheCannon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFireForTheCannon.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireMissile.mdl", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireDamage.mdl", + "Animnames": "spell,slam" + }, + "ACbf": { + "alias": "ACbf", + "code": "ACbf", + "comments": "Breath of Frost(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 10, + "Cost1": 125, + "Area1": 125, + "Rng1": 375, + "DataA1": 50, + "DataB1": 99999, + "DataC1": 375, + "DataD1": 300, + "DataE1": 7, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BCbf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFrost.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFrost\\BreathOfFrostMissile.mdl", + "Animnames": "spell,slam" + }, + "ANbu": { + "alias": "ANbu", + "code": "ANbu", + "comments": "Build (Neutral)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "build", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBasicStruct.blp" + }, + "AHbu": { + "alias": "AHbu", + "code": "AHbu", + "comments": "Build (Human)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "humanbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanBuild.blp" + }, + "AObu": { + "alias": "AObu", + "code": "AObu", + "comments": "Build (Orc)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "orcbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBasicStruct.blp" + }, + "AEbu": { + "alias": "AEbu", + "code": "AEbu", + "comments": "Build (Night Elf)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "nightelfbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfBuild.blp" + }, + "AUbu": { + "alias": "AUbu", + "code": "AUbu", + "comments": "Build (Undead)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "undeadbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScourgeBuild.blp" + }, + "AGbu": { + "alias": "AGbu", + "code": "AGbu", + "comments": "Build (Naga)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "nagabuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBasicStruct.blp" + }, + "Abur": { + "alias": "Abur", + "code": "Abur", + "comments": "Burrow", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.45, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "ucry", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ucrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rubu", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "Abu2": { + "alias": "Abu2", + "code": "Abur", + "comments": "Burrow(scarab lvl 2)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.45, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "ucs2", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ucsB", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rubu", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "Abu3": { + "alias": "Abu3", + "code": "Abur", + "comments": "Burrow(scarab lvl 3)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.45, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "ucs3", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ucsC", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rubu", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "Abu5": { + "alias": "Abu5", + "code": "Abur", + "comments": "Burrow(Barbed Arachnathid)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.45, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "nanm", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nbnb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "UnitSkinID": "nbnb", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "Abdt": { + "alias": "Abdt", + "code": "Abdt", + "comments": "Burrow Detection (Flyers)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Acan": { + "alias": "Acan", + "code": "Acan", + "comments": "Cannibalize", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,dead,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 50, + "DataA1": 16, + "DataB1": 800, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Ruac", + "Buttonpos": "0,2", + "Order": "cannibalize", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannibalize.blp", + "Animnames": "stand,channel" + }, + "Acn2": { + "alias": "Acn2", + "code": "Acan", + "comments": "Cannibalize (Abomination)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,dead,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 50, + "DataA1": 25, + "DataB1": 800, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Ruac", + "Buttonpos": "0,2", + "Order": "cannibalize", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannibalize.blp", + "Animnames": "stand,channel" + }, + "ACcn": { + "alias": "ACcn", + "code": "Acan", + "comments": "Cannibalize (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,dead,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 50, + "DataA1": 12, + "DataB1": 800, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "cannibalize", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannibalize.blp", + "Animnames": "spell,channel" + }, + "Abun": { + "alias": "Abun", + "code": "Abun", + "comments": "Cargo Hold (Burrow)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,player,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 0, + "Area1": 250, + "Rng1": 120, + "DataA1": 4, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Advc": { + "alias": "Advc", + "code": "Advc", + "comments": "Cargo Hold (Devour)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,vuln,invu", + "Cast1": 0, + "Dur1": 0.5, + "HeroDur1": 0.5, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": 120, + "DataA1": 4, + "DataB1": 5, + "DataC1": 5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Advc" + }, + "Sch2": { + "alias": "Sch2", + "code": "Amtc", + "comments": "Cargo Hold (Meat Wagon)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "dead", + "Cast1": 0, + "Dur1": 0.5, + "HeroDur1": 0.5, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": 160, + "DataA1": 8, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Sch5": { + "alias": "Sch5", + "code": "Acar", + "comments": "Cargo Hold (Ship)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,vuln,invu,nonsapper", + "Cast1": 0, + "Dur1": 0.5, + "HeroDur1": 0.5, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": 200, + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Sch4": { + "alias": "Sch4", + "code": "Acar", + "comments": "Cargo Hold (Tank)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,vuln,invu", + "Cast1": 0, + "Dur1": 0.5, + "HeroDur1": 0.5, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": 160, + "DataA1": 4, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Sch3": { + "alias": "Sch3", + "code": "Acar", + "comments": "Cargo Hold (Transport)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,vuln,invu,nonsapper", + "Cast1": 0, + "Dur1": 0.5, + "HeroDur1": 0.5, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": 160, + "DataA1": 8, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Aenc": { + "alias": "Aenc", + "code": "Aenc", + "comments": "Cargo Hold (Gold Mine)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,player,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 250, + "Rng1": 120, + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUnload.blp", + "Effectsound": "WispLoad" + }, + "Achd": { + "alias": "Achd", + "code": "Achd", + "comments": "Cargo Hold Death", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,vuln,invu", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 50, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": 10, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "ACca": { + "alias": "ACca", + "code": "AUcs", + "comments": "Carrion Swarm (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 100, + "Area1": 100, + "Rng1": 700, + "DataA1": 75, + "DataB1": 300, + "DataC1": 800, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUcs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCarrionSwarm.blp", + "Missileart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmMissile.mdl", + "Specialart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmDamage.mdl", + "Animnames": "attack,slam" + }, + "ACcv": { + "alias": "ACcv", + "code": "AUcs", + "comments": "Crushing Wave", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 100, + "Area1": 100, + "Rng1": 700, + "DataA1": 150, + "DataB1": 900, + "DataC1": 800, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUcs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Missileart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveMissile.mdl", + "Specialart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveDamage.mdl", + "Animnames": "attack,slam" + }, + "ACc2": { + "alias": "ACc2", + "code": "AUcs", + "comments": "Crushing Wave (Dragon Turtle)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 100, + "Area1": 100, + "Rng1": 700, + "DataA1": 150, + "DataB1": 900, + "DataC1": 800, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUcs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Missileart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveMissile.mdl", + "Specialart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveDamage.mdl", + "Animnames": "attack,slam" + }, + "ACc3": { + "alias": "ACc3", + "code": "AUcs", + "comments": "Crushing Wave (Lesser)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 10, + "Cost1": 125, + "Area1": 100, + "Rng1": 700, + "DataA1": 100, + "DataB1": 300, + "DataC1": 800, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUcs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Missileart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveMissile.mdl", + "Specialart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveDamage.mdl", + "Animnames": "attack,slam" + }, + "ACcl": { + "alias": "ACcl", + "code": "AOcl", + "comments": "Chain Lightning (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 120, + "Area1": 500, + "Rng1": 700, + "DataA1": 100, + "DataB1": 4, + "DataC1": 0.25, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1500", + "Order": "chainlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Missileart": "Abilities\\Spells\\Orc\\LightningBolt\\LightningBoltMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "Animnames": "spell,throw", + "LightningEffect": "CLPB,CLSB" + }, + "Ache": { + "alias": "Ache", + "code": "AIdc", + "comments": "Chain Dispel", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,enemy,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 15, + "Cost1": 75, + "Area1": 400, + "Rng1": 700, + "DataA1": 0, + "DataB1": 0, + "DataC1": 8, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfNeutralization.blp", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "Sca1": { + "alias": "Sca1", + "code": "Acha", + "comments": "Chaos (Grunt)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nchg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nchg" + }, + "Sca2": { + "alias": "Sca2", + "code": "Acha", + "comments": "Chaos (Raider)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nchr", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nchr" + }, + "Sca3": { + "alias": "Sca3", + "code": "Acha", + "comments": "Chaos (Shaman)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nchw", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nchw" + }, + "Sca4": { + "alias": "Sca4", + "code": "Acha", + "comments": "Chaos (Kodo)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nckb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nckb" + }, + "Sca5": { + "alias": "Sca5", + "code": "Acha", + "comments": "Chaos (Peon)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ncpn", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "ncpn" + }, + "Sca6": { + "alias": "Sca6", + "code": "Acha", + "comments": "Chaos (Grom)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Opgh", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "Opgh" + }, + "Achl": { + "alias": "Achl", + "code": "Achl", + "comments": "Chaos Cargo Load", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ncpn", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "ncpn" + }, + "ACch": { + "alias": "ACch", + "code": "ANch", + "comments": "Charm", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 125, + "Area1": "-", + "Rng1": 700, + "DataA1": 6, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Order": "charm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCharm.blp", + "Targetart": "Abilities\\Spells\\Other\\Charm\\CharmTarget.mdl", + "Targetattach": "overhead" + }, + "ACce": { + "alias": "ACce", + "code": "ANca", + "comments": "Cleaving Attack (Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 150, + "Rng1": "-", + "DataA1": 0.25, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "-", + "InBeta": 0, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCleavingAttack.blp", + "Specialart": "Abilities\\Spells\\Other\\Cleave\\CleaveDamageTarget.mdl", + "Specialattach": "chest" + }, + "Aclf": { + "alias": "Aclf", + "code": "Aclf", + "comments": "Cloud of Fog", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu,structure", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 20, + "Cost1": 100, + "Area1": 300, + "Rng1": 1000, + "DataA1": 2, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bclf", + "EfctID1": "Xclf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rhcd", + "Buttonpos": "1,2", + "Order": "cloudoffog", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloudOfFog.blp", + "Animnames": "stand,channel" + }, + "ACcw": { + "alias": "ACcw", + "code": "AHca", + "comments": "Cold Arrows (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 5, + "Area1": "-", + "Rng1": 700, + "DataA1": 1, + "DataB1": 0.25, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHca,Bcsd,Bcsi", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOff.blp", + "Missileart": "Abilities\\Weapons\\ColdArrow\\ColdArrowMissile.mdl", + "Missilearc": "0.15", + "Animnames": "attack" + }, + "Acmg": { + "alias": "Acmg", + "code": "Acmg", + "comments": "Control Magic", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,ward,organic", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 5, + "Cost1": 40, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0.35, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcmg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rhss", + "Buttonpos": "1,2", + "Order": "controlmagic", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNControlMagic.blp", + "Targetart": "Abilities\\Spells\\Human\\ControlMagic\\ControlMagicTarget.mdl", + "Targetattach": "overhead" + }, + "Acpf": { + "alias": "Acpf", + "code": "Acpf", + "comments": "Corporeal Form", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.7, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "ospm", + "DataB1": 1, + "DataC1": 0, + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ospw", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "corporealform", + "Unorder": "uncorporealform", + "skinType": "ability", + "UnitSkinID": "ospw", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritwalker.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNEtherealFormOn.blp", + "Casterart": "Abilities\\Spells\\Orc\\EtherealForm\\SpiritWalkerChange.mdl", + "Casterattach": "chest", + "Effectsound": "SpiritwalkerMorph" + }, + "Acor": { + "alias": "Acor", + "code": "Acor", + "comments": "Corrosive Breath", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": 50, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Recb", + "Missilespeed": "1000", + "Order": "corrosivebreath", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCorrosiveBreath.blp", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl" + }, + "Acoa": { + "alias": "Acoa", + "code": "Acoa", + "comments": "Couple (Archer)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "ehip", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ehpr", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "ehip", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp", + "Effectsound": "HippogryphTaming" + }, + "Acoh": { + "alias": "Acoh", + "code": "Acoh", + "comments": "Couple (Hippogryph)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "earc", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ehpr", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "ehip", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp", + "Effectsound": "HippogryphTaming" + }, + "Aco2": { + "alias": "Aco2", + "code": "Acoi", + "comments": "Couple Instant (Archer)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 0, + "Area1": 900, + "Rng1": 99999, + "DataA1": "ehip", + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ehpr", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "ehip", + "Buttonpos": "0,2", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp" + }, + "Aco3": { + "alias": "Aco3", + "code": "Acoi", + "comments": "Couple Instant (Hippogryph)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 0, + "Area1": 900, + "Rng1": 0, + "DataA1": "earc", + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ehpr", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "ehip", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp", + "Effectsound": "HippogryphTaming" + }, + "ACsp": { + "alias": "ACsp", + "code": "ACsp", + "comments": "Creep Sleep", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "creepsleep", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Casterart": "Abilities\\Spells\\Other\\CreepSleep\\CreepSleepTarget.mdl", + "Casterattach": "overhead", + "Effectsoundlooped": "CreepSleepSnoreLoop" + }, + "Acri": { + "alias": "Acri", + "code": "Acri", + "comments": "Cripple", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 10, + "Cool1": 10, + "Cost1": 90, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.75, + "DataB1": 0.5, + "DataC1": 0.5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcri", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rune", + "Requiresamount": "2", + "Buttonpos": "2,2", + "order": "cripple", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "Scri": { + "alias": "Scri", + "code": "Acri", + "comments": "Cripple (Warlock)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 10, + "Cool1": 10, + "Cost1": 175, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.75, + "DataB1": 0.5, + "DataC1": 0.5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcri", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "order": "cripple", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "ACcr": { + "alias": "ACcr", + "code": "Acri", + "comments": "Cripple (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 10, + "Cool1": 10, + "Cost1": 175, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.75, + "DataB1": 0.5, + "DataC1": 0.5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcri", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "order": "cripple", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "ACct": { + "alias": "ACct", + "code": "AOcr", + "comments": "Critical Strike (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 20, + "DataB1": 2, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCriticalStrike.blp" + }, + "Acrs": { + "alias": "Acrs", + "code": "Acrs", + "comments": "Curse", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 1, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 30, + "Cool1": 1, + "Cost1": 40, + "Area1": "-", + "Rng1": 700, + "DataA1": 0.33, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcrs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "curse", + "Orderon": "curseon", + "Orderoff": "curseoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCurseOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCurseOff.blp" + }, + "ACcs": { + "alias": "ACcs", + "code": "Acrs", + "comments": "Curse (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 1, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 15, + "Cool1": 8, + "Cost1": 40, + "Area1": "-", + "Rng1": 700, + "DataA1": 0.33, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcrs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "curse", + "Orderon": "curseon", + "Orderoff": "curseoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCurseOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCurseOff.blp" + }, + "Acyc": { + "alias": "Acyc", + "code": "Acyc", + "comments": "Cyclone", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 6, + "Cool1": 5, + "Cost1": 150, + "Area1": "-", + "Rng1": 600, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcyc,Bcy2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Redt", + "Requiresamount": "2", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "Acny": { + "alias": "Acny", + "code": "Acyc", + "comments": "Cyclone (naga)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 6, + "Cool1": 5, + "Cost1": 150, + "Area1": "-", + "Rng1": 600, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcyc,Bcy2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Rnsw", + "Requiresamount": "2", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "ACcy": { + "alias": "ACcy", + "code": "Acyc", + "comments": "Cyclone (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 6, + "Cool1": 8, + "Cost1": 150, + "Area1": "-", + "Rng1": 600, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcyc,Bcy2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "SCc1": { + "alias": "SCc1", + "code": "Acyc", + "comments": "Cyclone (Cenarius)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 6, + "Cool1": 8, + "Cost1": 150, + "Area1": "-", + "Rng1": 600, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcyc,Bcy2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "ACdc": { + "alias": "ACdc", + "code": "AUdc", + "comments": "Death Coil (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,notself,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 800, + "DataA1": 400, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1100", + "MissileHoming": "1", + "Order": "deathcoil", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathCoil.blp", + "Missileart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilMissile.mdl", + "Specialart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl" + }, + "Adda": { + "alias": "Adda", + "code": "Adda", + "comments": "Death Damage (sapper)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,ward", + "Cast1": 0, + "Dur1": 0.3, + "HeroDur1": 0.3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 500, + "DataC1": 250, + "DataD1": 200, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Adda" + }, + "Amnx": { + "alias": "Amnx", + "code": "Adda", + "comments": "Death Damage (mine)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy", + "Cast1": 0, + "Dur1": 0.3, + "HeroDur1": 0.3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 150, + "DataB1": 700, + "DataC1": 400, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Amnx" + }, + "Amnz": { + "alias": "Amnz", + "code": "Adda", + "comments": "Death Damage (mine BIG)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy", + "Cast1": 0, + "Dur1": 0.3, + "HeroDur1": 0.3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 200, + "DataB1": 700, + "DataC1": 400, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Amnz" + }, + "Adec": { + "alias": "Adec", + "code": "Adec", + "comments": "Decouple", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 0, + "Area1": -1, + "Rng1": "-", + "DataA1": "earc", + "DataB1": "ehip", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "decouple", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcher.blp", + "Effectsound": "HippogryphTaming" + }, + "Adef": { + "alias": "Adef", + "code": "Adef", + "comments": "Defend", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,debris,neutral,enemy,ward,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.5, + "DataB1": 1, + "DataC1": 0.3, + "DataD1": 0, + "DataE1": 1, + "DataF1": 25, + "DataG1": 0, + "DataH1": 1, + "DataI1": 0, + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Requires": "Rhde", + "Order": "defend", + "Unorder": "undefend", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDefend.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDefendStop.blp", + "Casterart": "Abilities\\Spells\\Human\\Defend\\DefendCaster.mdl" + }, + "Adt1": { + "alias": "Adt1", + "code": "Adet", + "comments": "Detect (Sentry Ward)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 1100, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability" + }, + "Atru": { + "alias": "Atru", + "code": "Atru", + "comments": "Detect (Shade)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNShadeTrueSight.blp" + }, + "Adtg": { + "alias": "Adtg", + "code": "Atru", + "comments": "Detect (general)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNScout.blp" + }, + "ANtr": { + "alias": "ANtr", + "code": "Atru", + "comments": "Detect(War Eagle)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNScout.blp" + }, + "Agyv": { + "alias": "Agyv", + "code": "Agyv", + "comments": "Detect (Gyrocopter)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFlyingMachineTrueSight.blp" + }, + "Adts": { + "alias": "Adts", + "code": "Adts", + "comments": "Detect (Magic Sentinel)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,1", + "Requires": "Rhse", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMagicalSentry.blp", + "Casterart": "Abilities\\Spells\\Human\\MagicSentry\\MagicSentryCaster.mdl", + "Casterattach": "overhead" + }, + "Adtn": { + "alias": "Adtn", + "code": "Adtn", + "comments": "Detonate", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 300, + "Rng1": 100, + "DataA1": 40, + "DataB1": 225, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "detonate", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWispSplode.blp", + "Specialart": "Units\\NightElf\\Wisp\\WispExplode.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Adev": { + "alias": "Adev", + "code": "Adev", + "comments": "Devour", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,nonhero,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bdig,Bdvv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "devour", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevour.blp", + "Specialart": "Abilities\\Spells\\Orc\\Devour\\DevourEffectArt.mdl", + "Targetattach": "head,mount" + }, + "ACdv": { + "alias": "ACdv", + "code": "ACdv", + "comments": "Devour (Dragon Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,nonhero,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bdig,Bdvv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "creepdevour", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRedDragonDevour.blp", + "Animnames": "attack,spell" + }, + "Advm": { + "alias": "Advm", + "code": "Advm", + "comments": "Devour Magic", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 7, + "Cost1": 0, + "Area1": 200, + "Rng1": 600, + "DataA1": 50, + "DataB1": 75, + "DataC1": 0, + "DataD1": 0, + "DataE1": 160, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1200", + "MissileHoming": "1", + "skinType": "ability", + "Missilearc": "0.10", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevourMagic.blp", + "Missileart": "Abilities\\Spells\\Undead\\DevourMagic\\DevourMagicBirthMissile.mdl", + "Specialart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "ACde": { + "alias": "ACde", + "code": "Advm", + "comments": "Devour Magic(creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 6, + "Cost1": 0, + "Area1": 250, + "Rng1": 600, + "DataA1": 50, + "DataB1": 75, + "DataC1": 0, + "DataD1": 0, + "DataE1": 180, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevourMagic.blp", + "Missileart": "Abilities\\Spells\\Undead\\DevourMagic\\DevourMagicBirthMissile.mdl" + }, + "Adch": { + "alias": "Adch", + "code": "Adch", + "comments": "Disenchant(old)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,enemy", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 50, + "Area1": 200, + "Rng1": 500, + "DataA1": 0, + "DataB1": 300, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rowt", + "Requiresamount": "1", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDisenchant.blp", + "Targetart": "Abilities\\Spells\\Orc\\Disenchant\\DisenchantSpecialArt.mdl", + "Targetattach": "head", + "Effectsound": "Disenchant" + }, + "Adcn": { + "alias": "Adcn", + "code": "Adis", + "comments": "Disenchant(new)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 100, + "Area1": 250, + "Rng1": 650, + "DataA1": 0, + "DataB1": 250, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rowt", + "Requiresamount": "1", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDisenchant.blp", + "Targetart": "Abilities\\Spells\\Orc\\Disenchant\\DisenchantSpecialArt.mdl", + "Targetattach": "head", + "Effectsound": "Disenchant" + }, + "Adis": { + "alias": "Adis", + "code": "Adis", + "comments": "Dispel Magic", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 75, + "Area1": 200, + "Rng1": 700, + "DataA1": 0, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rhpt", + "Order": "dispel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDispelMagic.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Adsm": { + "alias": "Adsm", + "code": "Adis", + "comments": "Dispel Magic (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 75, + "Area1": 200, + "Rng1": 500, + "DataA1": 0, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "dispel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDispelMagic.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "ACds": { + "alias": "ACds", + "code": "AHds", + "comments": "Divine Shield (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 60, + "Cost1": 125, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHds", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "divineshield", + "Unorder": "undivineshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDivineShieldOff.blp" + }, + "ACdr": { + "alias": "ACdr", + "code": "AHdr", + "comments": "Drain Life(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 8, + "Cool1": 8, + "Cost1": 75, + "Area1": 950, + "Rng1": 500, + "DataA1": 55, + "DataB1": 0, + "DataC1": 1, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": 0, + "DataI1": 0, + "BuffID1": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp", + "Effectsoundlooped": "DrainLoop", + "Animnames": "stand,channel", + "LightningEffect": "DRAB,DRAL,DRAM" + }, + "Adri": { + "alias": "Adri", + "code": "Adri", + "comments": "Drop Instant", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 80, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "unload", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnLoad.blp" + }, + "Adro": { + "alias": "Adro", + "code": "Adro", + "comments": "Drop", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 80, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "unload", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnLoad.blp" + }, + "Sdro": { + "alias": "Sdro", + "code": "Adro", + "comments": "Drop", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 128, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "unload", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnLoad.blp" + }, + "Atdp": { + "alias": "Atdp", + "code": "Atdp", + "comments": "Drop Pilot", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Atdp" + }, + "Aeat": { + "alias": "Aeat", + "code": "Aeat", + "comments": "Eat Tree", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 32, + "DataA1": 0.8, + "DataB1": 2.5, + "DataC1": 500, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Beat", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "eattree", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEatTree.blp", + "Specialart": "Abilities\\Spells\\NightElf\\EatTree\\EatTreeSprite.mdl", + "Specialattach": "eattree" + }, + "Aegr": { + "alias": "Aegr", + "code": "AIdd", + "comments": "Elune's Grace", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.65, + "DataB1": 1, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0.8, + "DataF1": 0, + "DataG1": 1, + "DataH1": 1, + "DataI1": 0, + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNElunesBlessing.blp" + }, + "ANen": { + "alias": "ANen", + "code": "Aens", + "comments": "Ensnare(Naga)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,enemy,neutral", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 3, + "Cool1": 15, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.6, + "DataB1": 200, + "DataC1": 128, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bena,Beng", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Rnen", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "ensnare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Missileart": "Abilities\\Spells\\Orc\\Ensnare\\EnsnareMissile.mdl" + }, + "Aens": { + "alias": "Aens", + "code": "Aens", + "comments": "Ensnare", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,enemy,neutral", + "Cast1": 0, + "Dur1": 9, + "HeroDur1": 3, + "Cool1": 15, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.6, + "DataB1": 200, + "DataC1": 128, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bena,Beng", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Roen", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "ensnare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Missileart": "Abilities\\Spells\\Orc\\Ensnare\\EnsnareMissile.mdl" + }, + "ACen": { + "alias": "ACen", + "code": "Aens", + "comments": "Ensnare (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,enemy,nonhero,neutral", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 3, + "Cool1": 15, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.6, + "DataB1": 200, + "DataC1": 128, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bena,Beng", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Roen", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "ensnare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Missileart": "Abilities\\Spells\\Orc\\Ensnare\\EnsnareMissile.mdl", + "Animnames": "spell,entangle" + }, + "Aent": { + "alias": "Aent", + "code": "Aent", + "comments": "Entangle", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 3, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "egol", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "entangle", + "skinType": "ability", + "UnitSkinID": "egol", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoldMine.blp", + "Casterart": "Abilities\\Spells\\NightElf\\EntangleMine\\Roots.mdl", + "Casterattach": "origin" + }, + "Aegm": { + "alias": "Aegm", + "code": "Aegm", + "comments": "Entangled Gold Mine", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": 1, + "DataC1": " - ", + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Aegm" + }, + "Aenr": { + "alias": "Aenr", + "code": "AEer", + "comments": "Entangling Roots (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,nonhero,organic", + "Cast1": 0, + "Dur1": 6, + "HeroDur1": 3, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 600, + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEer", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "entanglingroots", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp" + }, + "Aenw": { + "alias": "Aenw", + "code": "AEer", + "comments": "Entangling Seaweed", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,nonhero,organic", + "Cast1": 0, + "Dur1": 6, + "HeroDur1": 3, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 600, + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEer", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "entanglingroots", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp" + }, + "Aetl": { + "alias": "Aetl", + "code": "Aetl", + "comments": "Ethereal", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "Aetf": { + "alias": "Aetf", + "code": "Aetf", + "comments": "Ethereal Form", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.7, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "ospw", + "DataB1": 1, + "DataC1": 0, + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ospm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "etherealform", + "Unorder": "unetherealform", + "skinType": "ability", + "UnitSkinID": "ospm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEtherealFormOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSpiritwalker.blp", + "Casterart": "Abilities\\Spells\\Orc\\EtherealForm\\SpiritWalkerChange.mdl", + "Casterattach": "chest", + "Effectsound": "SpiritwalkerMorph" + }, + "ACev": { + "alias": "ACev", + "code": "AEev", + "comments": "Evasion (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": "-", + "Rng1": "-", + "DataA1": 0.15, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEvasion.blp" + }, + "ACes": { + "alias": "ACes", + "code": "AEev", + "comments": "Evasion (creep 100%)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEvasion.blp" + }, + "Aexh": { + "alias": "Aexh", + "code": "Aexh", + "comments": "Exhume", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ucry", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Ruex", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNExhumeCorpses.blp" + }, + "ANfy": { + "alias": "ANfy", + "code": "ANfy", + "comments": "Factory", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 0, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 6, + "DataB1": 1100, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ncgb", + "BuffID1": "BNcg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "UnitSkinID": "ncgb", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "Afae": { + "alias": "Afae", + "code": "Afae", + "comments": "Faerie Fire", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 2, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 70, + "HeroDur1": 40, + "Cool1": 1, + "Cost1": 45, + "Area1": "-", + "Rng1": 700, + "DataA1": 4, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfae", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "order": "faeriefire", + "orderon": "faeriefireon", + "orderoff": "faeriefireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOff.blp" + }, + "Afa2": { + "alias": "Afa2", + "code": "Afae", + "comments": "Faerie Fire", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 2, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 70, + "HeroDur1": 40, + "Cool1": 1, + "Cost1": 45, + "Area1": "-", + "Rng1": 700, + "DataA1": 4, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfae", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Reec", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "order": "faeriefire", + "orderon": "faeriefireon", + "orderoff": "faeriefireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOff.blp" + }, + "ACff": { + "alias": "ACff", + "code": "Afae", + "comments": "Faerie Fire (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 2, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 15, + "Cool1": 8, + "Cost1": 45, + "Area1": "-", + "Rng1": 700, + "DataA1": 4, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfae", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "order": "faeriefire", + "orderon": "faeriefireon", + "orderoff": "faeriefireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOff.blp" + }, + "Afbk": { + "alias": "Afbk", + "code": "Afbk", + "comments": "Feedback", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 20, + "DataB1": 1, + "DataC1": 4, + "DataD1": 1, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Scriptname": "Feedback", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFeedBack.blp", + "Specialart": "Abilities\\Spells\\Human\\Feedback\\SpellBreakerAttack.mdl" + }, + "Afbt": { + "alias": "Afbt", + "code": "Afbk", + "comments": "Feedback(Arcane Tower)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 24, + "DataB1": 1, + "DataC1": 14, + "DataD1": 1, + "DataE1": 20, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFeedBack.blp", + "Specialart": "Abilities\\Spells\\Human\\Feedback\\ArcaneTowerAttack.mdl" + }, + "Afbb": { + "alias": "Afbb", + "code": "Afbk", + "comments": "Feedback (Spirit Beast)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 20, + "DataB1": 1, + "DataC1": 6, + "DataD1": 1, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFeedBack.blp", + "Specialart": "Abilities\\Spells\\Human\\Feedback\\SpellBreakerAttack.mdl" + }, + "ACsf": { + "alias": "ACsf", + "code": "AOsf", + "comments": "Feral Spirit (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 15, + "Cost1": 100, + "Area1": 200, + "Rng1": 800, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "osw1", + "BuffID1": "BOsf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "osw1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "ACs9": { + "alias": "ACs9", + "code": "AOsf", + "comments": "Feral Spirit (creep - pig)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 15, + "Cost1": 100, + "Area1": 200, + "Rng1": 800, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nspp", + "BuffID1": "BOsf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "nspp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRazorback.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "ACs8": { + "alias": "ACs8", + "code": "AOsf", + "comments": "Feral Spirit (Spirit Beast)", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 125, + "Area1": 200, + "Rng1": 800, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nsw1", + "BuffID1": "BOsf", + "targs2": "_", + "Cast2": 0, + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 20, + "Cost2": 125, + "Area2": 200, + "Rng2": 800, + "DataB2": 2, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "nsw2", + "BuffID2": "BOsf", + "targs3": "_", + "Cast3": 0, + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 20, + "Cost3": 125, + "Area3": 200, + "Rng3": 800, + "DataB3": 2, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "nsw3", + "BuffID3": "BOsf", + "targs4": "_", + "Cast4": 0, + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 20, + "Cost4": 125, + "Area4": 200, + "Rng4": 800, + "DataB4": 2, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "nsw3", + "BuffID4": "BOsf", + "InBeta": 0, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "nsw1,nsw2,nsw3,nsw3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "ResearchArt": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "ACs7": { + "alias": "ACs7", + "code": "AOsf", + "comments": "Feral Spirit (Akama)", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 15, + "Cost1": 100, + "Area1": 200, + "Rng1": 800, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "osw1", + "BuffID1": "BOsf", + "targs2": "_", + "Cast2": "-", + "Dur2": 60, + "HeroDur2": 60, + "Cool2": 15, + "Cost2": 100, + "Area2": 200, + "Rng2": 800, + "DataB2": 2, + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "osw2", + "BuffID2": "BOsf", + "targs3": "_", + "Cast3": 0, + "Dur3": 60, + "HeroDur3": 60, + "Cool3": 15, + "Cost3": 100, + "Area3": 200, + "Rng3": 800, + "DataB3": 2, + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "UnitID3": "osw3", + "BuffID3": "BOsf", + "targs4": "_", + "Cast4": 0, + "Dur4": 60, + "HeroDur4": 60, + "Cool4": 15, + "Cost4": 100, + "Area4": 200, + "Rng4": 800, + "DataB4": 2, + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "UnitID4": "osw3", + "BuffID4": "BOsf", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "osw1,osw2,osw3,osw3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "Afod": { + "alias": "Afod", + "code": "ANfd", + "comments": "Finger of Death", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,structure,ancient,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 15, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.25, + "DataB1": 1, + "DataC1": 500, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "Awfb": { + "alias": "Awfb", + "code": "ANfb", + "comments": "Fire Bolt (warlock)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,enemy,neutral", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 800, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Animnames": "spell,throw" + }, + "ACfb": { + "alias": "ACfb", + "code": "ANfb", + "comments": "Fire Bolt (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,enemy,neutral", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 800, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Animnames": "spell,throw" + }, + "Aflk": { + "alias": "Aflk", + "code": "Aflk", + "comments": "Flak Cannon", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 75, + "Rng1": "-", + "DataA1": 150, + "DataB1": 325, + "DataC1": 7, + "DataD1": 6, + "DataE1": 5, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Rhfc", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFlakCannons.blp", + "Targetart": "Abilities\\Spells\\Human\\FlakCannons\\FlakTarget.mdl", + "Targetattach": "chest", + "Specialart": "Abilities\\Spells\\Human\\FlakCannons\\FlakTarget.mdl", + "Specialattach": "chest" + }, + "Afla": { + "alias": "Afla", + "code": "Afla", + "comments": "Flare", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 120, + "Cost1": 0, + "Area1": 1800, + "Rng1": 99999, + "DataA1": 3, + "DataB1": 0.8, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "Xfla", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Rhfl", + "Order": "flare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlare.blp", + "Casterart": "Abilities\\Spells\\Human\\Flare\\FlareCaster.mdl", + "Animnames": "spell,attack" + }, + "ACfs": { + "alias": "ACfs", + "code": "AHfs", + "comments": "Flame Strike (Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,friend,structure,self", + "Cast1": 1.33, + "Dur1": 6, + "HeroDur1": 1.67, + "Cool1": 10, + "Cost1": 100, + "Area1": 225, + "Rng1": 800, + "DataA1": 15, + "DataB1": 0.33, + "DataC1": 10, + "DataD1": 1, + "DataE1": 0.75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHfs", + "EfctID1": "XHfs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "flamestrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrike1.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike2.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike.mdl", + "Animnames": "spell,channel" + }, + "ANfs": { + "alias": "ANfs", + "code": "AHfs", + "comments": "Flame Strike (Improved Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,friend,structure,self", + "Cast1": 1.33, + "Dur1": 8, + "HeroDur1": 2.67, + "Cool1": 10, + "Cost1": 100, + "Area1": 250, + "Rng1": 800, + "DataA1": 25, + "DataB1": 0.33, + "DataC1": 25, + "DataD1": 1, + "DataE1": 0.75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHfs", + "EfctID1": "XHfs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "flamestrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrike1.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike2.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike.mdl", + "Animnames": "spell,channel" + }, + "ACfr": { + "alias": "ACfr", + "code": "AEfn", + "comments": "Force of Nature (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 100, + "Area1": 200, + "Rng1": 800, + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "efon", + "BuffID1": "BEfn", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "forceofnature", + "skinType": "ability", + "UnitSkinID": "efon", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp" + }, + "ACfl": { + "alias": "ACfl", + "code": "ANfl", + "comments": "Forked Lightning(creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 0.7, + "HeroDur1": 0, + "Cool1": 11, + "Cost1": 110, + "Area1": 125, + "Rng1": 600, + "DataA1": 175, + "DataB1": 3, + "DataC1": 900, + "DataD1": 300, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "0,2", + "Order": "forkedlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Specialart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "FORK" + }, + "Afsh": { + "alias": "Afsh", + "code": "Afsh", + "comments": "Frag Shards", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 100, + "Rng1": "-", + "DataA1": 225, + "DataB1": 275, + "DataC1": 25, + "DataD1": 15, + "DataE1": 10, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rhfs", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFragmentationBombs.blp", + "Targetart": "Abilities\\Weapons\\FlyingMachine\\FlyingMachineImpact.mdl", + "Targetattach": "chest" + }, + "Afrz": { + "alias": "Afrz", + "code": "Afrz", + "comments": "Freezing Breath", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure,enemy", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": 100, + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfrz", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rufb", + "Missilespeed": "900", + "MissileHoming": "1", + "Order": "freezingbreath", + "skinType": "ability", + "Missilearc": "0.0", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFreezingBreath.blp", + "Missileart": "Abilities\\Spells\\Undead\\FreezingBreath\\FreezingBreathMissile.mdl" + }, + "Afzy": { + "alias": "Afzy", + "code": "Afzy", + "comments": "Frenzy", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 11, + "targs1": "air,ground,self", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.4, + "DataB1": 0.25, + "DataC1": 0.3, + "DataD1": " - ", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfzy", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": " - ", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": " - ", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": " - ", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": " - ", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": " - ", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": " - ", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "frenzy", + "OrderOn": "frenzyon", + "OrderOff": "frenzyoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "ACfa": { + "alias": "ACfa", + "code": "AUfa", + "comments": "Frost Armor (creep,old)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,neutral", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 5, + "Cost1": 40, + "Area1": "-", + "Rng1": 800, + "DataA1": 45, + "DataB1": 3, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUfa,Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "frostarmor", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp" + }, + "ACf2": { + "alias": "ACf2", + "code": "AUfu", + "comments": "Frost Armor (creep,autocast)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,neutral", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 5, + "Cost1": 40, + "Area1": "-", + "Rng1": 800, + "DataA1": 45, + "DataB1": 3, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUfa,Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "frostarmor", + "Orderon": "frostarmoron", + "Orderoff": "frostarmoroff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOff.blp" + }, + "ACfu": { + "alias": "ACfu", + "code": "AUfu", + "comments": "Frost Armor (Autocast, Naga)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,neutral", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 2, + "Cost1": 40, + "Area1": "-", + "Rng1": 800, + "DataA1": 45, + "DataB1": 3, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUfa,Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Requires": "Rnsw", + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "frostarmor", + "Orderon": "frostarmoron", + "Orderoff": "frostarmoroff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOff.blp" + }, + "Afra": { + "alias": "Afra", + "code": "Afra", + "comments": "Frost Attack", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFrost.blp", + "Missileart": "Abilities\\Weapons\\ZigguratFrostMissile\\ZigguratFrostMissile.mdl" + }, + "Afr2": { + "alias": "Afr2", + "code": "Afra", + "comments": "Frost Attack (1,2)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFrost.blp", + "Missileart": "Abilities\\Weapons\\ZigguratFrostMissile\\ZigguratFrostMissile.mdl" + }, + "Afrb": { + "alias": "Afrb", + "code": "Afrb", + "comments": "Frost Breath", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl" + }, + "Afrc": { + "alias": "Afrc", + "code": "Afrb", + "comments": "Frost Breath (new, has icon)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 4, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFrost.blp" + }, + "ACfn": { + "alias": "ACfn", + "code": "AUfn", + "comments": "Frost Nova (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,air,neutral,organic", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 8, + "Cost1": 125, + "Area1": 200, + "Rng1": 800, + "DataA1": 50, + "DataB1": 50, + "DataC1": "-", + "DataD1": "-", + "DataE1": 400, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "frostnova", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlacier.blp", + "Effectart": "Abilities\\Spells\\Undead\\FrostNova\\FrostNovaTarget.mdl", + "Animnames": "spell,slam" + }, + "ACcb": { + "alias": "ACcb", + "code": "AHtb", + "comments": "Frost Bolt", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 3, + "Cool1": 9, + "Cost1": 75, + "Area1": "-", + "Rng1": 600, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHtb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "thunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostBolt.blp", + "Missileart": "Abilities\\Spells\\Other\\FrostBolt\\FrostBoltMissile.mdl", + "Animnames": "spell,throw" + }, + "Agho": { + "alias": "Agho", + "code": "Agho", + "comments": "Ghost", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Agho" + }, + "Aeth": { + "alias": "Aeth", + "code": "Aeth", + "comments": "Ghost (Visible)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Aeth" + }, + "Agld": { + "alias": "Agld", + "code": "Agld", + "comments": "Gold Mine", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 12500, + "DataB1": 1, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Agld" + }, + "Agra": { + "alias": "Agra", + "code": "Agra", + "comments": "Grab Tree", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 0, + "Area1": "-", + "Rng1": 32, + "DataA1": 0.8, + "DataB1": 2.5, + "DataC1": 0, + "DataD1": 1, + "DataE1": 15, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bgra", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "grabtree", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrabTree.blp", + "Animnames": "spell,eattree" + }, + "Agyd": { + "alias": "Agyd", + "code": "Agyd", + "comments": "Graveyard", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 15, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 200, + "DataC1": 250, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ugho", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "SpecialArt": "Abilities\\Spells\\Undead\\Graveyard\\GraveMarker.mdl", + "skinType": "ability" + }, + "Agyb": { + "alias": "Agyb", + "code": "Agyb", + "comments": "Gyrocopter Bombs", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rhgb", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHumanArtilleryUpOne.blp" + }, + "Assk": { + "alias": "Assk", + "code": "Assk", + "comments": "Hardened Skin", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,ally", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 3, + "DataC1": 8, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rehs", + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHardenedSkin.blp" + }, + "Ansk": { + "alias": "Ansk", + "code": "Assk", + "comments": "Hardened Skin(Naga Turtle)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,ally", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 3, + "DataC1": 12, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHardenedSkin.blp" + }, + "Ahar": { + "alias": "Ahar", + "code": "Ahar", + "comments": "Harvest", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,alive,dead", + "Cast1": 0, + "Dur1": 1.1, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 116, + "DataA1": 1, + "DataB1": 10, + "DataC1": 10, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "ANha": { + "alias": "ANha", + "code": "Ahar", + "comments": "Harvest (naga)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,alive,dead", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 116, + "DataA1": 1.25, + "DataB1": 20, + "DataC1": 10, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Ahrl": { + "alias": "Ahrl", + "code": "Ahrl", + "comments": "Harvest Lumber", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,alive,dead", + "Cast1": 0, + "Dur1": 1.35, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 116, + "DataA1": 2, + "DataB1": 20, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Ahr3": { + "alias": "Ahr3", + "code": "Ahrl", + "comments": "Harvest Lumber (shredder)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,alive,dead", + "Cast1": 0, + "Dur1": 1.35, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 116, + "DataA1": 10, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Ahr2": { + "alias": "Ahr2", + "code": "Ahrl", + "comments": "Harvest Lumber (Arch ghouls)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,alive,dead", + "Cast1": 0, + "Dur1": 1.35, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 116, + "DataA1": 5, + "DataB1": 50, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Ahea": { + "alias": "Ahea", + "code": "Ahea", + "comments": "Heal", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu,self,organic,nonancient,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 1.1, + "Cost1": 5, + "Area1": "-", + "Rng1": 350, + "DataA1": 25, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bhea", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Anhe": { + "alias": "Anhe", + "code": "Anhe", + "comments": "Heal (Creep Normal)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu,self,organic,nonancient,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 5, + "Area1": "-", + "Rng1": 350, + "DataA1": 15, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bhea", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Anh1": { + "alias": "Anh1", + "code": "Anhe", + "comments": "Heal (Creep Normal)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu,self,organic,nonancient,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 5, + "Area1": "-", + "Rng1": 350, + "DataA1": 12, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bhea", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Anh2": { + "alias": "Anh2", + "code": "Anhe", + "comments": "Heal (Creep High)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu,self,organic,nonancient,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 1, + "Cost1": 5, + "Area1": "-", + "Rng1": 350, + "DataA1": 25, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bhea", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Ahwd": { + "alias": "Ahwd", + "code": "Ahwd", + "comments": "Healing Ward", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 25, + "HeroDur1": 25, + "Cool1": 0, + "Cost1": 150, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ohwd", + "BuffID1": "Bhwd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Rowd", + "Requiresamount": "2", + "Order": "healingward", + "skinType": "ability", + "UnitSkinID": "ohwd", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "AChw": { + "alias": "AChw", + "code": "Ahwd", + "comments": "Healing Ward (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 25, + "HeroDur1": 25, + "Cool1": 0, + "Cost1": 200, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ohwd", + "BuffID1": "Bhwd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "healingward", + "skinType": "ability", + "UnitSkinID": "ohwd", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "AChv": { + "alias": "AChv", + "code": "AOhw", + "comments": "Healing Wave(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 90, + "Area1": 500, + "Rng1": 700, + "DataA1": 130, + "DataB1": 3, + "DataC1": 0.25, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AChv" + }, + "Ahnl": { + "alias": "Ahnl", + "code": "Aroa", + "comments": "null roar (summoner)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "notself", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 50, + "Area1": 50, + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Broa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "3,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp", + "Casterart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Animnames": "spell,slam" + }, + "AHer": { + "alias": "AHer", + "code": "AHer", + "comments": "Hero", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Other\\Levelup\\LevelupCaster.mdl" + }, + "AChx": { + "alias": "AChx", + "code": "AOhx", + "comments": "Hex (Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 5, + "Cool1": 17, + "Cost1": 100, + "Area1": "-", + "Rng1": 800, + "DataA1": 99, + "DataB1": "npig,nsea,ncrb,nhmc,nrat", + "DataC1": "nalb,nvul,nsno", + "DataD1": "nsha,npng", + "DataE1": "nshw,npnw", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOhx", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "hex", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "Acht": { + "alias": "Acht", + "code": "ANht", + "comments": "Howl of Terror", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 12, + "Cost1": 100, + "Area1": 800, + "Rng1": "-", + "DataA1": 0.25, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNht", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "howlofterror", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Casterart": "Abilities\\Spells\\Other\\HowlOfTerror\\HowlCaster.mdl", + "Animnames": "spell,slam" + }, + "ACim": { + "alias": "ACim", + "code": "AEim", + "comments": "Immolation (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 25, + "Area1": 220, + "Rng1": "-", + "DataA1": 5, + "DataB1": 7, + "DataC1": 10, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEim,BEia", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "immolation", + "Unorder": "unimmolation", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOff.blp" + }, + "ACmp": { + "alias": "ACmp", + "code": "AUim", + "comments": "Impale(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 1, + "Cool1": 11, + "Cost1": 100, + "Area1": 200, + "Rng1": 700, + "DataA1": 600, + "DataB1": 0.3, + "DataC1": 50, + "DataD1": 1, + "DataE1": 0, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUim", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "impale", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Specialart": "Abilities\\Spells\\Undead\\Impale\\ImpaleMissTarget.mdl" + }, + "Aimp": { + "alias": "Aimp", + "code": "Aimp", + "comments": "Impaling Bolt", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNVorpalBlades.blp", + "skinnableID": "Aimp" + }, + "Ainf": { + "alias": "Ainf", + "code": "Ainf", + "comments": "Inner Fire", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 10, + "targs1": "air,ground,friend,neutral,self", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 1, + "Cost1": 35, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.1, + "DataB1": 5, + "DataC1": 500, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Binf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Requires": "Rhpt", + "Requiresamount": "2", + "Order": "innerfire", + "Orderon": "innerfireon", + "Orderoff": "innerfireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOff.blp", + "Effectsound": "InnerFireCast" + }, + "ACif": { + "alias": "ACif", + "code": "Ainf", + "comments": "Inner Fire (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 10, + "targs1": "air,ground,friend,neutral,self", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 5, + "Cost1": 75, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.1, + "DataB1": 5, + "DataC1": 500, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Binf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Order": "innerfire", + "Orderon": "innerfireon", + "Orderoff": "innerfireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOff.blp", + "Effectsound": "InnerFireCast" + }, + "Aivs": { + "alias": "Aivs", + "code": "Aivs", + "comments": "Invisibility", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,friend,nonsapper,neutral", + "Cast1": 0, + "Dur1": 120, + "HeroDur1": 120, + "Cool1": 0, + "Cost1": 50, + "Area1": "-", + "Rng1": 400, + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Binv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rhst", + "Order": "invisibility", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInvisibility.blp", + "Targetart": "Abilities\\Spells\\Human\\Invisibility\\InvisibilityTarget.mdl", + "Targetattach": "chest" + }, + "AInv": { + "alias": "AInv", + "code": "AInv", + "comments": "Inventory", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 6, + "DataB1": 0, + "DataC1": 1, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Apak": { + "alias": "Apak", + "code": "AInv", + "comments": "Inventory (Pack Mule)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": 1, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Ropm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aion": { + "alias": "Aion", + "code": "AInv", + "comments": "Inventory(2 slot unit) Orc", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 1, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Ropm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aihn": { + "alias": "Aihn", + "code": "AInv", + "comments": "Inventory(2 slot unit) Human", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 1, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rhpm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aien": { + "alias": "Aien", + "code": "AInv", + "comments": "Inventory(2 slot unit) Night Elf", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 1, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Repm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aiun": { + "alias": "Aiun", + "code": "AInv", + "comments": "Inventory(2 slot unit) Undead", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 1, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rupm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Avul": { + "alias": "Avul", + "code": "Avul", + "comments": "Invulnerable", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Avul" + }, + "Alit": { + "alias": "Alit", + "code": "Alit", + "comments": "Lightning Attack", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,ward,item,debris", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.25, + "DataB1": 0.25, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1500", + "skinType": "ability", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "CHIM" + }, + "Alsh": { + "alias": "Alsh", + "code": "Alsh", + "comments": "Lightning Shield", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,enemy,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 3, + "Cost1": 100, + "Area1": 160, + "Rng1": 600, + "DataA1": 20, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Blsh,Blsa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rost", + "Order": "lightningshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp" + }, + "ACls": { + "alias": "ACls", + "code": "Alsh", + "comments": "Lightning Shield (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,enemy,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 8, + "Cost1": 100, + "Area1": 160, + "Rng1": 600, + "DataA1": 20, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Blsh,Blsa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "lightningshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp" + }, + "Aliq": { + "alias": "Aliq", + "code": "Aliq", + "comments": "Liquid Fire", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure,enemy,neutral", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 8, + "DataB1": 0, + "DataC1": 0.6, + "DataD1": 1, + "DataE1": 1.75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bliq", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rolf", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNLiquidFire.blp" + }, + "Aloa": { + "alias": "Aloa", + "code": "Aloa", + "comments": "Load", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 80, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "Sloa": { + "alias": "Sloa", + "code": "Aloa", + "comments": "Load (Burrow)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 99999, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "opeo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "UnitSkinID": "opeo", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "Slo2": { + "alias": "Slo2", + "code": "Aloa", + "comments": "Load (Entangled Gold Mine)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 99999, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ewsp", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "UnitSkinID": "ewsp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "Slo3": { + "alias": "Slo3", + "code": "Aloa", + "comments": "Load (Navies)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 64, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "Atlp": { + "alias": "Atlp", + "code": "Atlp", + "comments": "Load Pilot", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,player,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 80, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Atlp" + }, + "Aloc": { + "alias": "Aloc", + "code": "Aloc", + "comments": "Locust", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Aloc" + }, + "Amdf": { + "alias": "Amdf", + "code": "Amdf", + "comments": "Magic Defense", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 1, + "DataC1": 0.33, + "DataD1": 0, + "DataE1": 0.33, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "magicdefense", + "Unorder": "magicundefense", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellBreakerMagicDefend.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSpellBreakerMagicUnDefend.blp", + "Casterart": "Abilities\\Spells\\Human\\Defend\\DefendCaster.mdl" + }, + "Amim": { + "alias": "Amim", + "code": "Amim", + "comments": "Magic Immunity", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMagicImmunity.blp" + }, + "ACmi": { + "alias": "ACmi", + "code": "Amim", + "comments": "Magic Immunity (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGenericSpellImmunity.blp" + }, + "ACm2": { + "alias": "ACm2", + "code": "Amim", + "comments": "Magic Immunity (Archimonde)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGenericSpellImmunity.blp" + }, + "ACm3": { + "alias": "ACm3", + "code": "Amim", + "comments": "Magic Immunity (Dragons)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGenericSpellImmunity.blp" + }, + "Amls": { + "alias": "Amls", + "code": "Amls", + "comments": "Aerial Shackles", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,enemy,organic", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 10, + "Cool1": 30, + "Cost1": 75, + "Area1": "-", + "Rng1": 550, + "DataA1": 30, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bmlc,Bmlt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "magicleash", + "Scriptname": "\"Aerial Shackles\"", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMagicLariet.blp", + "Animnames": "spell,looping", + "LightningEffect": "LEAS" + }, + "Ambt": { + "alias": "Ambt", + "code": "Ambt", + "comments": "Mana Battery", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,invu,vuln,friend,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 400, + "Rng1": 99999, + "DataA1": 2, + "DataB1": 0.5, + "DataC1": 10, + "DataD1": 30, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "Unbuttonpos": "0,0", + "Order": "recharge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaRechargeOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNManaRechargeOff.blp", + "Effectart": "Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\CorruptedMoonWellTarget.mdl", + "Casterart": "Abilities\\Spells\\NightElf\\MoonWell\\MoonWellCasterArt.mdl", + "Specialart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Amb2": { + "alias": "Amb2", + "code": "Ambt", + "comments": "Mana Battery (Obsidian Statue)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,invu,vuln,friend", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 400, + "Rng1": 900, + "DataA1": 1, + "DataB1": 0, + "DataC1": 10, + "DataD1": -1, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "recharge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOn.blp", + "Specialart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishMana\\ReplenishManaCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOff.blp" + }, + "Amnb": { + "alias": "Amnb", + "code": "AEmb", + "comments": "Mana Burn (demon)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 50, + "Area1": "MBUR", + "Rng1": 450, + "DataA1": 50, + "DataB1": 0.25, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "Ambd": { + "alias": "Ambd", + "code": "AEmb", + "comments": "Mana Burn (demon)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 50, + "Area1": "MBUR", + "Rng1": 450, + "DataA1": 50, + "DataB1": 0.25, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "Ambb": { + "alias": "Ambb", + "code": "AEmb", + "comments": "Mana Burn (Hotkey B)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 50, + "Area1": "MBUR", + "Rng1": 450, + "DataA1": 50, + "DataB1": 0.25, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "Amfl": { + "alias": "Amfl", + "code": "Amfl", + "comments": "Mana Flare", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy", + "Cast1": 0.75, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 20, + "Cost1": 50, + "Area1": 750, + "Rng1": 200, + "DataA1": 4, + "DataB1": 1, + "DataC1": 80, + "DataD1": 50, + "DataE1": 12, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bmfl,Bmfa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "manaflareon", + "Unorder": "manaflareoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaFlare.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNManaFlareOff.blp" + }, + "ACmf": { + "alias": "ACmf", + "code": "ANms", + "comments": "Mana Shield(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 10, + "Cost1": 25, + "Area1": "-", + "Rng1": 128, + "DataA1": 2, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNms", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "manashield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNneutralManaShieldOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Effectsound": "ManaShieldCastSound" + }, + "Amed": { + "alias": "Amed", + "code": "Amed", + "comments": "Meat Drop", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "unloadcorpse", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadUnLoad.blp" + }, + "Amel": { + "alias": "Amel", + "code": "Amel", + "comments": "Meat Load", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,dead,nonhero", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "loadcorpse", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadLoadOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUndeadLoadOff.blp" + }, + "Amil": { + "alias": "Amil", + "code": "Amil", + "comments": "Militia", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 42.5, + "HeroDur1": 42.5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "hpea", + "DataB1": "hmil", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "2,2", + "Order": "militia", + "Unorder": "militiaoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCallToArms.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBacktoWork.blp" + }, + "Amic": { + "alias": "Amic", + "code": "Amic", + "comments": "Militia Conversion", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 2000, + "Rng1": 50, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "2,2", + "Order": "townbellon", + "Unorder": "townbelloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCallToArms.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBacktoWork.blp", + "Effectsound": "TownHallCallToArms" + }, + "ANmr": { + "alias": "ANmr", + "code": "ANmr", + "comments": "Mind Rot", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNmr", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "mindrot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "Amin": { + "alias": "Amin", + "code": "Amin", + "comments": "Mine", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 200, + "DataA1": 10, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Amin" + }, + "ACmo": { + "alias": "ACmo", + "code": "ANmo", + "comments": "Monsoon(creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 10, + "Cost1": 75, + "Area1": 300, + "Rng1": 500, + "DataA1": 20, + "DataB1": 1.5, + "DataC1": 0.35, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "ANmd", + "EfctID1": "XNmo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "monsoon", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Animnames": "stand,channel" + }, + "Amgl": { + "alias": "Amgl", + "code": "Aaab", + "comments": "Moon Glaive", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Remg", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUpgradeMoonGlaive.blp", + "Casterart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceBirthMissile.mdl", + "Casterattach": "weapon,right" + }, + "Amgr": { + "alias": "Amgr", + "code": "Aaab", + "comments": "Moon Glaive (No research)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUpgradeMoonGlaive.blp", + "Casterart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceBirthMissile.mdl", + "Casterattach": "weapon,right" + }, + "Amov": { + "alias": "Amov", + "code": "Amov", + "comments": "Move", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialattach": "origin" + }, + "Aneu": { + "alias": "Aneu", + "code": "Aneu", + "comments": "Neutral Building", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 350, + "DataA1": 450, + "DataB1": 1, + "DataC1": 1, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "Unbuttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOff.blp", + "Casterart": "Abilities\\Spells\\Other\\Aneu\\AneuCaster.mdl", + "Targetart": "Abilities\\Spells\\Other\\Aneu\\AneuTarget.mdl", + "Casterattach": "overhead", + "Targetattach": "overhead" + }, + "Ane2": { + "alias": "Ane2", + "code": "Aneu", + "comments": "Neutral Building (any unit)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 350, + "DataA1": 450, + "DataB1": 16, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "Unbuttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOff.blp", + "Casterart": "Abilities\\Spells\\Other\\Aneu\\AneuCaster.mdl", + "Targetart": "Abilities\\Spells\\Other\\Aneu\\AneuTarget.mdl", + "Casterattach": "overhead", + "Targetattach": "overhead" + }, + "Andt": { + "alias": "Andt", + "code": "Andt", + "comments": "Neutral Detection (Reveal ability)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 6, + "HeroDur1": 6, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 50, + "DataB1": 0, + "DataC1": 3, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "Xbdt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReveal.blp" + }, + "ANre": { + "alias": "ANre", + "code": "Aarm", + "comments": "Neutral Regen (mana only)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.01, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectsoundlooped": "FountainOfLifeLoop", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeal.blp" + }, + "ACnr": { + "alias": "ACnr", + "code": "Aoar", + "comments": "Neutral Regen (health only)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.01, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeal.blp" + }, + "AAns": { + "alias": "AAns", + "code": "AAns", + "comments": "Neutral Spell", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 50, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "neutralspell", + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Ansp": { + "alias": "Ansp", + "code": "Ansp", + "comments": "Neutral Spies", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 0, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Ansp" + }, + "Afak": { + "alias": "Afak", + "code": "Afak", + "comments": "Orb of Annihilation", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 25, + "Area1": 150, + "Rng1": 450, + "DataA1": 15, + "DataB1": 0.45, + "DataC1": 0.25, + "DataD1": 1, + "DataE1": 75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDeathOn.blp", + "Animnames": "attack", + "Missileart": "Abilities\\Spells\\Undead\\OrbOfDeath\\AnnihilationMissile.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDeathOff.blp" + }, + "ANak": { + "alias": "ANak", + "code": "Afak", + "comments": "Orb of Annihilation (Quill Spray)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 15, + "Area1": 175, + "Rng1": 600, + "DataA1": 15, + "DataB1": 0.5, + "DataC1": 0.25, + "DataD1": 150, + "DataE1": 300, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNQuillSpray.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNQuillSprayOff.blp", + "Missileart": "Abilities\\Weapons\\QuillSprayMissile\\QuillSprayMissile.mdl" + }, + "Afir": { + "alias": "Afir", + "code": "Afir", + "comments": "On Fire", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Afir" + }, + "Afih": { + "alias": "Afih", + "code": "Afih", + "comments": "On Fire (Human)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Afih" + }, + "Afio": { + "alias": "Afio", + "code": "Afio", + "comments": "On Fire (Orc)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Afio" + }, + "Afin": { + "alias": "Afin", + "code": "Afin", + "comments": "On Fire (Night Elf)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Afin" + }, + "Afiu": { + "alias": "Afiu", + "code": "Afiu", + "comments": "On Fire (Undead)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Afiu" + }, + "ANpa": { + "alias": "ANpa", + "code": "ANpa", + "comments": "Parasite", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral,nonhero", + "Cast1": 90, + "Dur1": 15, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 50, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0, + "DataC1": 0, + "DataD1": 8, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ncfs", + "BuffID1": "BNpa,BNpm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1200", + "MissileHoming": "1", + "Orderon": "parasiteon", + "Orderoff": "parasiteoff", + "Order": "parasite", + "skinType": "ability", + "UnitSkinID": "ncfs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNParasiteOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNParasiteOff.blp", + "Missileart": "Abilities\\Spells\\Other\\Parasite\\ParasiteMissile.mdl", + "MissileArc": "0.0" + }, + "ACpa": { + "alias": "ACpa", + "code": "ANpa", + "comments": "Parasite(eredar)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral,nonhero", + "Cast1": 90, + "Dur1": 15, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 50, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0, + "DataC1": 0, + "DataD1": 8, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nvdl", + "BuffID1": "BNpa,BNpm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1900", + "Orderon": "parasiteon", + "Orderoff": "parasiteoff", + "Order": "parasite", + "skinType": "ability", + "UnitSkinID": "nvdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNParasiteOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNParasiteOff.blp", + "Missileart": "Abilities\\Spells\\Other\\Parasite\\ParasiteMissile.mdl", + "Missilehoming": "1" + }, + "ANpi": { + "alias": "ANpi", + "code": "ANpi", + "comments": "Permanent Immolation", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": 220, + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNpi", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImmolation.blp" + }, + "Apmf": { + "alias": "Apmf", + "code": "ANpi", + "comments": "Permanent Immolation (flying)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": 220, + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNpi", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImmolation.blp" + }, + "Apig": { + "alias": "Apig", + "code": "Apig", + "comments": "Permanent Immolation (graphic)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": 220, + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bpig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImmolation.blp" + }, + "Apiv": { + "alias": "Apiv", + "code": "Apiv", + "comments": "Permanent Invisibility", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Apiv" + }, + "Apsh": { + "alias": "Apsh", + "code": "Apsh", + "comments": "Phase Shift", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 1.5, + "HeroDur1": 1.5, + "Cool1": 6.5, + "Cost1": 20, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bpsh", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Orderon": "phaseshifton", + "Orderoff": "phaseshiftoff", + "Order": "phaseshift", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPhaseShiftOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNPhaseShiftOff.blp", + "Effectsound": "ShadowMeld", + "Specialart": "Abilities\\Spells\\NightElf\\FaerieDragonInvis\\FaerieDragon_Invis.mdl" + }, + "Aphx": { + "alias": "Aphx", + "code": "Aphx", + "comments": "Phoenix", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0.7, + "Dur1": 0.5, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": -1, + "Rng1": "-", + "DataA1": "hphx", + "DataB1": 7, + "DataC1": 0.5, + "DataD1": 0.5, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hpxe", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "hpxe" + }, + "Apxf": { + "alias": "Apxf", + "code": "Apxf", + "comments": "PhoenixFire", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,enemy", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 7, + "Cool1": 0.5, + "Cost1": 0, + "Area1": 600, + "DataA1": 20, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Missileart": "Abilities\\Weapons\\PhoenixMissile\\Phoenix_Missile_mini.mdl" + }, + "Apts": { + "alias": "Apts", + "code": "Apts", + "comments": "Plague Toss", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,structure,debris,tree,wall,organic,neutral", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uplg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Rupc", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Apoi": { + "alias": "Apoi", + "code": "Apoi", + "comments": "Poison Attack", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": 0, + "DataC1": 0, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bpoi,Bpsd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPoisonSting.blp", + "Missileart": "Abilities\\Weapons\\PoisonSting\\PoisonStingMissile.mdl" + }, + "Aply": { + "alias": "Aply", + "code": "Aply", + "comments": "Polymorph", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 1.5, + "Cool1": 3, + "Cost1": 200, + "Area1": "-", + "Rng1": 500, + "DataA1": 5, + "DataB1": "nshe", + "DataC1": "nshf", + "DataD1": "nsha", + "DataE1": "nshw", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bply", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Rhst", + "Requiresamount": "2", + "Order": "polymorph", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolymorph.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphTarget.mdl", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphFallingSheepArt.mdl" + }, + "ACpy": { + "alias": "ACpy", + "code": "Aply", + "comments": "Polymorph (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 10, + "Cost1": 200, + "Area1": "-", + "Rng1": 500, + "DataA1": 5, + "DataB1": "nshe", + "DataC1": "nshf", + "DataD1": "nsha", + "DataE1": "nshw", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bply", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Order": "polymorph", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolymorph.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphTarget.mdl", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphFallingSheepArt.mdl" + }, + "Apos": { + "alias": "Apos", + "code": "Apos", + "comments": "Possession", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,nonhero,enemy,organic,neutral", + "Cast1": 1, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 250, + "Area1": "-", + "Rng1": 200, + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Ruba", + "Requiresamount": "2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "possession", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp", + "Missileart": "Abilities\\Spells\\Undead\\Possession\\PossessionMissile.mdl" + }, + "ACps": { + "alias": "ACps", + "code": "Apos", + "comments": "Possession (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,nonhero,enemy,organic,neutral", + "Cast1": 1, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 250, + "Area1": "-", + "Rng1": 200, + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "possession", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp", + "Missileart": "Abilities\\Spells\\Undead\\Possession\\PossessionMissile.mdl", + "LightningEffect": "POSS" + }, + "Aps2": { + "alias": "Aps2", + "code": "Aps2", + "comments": "Possession (Channeling)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,nonhero,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 4.5, + "HeroDur1": 4.5, + "Cool1": 0, + "Cost1": 250, + "Area1": "-", + "Rng1": 350, + "DataA1": 5, + "DataB1": 1.66, + "DataC1": 1, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bpos,Bpoc", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Ruba", + "Requiresamount": "2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "possession", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp", + "Missileart": "Abilities\\Spells\\Undead\\Possession\\PossessionMissile.mdl", + "Animnames": "spell,looping", + "LightningEffect": "POSS" + }, + "Awar": { + "alias": "Awar", + "code": "Awar", + "comments": "Pulverize", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 2, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 25, + "DataB1": 20, + "DataC1": 250, + "DataD1": 350, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "ground,enemy,neutral,ward", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 0, + "Cost2": 0, + "Area2": "-", + "Rng2": "-", + "DataA2": 25, + "DataB2": 60, + "DataC2": 250, + "DataD2": 350, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSmash.blp", + "Animnames": "slam" + }, + "ACpv": { + "alias": "ACpv", + "code": "Awar", + "comments": "Pulverize (Sea Giant)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 15, + "DataB1": 30, + "DataC1": 150, + "DataD1": 250, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSeaGiantPulverize.blp", + "Animnames": "slam" + }, + "Apit": { + "alias": "Apit", + "code": "Apit", + "comments": "Purchase Item", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 0, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Effectsound": "ReceiveGold" + }, + "Aprg": { + "alias": "Aprg", + "code": "Aprg", + "comments": "Purge", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,vuln,invu,tree", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 5, + "Cool1": 1, + "Cost1": 65, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0, + "DataC1": 400, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bprg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Specialattach": "origin" + }, + "Apg2": { + "alias": "Apg2", + "code": "Aprg", + "comments": "Purge", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,vuln,invu,tree", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 5, + "Cool1": 1, + "Cost1": 65, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0, + "DataC1": 400, + "DataD1": 3, + "DataE1": 1, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bprg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Specialattach": "origin" + }, + "ACpu": { + "alias": "ACpu", + "code": "Aprg", + "comments": "Purge (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,vuln,invu,tree", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 5, + "Cost1": 75, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0, + "DataC1": 200, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bprg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl" + }, + "ACrf": { + "alias": "ACrf", + "code": "ANrf", + "comments": "Rain of Fire (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0.599, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 12, + "Cost1": 125, + "Area1": 200, + "Rng1": 800, + "DataA1": 6, + "DataB1": 25, + "DataC1": 6, + "DataD1": 0.5, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNrd,BNrf", + "EfctID1": "XErf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Order": "rainoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFire.blp" + }, + "ACrg": { + "alias": "ACrg", + "code": "ANrf", + "comments": "Rain of Fire (creep,greater)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0.599, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 12, + "Cost1": 125, + "Area1": 300, + "Rng1": 800, + "DataA1": 9, + "DataB1": 50, + "DataC1": 9, + "DataD1": 0.75, + "DataE1": 20, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNrd,BNrf", + "EfctID1": "XErf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "rainoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Animnames": "spell,looping" + }, + "Arai": { + "alias": "Arai", + "code": "Arai", + "comments": "Raise Dead", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 2, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "dead", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 8, + "Cost1": 75, + "Area1": 900, + "Rng1": 600, + "DataA1": 2, + "DataB1": 0, + "DataC1": "uske", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uske", + "BuffID1": "Brai", + "targs2": "dead", + "Cast2": 0, + "Dur2": 45, + "HeroDur2": 45, + "Cool2": 8, + "Cost2": 75, + "Area2": 900, + "Rng2": 600, + "DataA2": 1, + "DataB2": 1, + "DataC2": "uske", + "DataD2": "uskm", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "uske", + "BuffID2": "Brai", + "targs3": "dead", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "raisedead", + "Orderon": "raisedeadon", + "Orderoff": "raisedeadoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOn.blp", + "Effectart": "Abilities\\Spells\\Undead\\RaiseSkeletonWarrior\\RaiseSkeleton.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOff.blp" + }, + "ACrd": { + "alias": "ACrd", + "code": "Arai", + "comments": "Raise Dead (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "dead", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 12, + "Cost1": 75, + "Area1": 900, + "Rng1": 600, + "DataA1": 2, + "DataB1": 0, + "DataC1": "uske", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uske", + "BuffID1": "Brai", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "raisedead", + "Orderon": "raisedeadon", + "Orderoff": "raisedeadoff", + "skinType": "ability", + "UnitSkinID": "uske", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOff.blp", + "Effectart": "Abilities\\Spells\\Undead\\RaiseSkeletonWarrior\\RaiseSkeleton.mdl" + }, + "ARal": { + "alias": "ARal", + "code": "ARal", + "comments": "Rally", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 0, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRallyPoint.blp,ReplaceableTextures\\CommandButtons\\BTNOrcRallyPoint.blp,ReplaceableTextures\\CommandButtons\\BTNRallyPointUndead.blp,ReplaceableTextures\\CommandButtons\\BTNRallyPointNightElf.blp" + }, + "Arav": { + "alias": "Arav", + "code": "Arav", + "comments": "Raven Form (Druid)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 1.05, + "Dur1": 0.6, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 25, + "Area1": -1, + "Rng1": "-", + "DataA1": "edot", + "DataB1": 5, + "DataC1": 1, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "edtm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Requires": "Redt", + "Order": "ravenform", + "Unorder": "unravenform", + "skinType": "ability", + "UnitSkinID": "edtm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDruidOfTheTalon.blp" + }, + "Amrf": { + "alias": "Amrf", + "code": "Arav", + "comments": "Raven Form (Medivh)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 1.05, + "Dur1": 0.6, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": -1, + "Rng1": "-", + "DataA1": "nmed", + "DataB1": 5, + "DataC1": 1, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nmdm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "ravenform", + "Unorder": "unravenform", + "skinType": "ability", + "UnitSkinID": "nmdm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNMedivh.blp" + }, + "ACrn": { + "alias": "ACrn", + "code": "ACrn", + "comments": "Reincarnation (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 3, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 240, + "Cost1": " - ", + "Area1": "-", + "Rng1": "-", + "DataA1": 7, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XOre", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "skinType": "ability", + "Tip": "Reincarnation", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "ANr2": { + "alias": "ANr2", + "code": "AOre", + "comments": "Reincarnation (generic)", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 3, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 240, + "Cost1": " - ", + "Area1": "-", + "Rng1": "-", + "DataA1": 7, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XOre", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "Arbr": { + "alias": "Arbr", + "code": "Arbr", + "comments": "Reinforced Burrows", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Orc\\ReinforcedTrollBurrow\\ReinforcedTrollBurrowTarget.mdl" + }, + "Arej": { + "alias": "Arej", + "code": "Arej", + "comments": "Rejuvination", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu,self,organic,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 1, + "Cost1": 125, + "Area1": "-", + "Rng1": 400, + "DataA1": 400, + "DataB1": 0, + "DataC1": 3, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Brej", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Redc", + "order": "rejuvination", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp" + }, + "ACrj": { + "alias": "ACrj", + "code": "Arej", + "comments": "Rejuvination (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu,self,organic,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 5, + "Cost1": 125, + "Area1": "-", + "Rng1": 400, + "DataA1": 400, + "DataB1": 0, + "DataC1": 3, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Brej", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "order": "rejuvination", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp" + }, + "ACr2": { + "alias": "ACr2", + "code": "Arej", + "comments": "Rejuvination (Furbolg)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,vuln,invu,self,organic,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 0, + "Cost1": 150, + "Area1": "-", + "Rng1": 400, + "DataA1": 400, + "DataB1": 0, + "DataC1": 3, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Brej", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "order": "rejuvination", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp" + }, + "Aren": { + "alias": "Aren", + "code": "Aren", + "comments": "Renew", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "friend,ground,air,structure,bridge,alive,dead,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 50, + "DataA1": 0.35, + "DataB1": 1.5, + "DataC1": 0, + "DataD1": 0, + "DataE1": 175, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "renew", + "Orderon": "renewon", + "Orderoff": "renewoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWispHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWispHealOff.blp", + "Effectsoundlooped": "WispRenewLoop", + "Animnames": "stand,work" + }, + "Ahrp": { + "alias": "Ahrp", + "code": "Arep", + "comments": "Repair (Human)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "mechanical,friend,nonancient,ground,air,structure,bridge,alive,dead,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 50, + "DataA1": 0.35, + "DataB1": 1.5, + "DataC1": 0.15, + "DataD1": 0.6, + "DataE1": 75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "repair", + "Orderon": "repairon", + "Orderoff": "repairoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRepairOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRepairOff.blp", + "Animnames": "stand,work" + }, + "Arep": { + "alias": "Arep", + "code": "Arep", + "comments": "Repair (Orc)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "mechanical,friend,nonancient,ground,air,structure,bridge,alive,dead,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 50, + "DataA1": 0.35, + "DataB1": 1.5, + "DataC1": 0, + "DataD1": 0, + "DataE1": 75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "repair", + "Orderon": "repairon", + "Orderoff": "repairoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRepairOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRepairOff.blp", + "Animnames": "stand,work" + }, + "Arpb": { + "alias": "Arpb", + "code": "Arpb", + "comments": "Replenish (Life & Mana)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 6, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 1, + "Cost1": 6, + "Area1": 700, + "Rng1": 250, + "DataA1": 25, + "DataB1": 25, + "DataC1": 0, + "DataD1": 0, + "DataE1": 5, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Brpb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "replenish", + "Orderon": "replenishon", + "Orderoff": "replenishoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOn.blp", + "Specialart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCasterOverhead.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOff.blp", + "Specialattach": "overhead" + }, + "Arpl": { + "alias": "Arpl", + "code": "Arpl", + "comments": "Replenish (Life)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 6, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 1, + "Cost1": 2, + "Area1": 700, + "Rng1": 250, + "DataA1": 10, + "DataB1": "-", + "DataC1": 0, + "DataD1": "-", + "DataE1": 5, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Brpl", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "replenishlife", + "Orderon": "replenishlifeon", + "Orderoff": "replenishlifeoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishHealthOn.blp", + "Specialart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCasterOverhead.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishHealthOff.blp", + "Specialattach": "overhead" + }, + "Arpm": { + "alias": "Arpm", + "code": "Arpm", + "comments": "Replenish (Mana)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 6, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 1, + "Cost1": 2, + "Area1": 700, + "Rng1": 250, + "DataA1": "-", + "DataB1": 2, + "DataC1": "-", + "DataD1": 0, + "DataE1": 5, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Brpm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "replenishmana", + "Orderon": "replenishmanaon", + "Orderoff": "replenishmanaoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOn.blp", + "Specialart": "Abilities\\Spells\\Undead\\ReplenishMana\\ReplenishManaCasterOverhead.mdl", + "Casterattach": "origin", + "Effectsound": "SpiritTouch", + "Targetart": "Abilities\\Spells\\Undead\\ReplenishMana\\SpiritTouchTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishMana\\ReplenishManaCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOff.blp", + "Specialattach": "overhead" + }, + "Arsk": { + "alias": "Arsk", + "code": "Arsk", + "comments": "Resistant Skin", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Rers", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNResistantSkin.blp" + }, + "ACrk": { + "alias": "ACrk", + "code": "Arsk", + "comments": "Resistant Skin (creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThickFur.blp" + }, + "ACsk": { + "alias": "ACsk", + "code": "Arsk", + "comments": "Resistant Skin(3,1 pos, creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThickFur.blp" + }, + "Arst": { + "alias": "Arst", + "code": "Arst", + "comments": "Restoration", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "mechanical,friend,nonancient,ground,air,structure,bridge,alive,dead,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 50, + "DataA1": 0.35, + "DataB1": 1.5, + "DataC1": 0, + "DataD1": 0, + "DataE1": 175, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "restoration", + "Orderon": "restorationon", + "Orderoff": "restorationoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRepairOn.blp", + "Animnames": "stand,work", + "Effectsoundlooped": "AcolyteRestoreLoop", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRepairOff.blp" + }, + "Argd": { + "alias": "Argd", + "code": "Artn", + "comments": "Return (Gold)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Argd" + }, + "Argl": { + "alias": "Argl", + "code": "Artn", + "comments": "Return (Gold & Lumber)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Argl" + }, + "Arlm": { + "alias": "Arlm", + "code": "Artn", + "comments": "Return (Lumber)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Arlm" + }, + "AHta": { + "alias": "AHta", + "code": "AIta", + "comments": "Reveal(Arcane Tower)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 180, + "Cost1": 0, + "Area1": 900, + "Rng1": 99999, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "Xbdt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rhse", + "ButtonPos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReveal.blp", + "Casterart": "Abilities\\Spells\\Items\\AIta\\CrystalBallCaster.mdl", + "Casterattach": "overhead" + }, + "Arng": { + "alias": "Arng", + "code": "Arng", + "comments": "Revenge", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Targetart": "Abilities\\Weapons\\Mortar\\MortarMissile.mdl" + }, + "Arev": { + "alias": "Arev", + "code": "Arev", + "comments": "Revive", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "revive", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Human\\ReviveHuman\\ReviveHuman.mdl,Abilities\\Spells\\Orc\\ReviveOrc\\ReviveOrc.mdl,Abilities\\Spells\\Undead\\ReviveUndead\\ReviveUndead.mdl,Abilities\\Spells\\NightElf\\ReviveNightElf\\ReviveNightElf.mdl,Abilities\\Spells\\Demon\\ReviveDemon\\ReviveDemon.mdl" + }, + "Aroa": { + "alias": "Aroa", + "code": "Aroa", + "comments": "Roar", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 100, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.25, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Broa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "Ara2": { + "alias": "Ara2", + "code": "Aroa", + "comments": "Roar", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 100, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.25, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Broa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Reeb", + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "ACr1": { + "alias": "ACr1", + "code": "Aroa", + "comments": "Roar (creep) -- Skeletal Orc", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 100, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.25, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Broa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "ACro": { + "alias": "ACro", + "code": "Aroa", + "comments": "Roar (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 100, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.25, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Broa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "Aroc": { + "alias": "Aroc", + "code": "Aroc", + "comments": "Rocket Attack", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,enemy", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 2, + "Cost1": 0, + "Area1": 500, + "Rng1": "-", + "DataA1": 25, + "DataB1": 630, + "DataC1": 9, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rhrt", + "Buttonpos": "0,2", + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNScatterRockets.blp", + "Missileart": "Abilities\\Weapons\\RocketMissile\\RocketMissile.mdl", + "Missilearc": "0.15" + }, + "Aro1": { + "alias": "Aro1", + "code": "Aroo", + "comments": "Root (Ancients)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 2.5, + "HeroDur1": 2.5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 2, + "DataC1": 0, + "DataD1": 2, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "root", + "Unorder": "unroot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRoot.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUproot.blp" + }, + "Aro2": { + "alias": "Aro2", + "code": "Aroo", + "comments": "Root (Ancient Protector)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 2.5, + "HeroDur1": 2.5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 1, + "DataC1": 0, + "DataD1": 2, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "root", + "Unorder": "unroot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRoot.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUproot.blp" + }, + "Asac": { + "alias": "Asac", + "code": "Asac", + "comments": "Sacrifice (Sacrificial Pit)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,player,organic,nonhero", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 75, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "Order": "sacrifice", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrifice.blp" + }, + "Asal": { + "alias": "Asal", + "code": "Asal", + "comments": "Pillage", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.5, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Ropg", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPillage.blp" + }, + "Alam": { + "alias": "Alam", + "code": "Alam", + "comments": "Sacrifice (Acolyte)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure,player", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "usap", + "Order": "sacrifice", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrifice.blp" + }, + "ACsa": { + "alias": "ACsa", + "code": "AHfa", + "comments": "Searing Arrows (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,structure,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 8, + "Area1": "-", + "Rng1": 700, + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "flamingarrows", + "Unorder": "unflamingarrows", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOff.blp", + "Missileart": "Abilities\\Weapons\\SearingArrow\\SearingArrowMissile.mdl", + "Animnames": "attack" + }, + "Asds": { + "alias": "Asds", + "code": "Asds", + "comments": "Self Destruct", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,tree,ward", + "Cast1": 0, + "Dur1": 0.1, + "HeroDur1": 0.1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 0, + "DataA1": 100, + "DataB1": 250, + "DataC1": 250, + "DataD1": 100, + "DataE1": 3, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Asdg": { + "alias": "Asdg", + "code": "Asds", + "comments": "Self Destruct (Clockwerk Goblins)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 0.1, + "HeroDur1": 0.1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 0, + "DataA1": 100, + "DataB1": 30, + "DataC1": 250, + "DataD1": 12, + "DataE1": 1, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Asd2": { + "alias": "Asd2", + "code": "Asds", + "comments": "Self Destruct 2 (Clockwerk Goblins)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 0.1, + "HeroDur1": 0.1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 0, + "DataA1": 100, + "DataB1": 60, + "DataC1": 250, + "DataD1": 22, + "DataE1": 1, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Asd3": { + "alias": "Asd3", + "code": "Asds", + "comments": "Self Destruct 3 (Clockwerk Goblins)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 0.1, + "HeroDur1": 0.1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 0, + "DataA1": 100, + "DataB1": 80, + "DataC1": 250, + "DataD1": 30, + "DataE1": 1, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Asid": { + "alias": "Asid", + "code": "Asid", + "comments": "Sell Item", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSell.blp" + }, + "Asud": { + "alias": "Asud", + "code": "Asud", + "comments": "Sell Unit", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHire.blp" + }, + "Aesn": { + "alias": "Aesn", + "code": "Aesn", + "comments": "Sentinel", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 120, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": 100, + "DataB1": 900, + "DataC1": 400, + "DataD1": 1, + "DataE1": 120, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XEsn", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Resc", + "Buttonpos": "0,2", + "MissileSpeed": "1500", + "Order": "sentinel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentinel.blp", + "Missileart": "Units\\NightElf\\Owl\\Owl.mdl" + }, + "Aesr": { + "alias": "Aesr", + "code": "Aesn", + "comments": "Sentinel (no research)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 60, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": 100, + "DataB1": 900, + "DataC1": 400, + "DataD1": 0, + "DataE1": 180, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XEsn", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "MissileSpeed": "1500", + "Order": "sentinel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentinel.blp", + "Missileart": "Units\\NightElf\\Owl\\Owl.mdl" + }, + "Aeye": { + "alias": "Aeye", + "code": "Aeye", + "comments": "Sentry Ward", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 600, + "HeroDur1": 600, + "Cool1": 0, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "oeye", + "BuffID1": "Beye", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "evileye", + "skinType": "ability", + "UnitSkinID": "oeye", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp" + }, + "ACtn": { + "alias": "ACtn", + "code": "AOwd", + "comments": "Serpent Ward (tentacle, Forgotten one)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 180, + "Cool1": 1, + "Cost1": 5, + "Area1": "-", + "Rng1": 900, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nfgt", + "BuffID1": "BOwd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Buttonpos": "0,2", + "Order": "Serpentward", + "skinType": "ability", + "UnitSkinID": "nfgt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTentacle.blp" + }, + "Ashm": { + "alias": "Ashm", + "code": "Ashm", + "comments": "Shadow Meld", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1.5, + "DataB1": 2.5, + "DataC1": 0.5, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmbush.blp", + "Effectsound": "ShadowMeld" + }, + "AIhm": { + "alias": "AIhm", + "code": "Ashm", + "comments": "Shadow Meld (Item)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1.5, + "DataB1": 2.5, + "DataC1": 0.5, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloak.blp", + "Effectsound": "ShadowMeld" + }, + "Sshm": { + "alias": "Sshm", + "code": "Ashm", + "comments": "Shadow Meld (Instant)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 2.5, + "DataC1": 0.5, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmbush.blp", + "Effectsound": "ShadowMeld" + }, + "Ahid": { + "alias": "Ahid", + "code": "Ahid", + "comments": "Shadow Meld (Akama)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 2.5, + "DataC1": 0.5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmbush.blp", + "Effectsound": "ShadowMeld" + }, + "ACss": { + "alias": "ACss", + "code": "AEsh", + "comments": "Shadow Strike(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,enemy,neutral", + "Cast1": 3, + "Dur1": 15.1, + "HeroDur1": 15.1, + "Cool1": 8, + "Cost1": 65, + "Area1": "-", + "Rng1": 350, + "DataA1": 10, + "DataB1": 0.9, + "DataC1": 0.9, + "DataD1": 2, + "DataE1": 75, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEsh", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "1200", + "MissileHoming": "1", + "Order": "shadowstrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Missileart": "Abilities\\Spells\\NightElf\\shadowstrike\\ShadowStrikeMissile.mdl", + "MissileArc": "0.0" + }, + "ACsh": { + "alias": "ACsh", + "code": "AOsh", + "comments": "Shockwave (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,enemy", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 100, + "Area1": 150, + "Rng1": 700, + "DataA1": 75, + "DataB1": 99999, + "DataC1": 800, + "DataD1": 150, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOsh", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "ACst": { + "alias": "ACst", + "code": "AOsh", + "comments": "Shockwave (Trap)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 0, + "Area1": 150, + "Rng1": 700, + "DataA1": 75, + "DataB1": 99999, + "DataC1": 2048, + "DataD1": 150, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOsh", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "ANsh": { + "alias": "ANsh", + "code": "AOsh", + "comments": "Garithos - Shock Wave", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "other", + "checkDep": 1, + "levels": 3, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 8, + "Cost1": 100, + "Area1": 150, + "Rng1": 700, + "DataA1": 75, + "DataB1": 99999, + "DataC1": 800, + "DataD1": 150, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOsh", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": 8, + "Cost2": 100, + "Area2": 150, + "Rng2": 700, + "DataA2": 130, + "DataB2": 9999, + "DataC2": 800, + "DataD2": 150, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BOsh", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": 8, + "Cost3": 100, + "Area3": 150, + "Rng3": 700, + "DataA3": 200, + "DataB3": 9999, + "DataC3": 800, + "DataD3": 150, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BOsh", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": 8, + "Cost4": 100, + "Area4": 150, + "Rng4": 700, + "DataA4": 200, + "DataB4": 9999, + "DataC4": 800, + "DataD4": 150, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BOsh", + "InBeta": 0, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "ACsi": { + "alias": "ACsi", + "code": "ANsi", + "comments": "Silence(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 8.5, + "Cool1": 20, + "Cost1": 75, + "Area1": 300, + "Rng1": 700, + "DataA1": 8, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNsi", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "silence", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Effectart": "Abilities\\Spells\\Other\\Silence\\SilenceAreaBirth.mdl" + }, + "ACsm": { + "alias": "ACsm", + "code": "AHdr", + "comments": "Siphon Mana (Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 8, + "Cool1": 8, + "Cost1": 25, + "Area1": 850, + "Rng1": 600, + "DataA1": 0, + "DataB1": 20, + "DataC1": 1, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": 0, + "DataI1": 0, + "BuffID1": "Bdcb,Bdcl,Bdcm,Bdtb,Bdtl,Bdtm,Bdbb,Bdbl,Bdbm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp", + "Effectsoundlooped": "SiphonManaLoop", + "Animnames": "stand,channel", + "LightningEffect": "DRAB,DRAL,DRAM" + }, + "ACsl": { + "alias": "ACsl", + "code": "AUsl", + "comments": "Sleep (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral,nonhero", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 5, + "Cool1": 8, + "Cost1": 100, + "Area1": "-", + "Rng1": 800, + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUsl,BUsp,Bust", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "sleep", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "Asla": { + "alias": "Asla", + "code": "Asla", + "comments": "Sleep Always", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Other\\CreepSleep\\CreepSleepTarget.mdl", + "Casterattach": "overhead", + "Effectsoundlooped": "CreepSleepSnoreLoop" + }, + "Aslo": { + "alias": "Aslo", + "code": "Aslo", + "comments": "Slow", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 3, + "targs1": "air,ground,enemy", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 10, + "Cool1": 1, + "Cost1": 50, + "Area1": "-", + "Rng1": 700, + "DataA1": 0.55, + "DataB1": 0.25, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bslo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "slow", + "Orderon": "slowon", + "Orderoff": "slowoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlowOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSlowOff.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "ACsw": { + "alias": "ACsw", + "code": "Aslo", + "comments": "Slow (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 3, + "targs1": "air,ground,enemy", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 10, + "Cool1": 8, + "Cost1": 50, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.6, + "DataB1": 0.25, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bslo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "slow", + "Orderon": "slowon", + "Orderoff": "slowoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlowOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSlowOff.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "Aspo": { + "alias": "Aspo", + "code": "Aspo", + "comments": "Slow Poison", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": 0.5, + "DataC1": 0.25, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bspo,Bssd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSlowPoison.blp" + }, + "Asod": { + "alias": "Asod", + "code": "Asod", + "comments": "Spawn Skeleton", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "nsce", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Assp": { + "alias": "Assp", + "code": "Assp", + "comments": "Spawn Spiderling", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": "nspd", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Aspd": { + "alias": "Aspd", + "code": "Aspd", + "comments": "Spawn Spider", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": "nspr", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Aspy": { + "alias": "Aspy", + "code": "Aspd", + "comments": "Spawn Hydra", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": "nhyd", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Aspt": { + "alias": "Aspt", + "code": "Aspd", + "comments": "Spawn Hydra Hatchling", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": "nhyh", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Asps": { + "alias": "Asps", + "code": "Asps", + "comments": "Spell Steal", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,enemy,neutral,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 6, + "Cost1": 75, + "Area1": 700, + "Rng1": 700, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "spellsteal", + "Orderon": "spellstealon", + "Orderoff": "spellstealoff", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellStealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSpellStealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealTarget.mdl", + "Targetattach": "overhead", + "Missileart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealMissile.mdl", + "Missilearc": "0.15" + }, + "Asph": { + "alias": "Asph", + "code": "Asph", + "comments": "Sphere", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.01, + "HeroDur1": 0.01, + "Cool1": 1, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Units\\Human\\HeroBloodElf\\BloodElfBall.mdl", + "Targetattachcount": "3", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Missileart": "Units\\Human\\HeroBloodElf\\BloodElfBall.mdl", + "Missilearc": "0.05" + }, + "Asp1": { + "alias": "Asp1", + "code": "Asph", + "comments": "Sphere (SoV Level 1)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.01, + "HeroDur1": 0.01, + "Cool1": 1, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl", + "Targetattachcount": "1", + "Targetattach": "sprite,first", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl", + "Missilearc": "0.05" + }, + "Asp2": { + "alias": "Asp2", + "code": "Asph", + "comments": "Sphere (SoV Level 2)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.01, + "HeroDur1": 0.01, + "Cool1": 1, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl", + "Missilearc": "0.05" + }, + "Asp3": { + "alias": "Asp3", + "code": "Asph", + "comments": "Sphere (SoV Level 3)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.01, + "HeroDur1": 0.01, + "Cool1": 1, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl", + "Targetattachcount": "3", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl", + "Missilearc": "0.05" + }, + "Asp4": { + "alias": "Asp4", + "code": "Asph", + "comments": "Sphere (SoV Level 4)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.01, + "HeroDur1": 0.01, + "Cool1": 1, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Targetattach3": "sprite,fourth", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl", + "Missilearc": "0.05" + }, + "Asp5": { + "alias": "Asp5", + "code": "Asph", + "comments": "Sphere (SoV Level 5)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.01, + "HeroDur1": 0.01, + "Cool1": 1, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl", + "Targetattachcount": "5", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Targetattach3": "sprite,fourth", + "Targetattach4": "sprite,fifth", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl", + "Missilearc": "0.05" + }, + "Asp6": { + "alias": "Asp6", + "code": "Asph", + "comments": "Sphere (SoV Level 6)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.01, + "HeroDur1": 0.01, + "Cool1": 1, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs6.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Targetattach3": "sprite,fourth", + "Targetattach4": "sprite,fifth", + "Targetattach5": "sprite,sixth", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs6.mdl", + "Missilearc": "0.05" + }, + "Aspa": { + "alias": "Aspa", + "code": "Aspa", + "comments": "Spider Attack", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,ward,item,structure,debris,enemy", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Aspi": { + "alias": "Aspi", + "code": "Aspi", + "comments": "Spiked Barricades", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Orc\\SpikeBarrier\\SpikeBarrier.mdl" + }, + "Aspl": { + "alias": "Aspl", + "code": "Aspl", + "comments": "Spirit Link", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,organic", + "Cast1": 0, + "Dur1": 75, + "HeroDur1": 75, + "Cool1": 0, + "Cost1": 75, + "Area1": 500, + "Rng1": 750, + "DataA1": 0.5, + "DataB1": 4, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bspl", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "spiritlink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritLink.blp", + "Targetart": "Abilities\\Spells\\Orc\\SpiritLink\\SpiritLinkZapTarget.mdl", + "Casterart": "Abilities\\Spells\\Orc\\SpiritLink\\SpiritLinkZapTarget.mdl", + "LightningEffect": "SPLK" + }, + "Astd": { + "alias": "Astd", + "code": "Astd", + "comments": "Stand Down", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "standdown", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBacktoWork.blp" + }, + "Asta": { + "alias": "Asta", + "code": "Asta", + "comments": "Stasis Trap", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,neutral,enemy", + "Cast1": 0, + "Dur1": 150, + "HeroDur1": 2, + "Cool1": 0, + "Cost1": 100, + "Area1": "-", + "Rng1": 500, + "DataA1": 7, + "DataB1": 175, + "DataC1": 350, + "DataD1": 4, + "DataE1": 0.5, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "otot", + "BuffID1": "Bsta", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rowd", + "Order": "stasistrap", + "skinType": "ability", + "UnitSkinID": "otot", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStasisTrap.blp" + }, + "Astn": { + "alias": "Astn", + "code": "Astn", + "comments": "Stone Form", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0.7, + "Dur1": 0.5, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 0, + "Area1": -1, + "Rng1": "-", + "DataA1": "ugar", + "DataB1": 7, + "DataC1": 0.5, + "DataD1": 0.5, + "DataE1": 8, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ugrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rusf", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "stoneform", + "Unorder": "unstoneform", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStoneForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNGargoyle.blp" + }, + "Asth": { + "alias": "Asth", + "code": "Asth", + "comments": "Storm Hammers", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rhhb", + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNStormHammer.blp" + }, + "Asb1": { + "alias": "Asb1", + "code": "ANsu", + "comments": "Submerge (Myrmidon)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.67, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "nmyr", + "DataB1": 1, + "DataC1": 0, + "DataD1": "#VALUE!", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nmys", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rnsb", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "submerge", + "Unorder": "unsubmerge", + "skinType": "ability", + "UnitSkinID": "nmys", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNagaUnBurrow.blp", + "Effectsound": "SubmergeSound" + }, + "Asb2": { + "alias": "Asb2", + "code": "ANsu", + "comments": "Submerge (Royal Guard)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.7, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "nnrg", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nnrs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "submerge", + "Unorder": "unsubmerge", + "skinType": "ability", + "UnitSkinID": "nnrs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNagaUnBurrow.blp", + "Effectsound": "SubmergeSound" + }, + "Asb3": { + "alias": "Asb3", + "code": "ANsu", + "comments": "Submerge (Snap Dragon)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.6, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "nsnp", + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nsbs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Rnsb", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "submerge", + "Unorder": "unsubmerge", + "skinType": "ability", + "UnitSkinID": "nsbs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNagaUnBurrow.blp", + "Effectsound": "SubmergeSound" + }, + "Aslp": { + "alias": "Aslp", + "code": "ANwm", + "comments": "Summon Lobstrok Prawns", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 30, + "Cost1": 75, + "Area1": 200, + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nlps", + "BuffID1": "BNwm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "wateryminion", + "skinType": "ability", + "UnitSkinID": "nlps", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "ACwe": { + "alias": "ACwe", + "code": "AHwe", + "comments": "Summon Sea Elemental", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "hero", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 65, + "HeroDur1": 65, + "Cool1": 30, + "Cost1": 125, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nsel", + "BuffID1": "BHwe", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "waterelemental", + "skinType": "ability", + "UnitSkinID": "nsel", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaElemental.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSeaElemental.blp" + }, + "Attu": { + "alias": "Attu", + "code": "Attu", + "comments": "Tank Turret", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Attu" + }, + "Srtt": { + "alias": "Srtt", + "code": "Acha", + "comments": "Tank Upgrade", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hrtt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Srtt" + }, + "Atau": { + "alias": "Atau", + "code": "Atau", + "comments": "Taunt", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 14, + "Cost1": 0, + "Area1": 450, + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": 1, + "DataE1": 3, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "taunt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTaunt.blp", + "Casterart": "Abilities\\Spells\\NightElf\\Taunt\\TauntCaster.mdl" + }, + "ANta": { + "alias": "ANta", + "code": "Atau", + "comments": "Taunt(Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 14, + "Cost1": 0, + "Area1": 450, + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": 1, + "DataE1": 3, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "taunt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPandaTaunt.blp", + "Casterart": "Abilities\\Spells\\NightElf\\Taunt\\TauntCaster.mdl" + }, + "ANth": { + "alias": "ANth", + "code": "AUts", + "comments": "Thorny Shield (Creep)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": "-", + "Rng1": "-", + "DataA1": 0.3, + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUtt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "Thornyshield", + "Unorder": "Unthornyshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThornShield.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp" + }, + "ANt2": { + "alias": "ANt2", + "code": "AUts", + "comments": "Thorny Shield (Dragon Turtle)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": "-", + "Rng1": "-", + "DataA1": 0.3, + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUts", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Researchbuttonpos": "1,0", + "Order": "Thornyshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThornShield.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp" + }, + "ACah": { + "alias": "ACah", + "code": "AEah", + "comments": "Thorns Aura (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEah", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThorns.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ThornsAura\\ThornsAura.mdl", + "Targetattach": "origin" + }, + "ACtb": { + "alias": "ACtb", + "code": "ACtb", + "comments": "Thunder Bolt (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,enemy,neutral", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 8, + "Cost1": 75, + "Area1": "-", + "Rng1": 800, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Missilespeed": "1000", + "Order": "creepthunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGolemStormBolt.blp", + "Missileart": "Abilities\\Weapons\\RockBoltMissile\\RockBoltMissile.mdl", + "Missilearc": ".30", + "Animnames": "spell,throw" + }, + "ACtc": { + "alias": "ACtc", + "code": "ACtc", + "comments": "Thunder Clap (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,neutral", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 2, + "Cool1": 6, + "Cost1": 90, + "Area1": 250, + "Rng1": "-", + "DataA1": 70, + "DataB1": 0, + "DataC1": 0.25, + "DataD1": 0.25, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BCtc", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "creepthunderclap", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGolemThunderclap.blp", + "Casterart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderClapCaster.mdl", + "Casterattach": "origin", + "Animnames": "spell,slam" + }, + "ACt2": { + "alias": "ACt2", + "code": "ACtc", + "comments": "Thunder Clap (Thunder Lizard)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,neutral", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 2, + "Cool1": 6, + "Cost1": 90, + "Area1": 250, + "Rng1": "-", + "DataA1": 70, + "DataB1": 0, + "DataC1": 0.25, + "DataD1": 0.25, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BCtc", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "creepthunderclap", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGolemThunderclap.blp", + "Casterart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderClapCaster.mdl", + "Casterattach": "origin", + "Animnames": "spell,slam" + }, + "Atdg": { + "alias": "Atdg", + "code": "Atdg", + "comments": "TornadoDamage", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure,enemy", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 650, + "DataA1": 14, + "DataB1": 125, + "DataC1": 100, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Btdg", + "targs2": "_", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Atsp": { + "alias": "Atsp", + "code": "Atsp", + "comments": "TornadoSpin", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 6, + "Cool1": 0, + "Cost1": 0, + "Area1": 275, + "DataA1": 22, + "DataB1": 3, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Btsp,Btsa", + "targs2": "_", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Atwa": { + "alias": "Atwa", + "code": "Atwa", + "comments": "TornadoWander", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "naga", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 0, + "Cost1": 0, + "Area1": 1500, + "Rng1": 1400, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "Atol": { + "alias": "Atol", + "code": "Atol", + "comments": "Tree of life (for attaching art)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\TreeofLifeUpgrade\\TreeofLifeUpgradeTargetArt.mdl,Abilities\\Spells\\NightElf\\TreeofLifeUpgrade\\TreeofLifeUpgradeTargetArtHand.mdl,Abilities\\Spells\\NightElf\\TreeofLifeUpgrade\\TreeofLifeUpgradeTargetArtHand.mdl", + "Targetattachcount": "3", + "Targetattach": "origin", + "Targetattach1": "hand,left", + "Targetattach2": "hand,right" + }, + "Ault": { + "alias": "Ault", + "code": "Ault", + "comments": "Ultravision", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Requires": "Reuv", + "skinType": "ability" + }, + "ACua": { + "alias": "ACua", + "code": "AUau", + "comments": "Unholy Aura (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 0.5, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUau", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUnholyAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\UnholyAura\\UnholyAura.mdl", + "Targetattach": "origin" + }, + "Auhf": { + "alias": "Auhf", + "code": "Auhf", + "comments": "Unholy Frenzy", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 1, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.75, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUhf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rune", + "Order": "unholyfrenzy", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "Suhf": { + "alias": "Suhf", + "code": "Auhf", + "comments": "Unholy Frenzy (Warlock)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 3, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.75, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUhf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "unholyfrenzy", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "ACuf": { + "alias": "ACuf", + "code": "Auhf", + "comments": "Unholy Frenzy (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 5, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.75, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUhf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "unholyfrenzy", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "Auuf": { + "alias": "Auuf", + "code": "Auuf", + "comments": "Incite Unholy Frenzy", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,player,nonhero,invu,vuln", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 5, + "Cost1": 175, + "Area1": 250, + "Rng1": 500, + "DataA1": 0.5, + "DataB1": 3, + "DataC1": 1, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "air,ground,organic", + "DataI1": "-", + "BuffID1": "BUhf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Rune", + "Requiresamount": "2", + "Order": "unholyfrenzyaoe", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\UnholyFrenzyAOE\\UnholyFrenzyAOETarget.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp", + "Targetattach": "origin" + }, + "Auco": { + "alias": "Auco", + "code": "Auco", + "comments": "Unstable Concoction", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,neutral,enemy", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 400, + "DataA1": 0, + "DataB1": 600, + "DataC1": 200, + "DataD1": 140, + "DataE1": 0, + "DataF1": 280, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "unstableconcoction", + "Orderon": "unstableconcoctionon", + "Orderoff": "unstableconcoctionoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnstableConcoction.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUnstableConcoction.blp" + }, + "Auns": { + "alias": "Auns", + "code": "Auns", + "comments": "Unsummon", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure,player", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.5, + "DataB1": 50, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "unsummon", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnsummonBuilding.blp" + }, + "SCva": { + "alias": "SCva", + "code": "AIva", + "comments": "Vampiric attack", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostMourne.blp", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "ACvp": { + "alias": "ACvp", + "code": "AUav", + "comments": "Vampiric Aura (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": "-", + "Area1": 900, + "Rng1": "-", + "DataA1": 0.2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUav", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNVampiricAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAura.mdl", + "Targetattach": "origin" + }, + "Avng": { + "alias": "Avng", + "code": "Avng", + "comments": "Vengeance", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead", + "Cast1": 0, + "Dur1": 50, + "HeroDur1": 50, + "Cool1": 2, + "Cost1": 25, + "Area1": 900, + "Rng1": 600, + "DataA1": 1, + "DataB1": 0, + "DataC1": "even", + "DataD1": "-", + "DataE1": 6, + "DataF1": 1, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bvng", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "Vengeance", + "Orderon": "Vengeanceon", + "Orderoff": "Vengeanceoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAvengingWatcherOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAvengingWatcherOff.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Awan": { + "alias": "Awan", + "code": "Awan", + "comments": "Wander", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Awan" + }, + "Awrs": { + "alias": "Awrs", + "code": "AOws", + "comments": "War Stomp (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 2, + "Cool1": 6, + "Cost1": 90, + "Area1": 250, + "Rng1": "-", + "DataA1": 25, + "DataB1": -50, + "DataC1": 300, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "slam" + }, + "Awrg": { + "alias": "Awrg", + "code": "AOws", + "comments": "War Stomp (sea giant)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 2, + "Cool1": 6, + "Cost1": 90, + "Area1": 250, + "Rng1": "-", + "DataA1": 25, + "DataB1": -50, + "DataC1": 300, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaGiantWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "slam" + }, + "Awrh": { + "alias": "Awrh", + "code": "AOws", + "comments": "War Stomp (hydra)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 2, + "Cool1": 6, + "Cost1": 90, + "Area1": 250, + "Rng1": "-", + "DataA1": 25, + "DataB1": -50, + "DataC1": 300, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHydraWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "slam" + }, + "ANwk": { + "alias": "ANwk", + "code": "AOwk", + "comments": "Wind Walk", + "version": 1, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 1, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 7, + "Cost1": 75, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.6, + "DataB1": 0.1, + "DataC1": 50, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOwk", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "windwalk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Effectsound": "WindWalk" + }, + "Awha": { + "alias": "Awha", + "code": "Awha", + "comments": "Wisp Harvest", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,alive,dead", + "Cast1": 0, + "Dur1": 7.5, + "HeroDur1": 7.5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 5, + "DataB1": 5, + "DataC1": 150, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TargetArtLumber\\TargetArtLumber.mdl", + "Targetattach": "origin", + "Effectsoundlooped": "WispHarvestLoop" + }, + "Awh2": { + "alias": "Awh2", + "code": "Awha", + "comments": "Wisp Harvest (Invulnerable)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "tree,vuln,invu,alive,dead", + "Cast1": 0, + "Dur1": 8, + "HeroDur1": 8, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 900, + "DataA1": 5, + "DataB1": 5, + "DataC1": 150, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TargetArtLumber\\TargetArtLumber.mdl", + "Targetattach": "origin", + "Effectsoundlooped": "WispHarvestLoop" + }, + "Aven": { + "alias": "Aven", + "code": "Aven", + "comments": "Venom Spears", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 25, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": 0, + "DataC1": 0, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bpoi,Bpsd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Rovs", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEnvenomedSpear.blp" + }, + "ACvs": { + "alias": "ACvs", + "code": "Aven", + "comments": "Venom Spears (Creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 0, + "DataC1": 0, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bpoi,Bpsd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEnvenomedSpear.blp" + }, + "Awrp": { + "alias": "Awrp", + "code": "Awrp", + "comments": "Warp", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 400, + "DataB1": 400, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Awrp" + }, + "Aweb": { + "alias": "Aweb", + "code": "Aweb", + "comments": "Web", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,enemy,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 7, + "Cool1": 12, + "Cost1": 0, + "Area1": "-", + "Rng1": 400, + "DataA1": 0.6, + "DataB1": 200, + "DataC1": 128, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bwea,Bweb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Requires": "Ruwb", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "web", + "Orderon": "webon", + "Orderoff": "weboff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWebOn.blp", + "Missileart": "Abilities\\Spells\\Undead\\Web\\Webmissile.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWebOff.blp" + }, + "ACwb": { + "alias": "ACwb", + "code": "Aweb", + "comments": "Web (creep)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "creeps", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,enemy,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 7, + "Cool1": 12, + "Cost1": 0, + "Area1": "-", + "Rng1": 400, + "DataA1": 0.6, + "DataB1": 200, + "DataC1": 128, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bwea,Bweb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "web", + "Orderon": "webon", + "Orderoff": "weboff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWebOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWebOff.blp", + "Missileart": "Abilities\\Spells\\Undead\\Web\\Webmissile.mdl" + }, + "AIa1": { + "alias": "AIa1", + "code": "AIab", + "comments": "AgilityBonus (+1)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingPurple.blp" + }, + "AIa2": { + "alias": "AIa2", + "code": "AIab", + "comments": "AgilityBonus (+2)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlippersOfAgility.blp" + }, + "AIa3": { + "alias": "AIa3", + "code": "AIab", + "comments": "AgilityBonus (+3)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIa3" + }, + "AIa4": { + "alias": "AIa4", + "code": "AIab", + "comments": "AgilityBonus (+4) ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIa4" + }, + "AIa5": { + "alias": "AIa5", + "code": "AIab", + "comments": "AgilityBonus (+5) ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIa5" + }, + "AIa6": { + "alias": "AIa6", + "code": "AIab", + "comments": "AgilityBonus (+6)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 6, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBoots.blp" + }, + "AIx5": { + "alias": "AIx5", + "code": "AIab", + "comments": "Crown of Kings (All + 5)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 5, + "DataC1": 5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHelmutPurple.blp" + }, + "AIx1": { + "alias": "AIx1", + "code": "AIab", + "comments": "(All + 1)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 1, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoldRing.blp" + }, + "AIx2": { + "alias": "AIx2", + "code": "AIab", + "comments": "(All + 2)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 2, + "DataC1": 2, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCirclet.blp" + }, + "AIs1": { + "alias": "AIs1", + "code": "AIab", + "comments": "StrengthBonus (+1)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHammer.blp" + }, + "AIs2": { + "alias": "AIs2", + "code": "AIas", + "comments": "Attack Speed Increase(greater)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGauntletsOfOgrePower.blp" + }, + "AIs3": { + "alias": "AIs3", + "code": "AIab", + "comments": "StrengthBonus (+3)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 3, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIs3" + }, + "AIs4": { + "alias": "AIs4", + "code": "AIab", + "comments": "StrengthBonus (+4)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 4, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIs4" + }, + "AIs5": { + "alias": "AIs5", + "code": "AIab", + "comments": "StrengthBonus (+5)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIs5" + }, + "AIs6": { + "alias": "AIs6", + "code": "AIab", + "comments": "StrengthBonus (+6)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 6, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBelt.blp" + }, + "AIi1": { + "alias": "AIi1", + "code": "AIab", + "comments": "IntelligenceBonus (+1)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowPact.blp" + }, + "AIi2": { + "alias": "AIi2", + "code": "Aiab", + "comments": "IntelligenceBonus (+2)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 2, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMantleOfIntelligence.blp" + }, + "AIi3": { + "alias": "AIi3", + "code": "AIab", + "comments": "IntelligenceBonus (+3)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 3, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIi3" + }, + "AIi4": { + "alias": "AIi4", + "code": "AIab", + "comments": "IntelligenceBonus (+4)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 4, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIi4" + }, + "AIi5": { + "alias": "AIi5", + "code": "AIab", + "comments": "IntelligenceBonus (+5)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 5, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIi5" + }, + "AIi6": { + "alias": "AIi6", + "code": "AIab", + "comments": "IntelligenceBonus (+6)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 6, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRobeOfTheMagi.blp" + }, + "AIvm": { + "alias": "AIvm", + "code": "AIvm", + "comments": "Reassignable Attribute Bonus (+1)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1 + }, + "AIxm": { + "alias": "AIxm", + "code": "AIxm", + "comments": "Permanent All + 1", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 1, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Targetart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Targetattach": "origin" + }, + "AIam": { + "alias": "AIam", + "code": "AIam", + "comments": "AgilityMod ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIam\\AIamTarget.mdl", + "Targetattach": "origin" + }, + "AIim": { + "alias": "AIim", + "code": "AIim", + "comments": "IntelligenceMod ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIim\\AIimTarget.mdl", + "Targetattach": "origin" + }, + "AIsm": { + "alias": "AIsm", + "code": "AIsm", + "comments": "StrengthMod ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIsm\\AIsmTarget.mdl", + "Targetattach": "origin" + }, + "AIgm": { + "alias": "AIgm", + "code": "AIam", + "comments": "AgilityMod +2", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIam\\AIamTarget.mdl", + "Targetattach": "origin" + }, + "AItm": { + "alias": "AItm", + "code": "AIim", + "comments": "IntelligenceMod +2", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 2, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIim\\AIimTarget.mdl", + "Targetattach": "origin" + }, + "AInm": { + "alias": "AInm", + "code": "AIsm", + "comments": "StrengthMod +2", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": 2, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIsm\\AIsmTarget.mdl", + "Targetattach": "origin" + }, + "AIaa": { + "alias": "AIaa", + "code": "AIaa", + "comments": "AttackMod", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AIat": { + "alias": "AIat", + "code": "AIat", + "comments": "AttackBonus ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIt6": { + "alias": "AIt6", + "code": "AIat", + "comments": "AttackBonus ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 6, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIt9": { + "alias": "AIt9", + "code": "AIat", + "comments": "AttackBonus ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 8, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItc": { + "alias": "AItc", + "code": "AIat", + "comments": "AttackBonus ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 12, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItf": { + "alias": "AItf", + "code": "AIat", + "comments": "AttackBonus ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 15, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItg": { + "alias": "AItg", + "code": "AIat", + "comments": "AttackBonus +1", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIth": { + "alias": "AIth", + "code": "AIat", + "comments": "AttackBonus +2", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIti": { + "alias": "AIti", + "code": "AIat", + "comments": "AttackBonus +4", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItj": { + "alias": "AItj", + "code": "AIat", + "comments": "AttackBonus +5", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItk": { + "alias": "AItk", + "code": "AIat", + "comments": "AttackBonus +7", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 7, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItl": { + "alias": "AItl", + "code": "AIat", + "comments": "AttackBonus +8", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 8, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItn": { + "alias": "AItn", + "code": "AIat", + "comments": "AttackBonus +10", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIva": { + "alias": "AIva", + "code": "AIva", + "comments": "Vampiric attack", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMaskOfDeath.blp", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "AIbk": { + "alias": "AIbk", + "code": "AEbl", + "comments": "Blink (Item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.33, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": 99999, + "DataA1": 1000, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Order": "blink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlink.blp", + "Areaeffectart": "Abilities\\Spells\\NightElf\\Blink\\BlinkTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Blink\\BlinkCaster.mdl" + }, + "AIbl": { + "alias": "AIbl", + "code": "AIbl", + "comments": "Build Tiny Castle", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hcas,ofrt,unp2,etoe", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "hcas,ofrt,unp2,etoe", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTinyCastle.blp" + }, + "AIbg": { + "alias": "AIbg", + "code": "AIbl", + "comments": "Build Tiny Great Hall", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "htow,ogre,unpl,etol", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "htow,ogre,unpl,etol", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTownHall.blp" + }, + "AIbt": { + "alias": "AIbt", + "code": "AIbl", + "comments": "Build Tiny Scout Tower", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hwtw,hwtw,hwtw,hwtw", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "hwtw,hwtw,hwtw,hwtw", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanWatchTower.blp" + }, + "AIbb": { + "alias": "AIbb", + "code": "AIbl", + "comments": "Build Tiny Blacksmith", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hbla,hbla,hbla,hbla", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "UnitSkinID": "hbla,hbla,hbla,hbla", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlacksmith.blp" + }, + "AIbf": { + "alias": "AIbf", + "code": "AIbl", + "comments": "Build Tiny Farm", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hhou,hhou,hhou,hhou", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "UnitSkinID": "hhou,hhou,hhou,hhou", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFarm.blp" + }, + "AIbr": { + "alias": "AIbr", + "code": "AIbl", + "comments": "Build Tiny Lumber Mill", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hlum,hlum,hlum,hlum", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "UnitSkinID": "hlum,hlum,hlum,hlum", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanLumberMill.blp" + }, + "AIbs": { + "alias": "AIbs", + "code": "AIbl", + "comments": "Build Tiny Barracks", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "hbar,hbar,hbar,hbar", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "UnitSkinID": "hbar,hbar,hbar,hbar", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanBarracks.blp" + }, + "AIbh": { + "alias": "AIbh", + "code": "AIbl", + "comments": "Build Tiny Altar", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "halt,halt,halt,halt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "UnitSkinID": "halt,halt,halt,halt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfKings.blp" + }, + "AIcy": { + "alias": "AIcy", + "code": "Acyc", + "comments": "Cyclone", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 5.6, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 600, + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcyc,Bcy2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "AId1": { + "alias": "AId1", + "code": "AIde", + "comments": "DefenseBonus (+1)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "AId2": { + "alias": "AId2", + "code": "AIde", + "comments": "DefenseBonus (+2)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp" + }, + "AId3": { + "alias": "AId3", + "code": "AIde", + "comments": "DefenseBonus (+3)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp" + }, + "AId4": { + "alias": "AId4", + "code": "AIde", + "comments": "DefenseBonus (+4)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp" + }, + "AId5": { + "alias": "AId5", + "code": "AIde", + "comments": "DefenseBonus (+5)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "AIgf": { + "alias": "AIgf", + "code": "AIgl", + "comments": "FortificationGlyph", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Rgfo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "Rgfo", + "Effectsound": "PowerupSound" + }, + "AIgu": { + "alias": "AIgu", + "code": "AIgl", + "comments": "UltraVisionGlyph", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 2, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "Rguv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": 1, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "Reuv", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "Rguv,Reuv", + "Effectsound": "PowerupSound" + }, + "AIem": { + "alias": "AIem", + "code": "AIem", + "comments": "ExperienceMod ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeBrown.blp", + "Casterart": "Abilities\\Spells\\Items\\AIem\\AIemTarget.mdl", + "Casterattach": "origin" + }, + "AIe2": { + "alias": "AIe2", + "code": "AIem", + "comments": "ExperienceMod greater", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 500, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManual3.blp", + "Casterart": "Abilities\\Spells\\Items\\AIem\\AIemTarget.mdl", + "Casterattach": "origin" + }, + "AIfd": { + "alias": "AIfd", + "code": "AIfs", + "comments": "FigurineRedDrake ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nrdr", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRedDragon.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIff": { + "alias": "AIff", + "code": "AIfs", + "comments": "FigurineFurbolg", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nfrl", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolg.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfr": { + "alias": "AIfr", + "code": "AIfs", + "comments": "FigurineRockGolem ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "ngst", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfu": { + "alias": "AIfu", + "code": "AIfs", + "comments": "FigurineDoomGuard ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nba2", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDoomGuard.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfh": { + "alias": "AIfh", + "code": "AIfs", + "comments": "FigurineFelHound ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nfel", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfs": { + "alias": "AIfs", + "code": "AIfs", + "comments": "FigurineSkeleton ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 120, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 3, + "DataB1": 3, + "DataC1": "nsce", + "DataD1": "nsca", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "Targetart": "Abilities\\Spells\\Undead\\RaiseSkeletonWarrior\\RaiseSkeleton.mdl" + }, + "AIir": { + "alias": "AIir", + "code": "AIfs", + "comments": "FigurineIceRevenant", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 180, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nrvi", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceShard.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AIuw": { + "alias": "AIuw", + "code": "AIfs", + "comments": "FigurineUrsaWarrior", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 180, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nfra", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmuletOftheWild.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AIfl": { + "alias": "AIfl", + "code": "AIfl", + "comments": "Flag ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Targetart": "UI\\Feedback\\RallyPoint\\RallyPoint.mdl", + "Targetattach": "hand,right" + }, + "AIfm": { + "alias": "AIfm", + "code": "AIfm", + "comments": "Flag (Human)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\HumanCaptureFlag\\HumanCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIfo": { + "alias": "AIfo", + "code": "AIfo", + "comments": "Flag (Orc)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\OrcCaptureFlag\\OrcCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIfn": { + "alias": "AIfn", + "code": "AIfn", + "comments": "Flag (Night Elf)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\NightElfCaptureFlag\\NightElfCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIfe": { + "alias": "AIfe", + "code": "AIfe", + "comments": "Flag (Undead)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\UndeadCaptureFlag\\UndeadCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIfx": { + "alias": "AIfx", + "code": "AIfl", + "comments": "Flag (Orc Battle Standard)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcBattleStandard.blp", + "Targetart": "Objects\\InventoryItems\\BattleStandard\\BattleStandard.mdl", + "Targetattach": "chest" + }, + "AIfa": { + "alias": "AIfa", + "code": "AIfa", + "comments": "FlareGun", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 0, + "Area1": 1800, + "Rng1": 99999, + "DataA1": 1, + "DataB1": 0.8, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "Xfla", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlare.blp", + "Casterart": "Abilities\\Spells\\Human\\Flare\\FlareCaster.mdl" + }, + "AIin": { + "alias": "AIin", + "code": "AUin", + "comments": "ItemInferno", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,debris,enemy,neutral", + "Cast1": 0, + "Dur1": 4, + "HeroDur1": 2, + "Cool1": 20, + "Cost1": 0, + "Area1": 250, + "Rng1": 900, + "DataA1": 50, + "DataB1": 180, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ninf", + "BuffID1": "BNin", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "inferno", + "skinType": "ability", + "UnitSkinID": "ninf", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl" + }, + "AIlm": { + "alias": "AIlm", + "code": "AIlm", + "comments": "LevelMod ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AIlp": { + "alias": "AIlp", + "code": "AIlp", + "comments": "LightningPurge", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 0.3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": 0, + "DataC1": 35, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bprg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp" + }, + "AIlf": { + "alias": "AIlf", + "code": "AIml", + "comments": "MaxLifeBonus (Least)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 150, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIlf" + }, + "AIl1": { + "alias": "AIl1", + "code": "AIml", + "comments": "MaxLifeBonus (Lesser)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 200, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIl1" + }, + "AIl2": { + "alias": "AIl2", + "code": "AIml", + "comments": "MaxLifeBonus (Greater)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 300, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPeriapt1.blp" + }, + "AIms": { + "alias": "AIms", + "code": "AIms", + "comments": "MoveSpeedBonus ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 60, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBootsOfSpeed.blp" + }, + "ANbs": { + "alias": "ANbs", + "code": "ANbs", + "comments": "Orb of Darkness (Black Arrow)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 600, + "DataA1": 0, + "DataB1": 1, + "DataC1": 80, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ndr2", + "BuffID1": "BNba,BNdm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Missilespeed": "1050", + "MissileHoming": "1", + "Order": "blackarrow", + "skinType": "ability", + "UnitSkinID": "ndr1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp", + "Missileart": "Abilities\\Spells\\Other\\BlackArrow\\BlackArrowMissile.mdl" + }, + "AIdf": { + "alias": "AIdf", + "code": "AIsb", + "comments": "Orb of Darkness", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 6, + "DataB1": 100, + "DataC1": 100, + "DataD1": 100, + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ANbs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "ANbs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "Missileart": "Abilities\\Weapons\\AvengerMissile\\AvengerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\OrbDarkness\\OrbDarkness.mdl", + "Targetattach": "weapon" + }, + "AIcb": { + "alias": "AIcb", + "code": "AIcb", + "comments": "Orb of Corruption", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 4, + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIcb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfCorruption.blp", + "Missileart": "Abilities\\Spells\\Items\\OrbCorruption\\OrbCorruptionMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\OrbCorruption\\OrbCorruption.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\OrbCorruption\\OrbCorruptionSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIdn": { + "alias": "AIdn", + "code": "AIfb", + "comments": "Shadow Orb Ability", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "Missileart": "Abilities\\Weapons\\VengeanceMissile\\VengeanceMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\OrbDarkness\\OrbDarkness.mdl", + "Targetattach": "weapon" + }, + "AIfb": { + "alias": "AIfb", + "code": "AIfb", + "comments": "Orb of Fire", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 150, + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIgd": { + "alias": "AIgd", + "code": "AIfb", + "comments": "Orb of Guldan", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 140, + "Rng1": "-", + "DataA1": 6, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\IllidanMissile\\IllidanMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIzb": { + "alias": "AIzb", + "code": "AIzb", + "comments": "Orb of Freezing", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 9, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfre", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIzb" + }, + "AIob": { + "alias": "AIob", + "code": "AIob", + "comments": "Orb of Frost", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 6, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFrost.blp", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\AIob\\AIobTarget.mdl", + "Missilehoming": "1", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIob\\AIobSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIll": { + "alias": "AIll", + "code": "AIsb", + "comments": "Orb of Lightning", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 30, + "DataC1": 10, + "DataD1": 30, + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "AIpg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "AIpg", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIlb\\AIlbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIlb\\AIlbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIlb": { + "alias": "AIlb", + "code": "AIlb", + "comments": "Orb of Lightning(old)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 6, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIlb\\AIlbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIlb\\AIlbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIsb": { + "alias": "AIsb", + "code": "AIsb", + "comments": "Orb of Spells", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 25, + "DataC1": 10, + "DataD1": 25, + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "AIno", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "MissileHoming": "1", + "skinType": "ability", + "UnitSkinID": "AIos", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbofSlowness.blp", + "Missileart": "Abilities\\Weapons\\ProcMissile\\ProcMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\OrbSlow\\OrbSlowNew.mdl", + "Targetattach": "weapon", + "Missilehoming": "1" + }, + "AIpb": { + "alias": "AIpb", + "code": "AIpb", + "comments": "Orb of Venom", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfVenom.blp", + "Missileart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenomMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenom.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenomSpecialArt.mdl", + "Specialattach": "chest" + }, + "Apo2": { + "alias": "Apo2", + "code": "Apo2", + "comments": "Orb of Venom (Poison Attack)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,organic", + "Cast1": 0, + "Dur1": 6, + "HeroDur1": 6, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 8, + "DataB1": 0, + "DataC1": 0, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIpb,BIpd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,0", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPoisonSting.blp", + "Missileart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenomMissile.mdl" + }, + "AInd": { + "alias": "AInd", + "code": "ACad", + "comments": "Animate Dead (item, special)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 90, + "Cost1": 0, + "Area1": 900, + "Rng1": 400, + "DataA1": 1, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUan", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandSkull.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "Arel": { + "alias": "Arel", + "code": "Arel", + "comments": "Regen Life", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingSkull.blp" + }, + "Arll": { + "alias": "Arll", + "code": "Arel", + "comments": "Regen Life", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealthStone.blp" + }, + "AIsi": { + "alias": "AIsi", + "code": "AIsi", + "comments": "SightBonus ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 500, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTelescope.blp" + }, + "AIos": { + "alias": "AIos", + "code": "Aslo", + "comments": "Slow", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 700, + "DataA1": 0.55, + "DataB1": 0.25, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bslo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "slow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlow.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "AIso": { + "alias": "AIso", + "code": "AIso", + "comments": "SoulTrap ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "enemy,hero", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSoulGem.blp", + "Effectart": "Abilities\\Spells\\Items\\AIso\\AIsoTarget.mdl" + }, + "Asou": { + "alias": "Asou", + "code": "Asou", + "comments": "SoulPossession", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIsv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUsedSoulGem.blp" + }, + "AIcf": { + "alias": "AIcf", + "code": "AIcf", + "comments": "ItemCloakOfFlames", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral", + "Cast1": 0, + "Dur1": 1, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": 160, + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIcf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloakOfFlames.blp" + }, + "AIco": { + "alias": "AIco", + "code": "AIco", + "comments": "ItemCommand ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,nonhero,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 600, + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScepterOfMastery.blp", + "Targetart": "Abilities\\Spells\\Items\\AIco\\CrownOfCmndTarget.mdl", + "Targetattach": "overhead" + }, + "AIdm": { + "alias": "AIdm", + "code": "AIdm", + "comments": "ItemDamageAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinLandMine.blp" + }, + "AIda": { + "alias": "AIda", + "code": "AIda", + "comments": "ItemDefenseAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,invu,vuln", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": 250, + "DataA1": 2, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bdef", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScroll.blp", + "Casterart": "Abilities\\Spells\\Items\\AIda\\AIdaCaster.mdl" + }, + "AIdb": { + "alias": "AIdb", + "code": "AIda", + "comments": "ItemDefenseAoe (+ Healing)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,invu,vuln", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": 250, + "DataA1": 2, + "DataB1": 150, + "DataC1": 100, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bdef", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScroll.blp", + "Casterart": "Abilities\\Spells\\Items\\AIda\\AIdaCaster.mdl", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin" + }, + "AIta": { + "alias": "AIta", + "code": "AIta", + "comments": "ItemDetectAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 99999, + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bdet", + "EfctID1": "Xbdt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrystalBall.blp", + "Casterart": "Abilities\\Spells\\Items\\AIta\\CrystalBallCaster.mdl", + "Casterattach": "overhead" + }, + "AIdi": { + "alias": "AIdi", + "code": "AIdi", + "comments": "ItemDispelAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 0, + "Area1": 200, + "Rng1": 500, + "DataA1": 0, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandSkull.blp", + "Effectart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "AIds": { + "alias": "AIds", + "code": "AIdi", + "comments": "ItemDispelAoeWithCooldown", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 7.5, + "Cost1": 0, + "Area1": 200, + "Rng1": 500, + "DataA1": 0, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfNegation.blp", + "Effectart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "APdi": { + "alias": "APdi", + "code": "AIdi", + "comments": "PowerupDispelAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,invu,vuln,tree", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 800, + "Rng1": 500, + "DataA1": 0, + "DataB1": 250, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "Effectart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl", + "Effectsound": "PowerupSound" + }, + "AIh1": { + "alias": "AIh1", + "code": "AIhe", + "comments": "ItemHeal (Lesser)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 250, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionGreenSmall.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIh2": { + "alias": "AIh2", + "code": "AIhe", + "comments": "ItemHeal (Greater)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 40, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 500, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionGreen.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIh3": { + "alias": "AIh3", + "code": "AIhe", + "comments": "ItemHeal (Least)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 60, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 250, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeartOfAszune.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIha": { + "alias": "AIha", + "code": "AIha", + "comments": "ItemHealAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 25, + "Cost1": 0, + "Area1": 600, + "Rng1": 250, + "DataA1": 150, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIhb": { + "alias": "AIhb", + "code": "AIha", + "comments": "ItemHealAoeGreater", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": 250, + "DataA1": 250, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "APh1": { + "alias": "APh1", + "code": "AIha", + "comments": "PowerupHealAoeLesser", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 800, + "Rng1": 250, + "DataA1": 125, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "APh2": { + "alias": "APh2", + "code": "AIha", + "comments": "PowerupHealAoe", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 800, + "Rng1": 250, + "DataA1": 250, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "APh3": { + "alias": "APh3", + "code": "AIha", + "comments": "PowerupHealAoeGreater", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 800, + "Rng1": 250, + "DataA1": 400, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "AIhw": { + "alias": "AIhw", + "code": "Ahwd", + "comments": "Healing Ward", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "ohwd", + "BuffID1": "Bhwd", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "healingward", + "skinType": "ability", + "UnitSkinID": "ohwd", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "AIsw": { + "alias": "AIsw", + "code": "Aeye", + "comments": "Sentry Ward (Item)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 180, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "oeye", + "BuffID1": "Beye", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "evileye", + "skinType": "ability", + "UnitSkinID": "oeye", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp" + }, + "AIil": { + "alias": "AIil", + "code": "AIil", + "comments": "ItemIllusion ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 0, + "Cost1": 0, + "Area1": 200, + "Rng1": 500, + "DataA1": 0, + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIil", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWand.blp", + "Targetart": "Abilities\\Spells\\Items\\AIil\\AIilTarget.mdl", + "Targetattach": "origin" + }, + "AIv1": { + "alias": "AIv1", + "code": "AIvi", + "comments": "ItemInvis (Lesser)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 120, + "HeroDur1": 120, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Binv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIvi\\AIviTarget.mdl", + "Targetattach": "chest", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserInvisibility.blp" + }, + "AIv2": { + "alias": "AIv2", + "code": "AIvi", + "comments": "ItemInvis (Greater)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 180, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Binv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIvi\\AIviTarget.mdl", + "Targetattach": "chest", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterInvisibility.blp" + }, + "AIvu": { + "alias": "AIvu", + "code": "AIvu", + "comments": "ItemInvul (Normal)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 45, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bvul", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterInvulneralbility.blp" + }, + "AIvl": { + "alias": "AIvl", + "code": "AIvu", + "comments": "ItemInvul (Lesser)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 7, + "HeroDur1": 7, + "Cool1": 45, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bvul", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserInvulneralbility.blp" + }, + "AIvg": { + "alias": "AIvg", + "code": "AIvu", + "comments": "ItemInvul (Divinity)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 25, + "HeroDur1": 25, + "Cool1": 45, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bvul", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfDivinity.blp" + }, + "AIm1": { + "alias": "AIm1", + "code": "AIma", + "comments": "ItemManaRestore (Lesser)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 125, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionBlueSmall.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AIm2": { + "alias": "AIm2", + "code": "AIma", + "comments": "ItemManaRestore (Greater)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 40, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 200, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionBlueBig.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AImr": { + "alias": "AImr", + "code": "AImr", + "comments": "ItemManaRestoreAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": 250, + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin" + }, + "APmr": { + "alias": "APmr", + "code": "AImr", + "comments": "RuneManaRestoreAoe", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 1200, + "Rng1": 1200, + "DataA1": 125, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "APmg": { + "alias": "APmg", + "code": "AImr", + "comments": "RuneManaRestoreGreaterAoe", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 1200, + "Rng1": 1200, + "DataA1": 300, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "AIpm": { + "alias": "AIpm", + "code": "AIpm", + "comments": "ItemPlaceMine ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 200, + "Rng1": 100, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nglm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "nglm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinLandMine.blp" + }, + "AIrt": { + "alias": "AIrt", + "code": "AIrt", + "comments": "ItemRecall", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,player,vuln,invu,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 700, + "Rng1": 99999, + "DataA1": 12, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmulet.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "AIrm": { + "alias": "AIrm", + "code": "AIrm", + "comments": "ItemRegenMana ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSobiMask.blp" + }, + "AIrn": { + "alias": "AIrn", + "code": "AIrm", + "comments": "ItemRegenMana lesser", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.25, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "AIrn" + }, + "AIrc": { + "alias": "AIrc", + "code": "AIrc", + "comments": "ItemReincarnation ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 500, + "DataC1": -1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XOre", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "AIre": { + "alias": "AIre", + "code": "AIre", + "comments": "ItemRestore ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 40, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 500, + "DataB1": 200, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionRed.blp", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin" + }, + "AIra": { + "alias": "AIra", + "code": "AIra", + "comments": "ItemRestoreAoe ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 40, + "Cost1": 0, + "Area1": 600, + "Rng1": 250, + "DataA1": 150, + "DataB1": 150, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHealing.blp", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin" + }, + "APra": { + "alias": "APra", + "code": "AIra", + "comments": "RuneRestoreAoe", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 40, + "Cost1": 0, + "Area1": 1200, + "Rng1": 250, + "DataA1": 300, + "DataB1": 150, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHealing.blp", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "AIsp": { + "alias": "AIsp", + "code": "AIsp", + "comments": "ItemSpeed", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.6, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bspe", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionRed.blp" + }, + "AIsa": { + "alias": "AIsa", + "code": "AIsa", + "comments": "ItemSpeedAoe", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,nonsapper", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 60, + "Cost1": 0, + "Area1": 600, + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bspe", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHaste.blp" + }, + "APsa": { + "alias": "APsa", + "code": "AIsa", + "comments": "RuneSpeedAoe", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 60, + "Cost1": 0, + "Area1": 1200, + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bspe", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHaste.blp", + "Effectsound": "PowerupSound" + }, + "AItp": { + "alias": "AItp", + "code": "AItp", + "comments": "ItemTownPortal ", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure,vuln,invu", + "Cast1": 5, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 1100, + "Rng1": 99999, + "DataA1": 90, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollUber.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl" + }, + "AIad": { + "alias": "AIad", + "code": "AHad", + "comments": "ItemAuraDevotion", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 1.5, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHad", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Human\\DevotionAura\\DevotionAura.mdl", + "Targetattach": "origin" + }, + "AIcd": { + "alias": "AIcd", + "code": "AOac", + "comments": "ItemAuraCommand", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.1, + "DataB1": 1, + "DataC1": 1, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOac", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "AIwd": { + "alias": "AIwd", + "code": "Aakb", + "comments": "ItemAuraWarDrums", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.075, + "DataB1": 1, + "DataC1": 1, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bakb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrum.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "AIba": { + "alias": "AIba", + "code": "AHab", + "comments": "ItemAuraBrilliance", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.5, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHab", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Human\\Brilliance\\Brilliance.mdl", + "Targetattach": "origin" + }, + "AIav": { + "alias": "AIav", + "code": "AUav", + "comments": "ItemAuraVampiric", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.15, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUav", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVampiricAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAura.mdl", + "Targetattach": "origin" + }, + "AIar": { + "alias": "AIar", + "code": "AEar", + "comments": "ItemAuraTrueshot", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": " - ", + "DataA1": 0.075, + "DataB1": 0, + "DataC1": 1, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BEar", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": "-", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": "-", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": "-", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TrueshotAura\\TrueshotAura.mdl", + "Targetattach": "origin" + }, + "AIae": { + "alias": "AIae", + "code": "AOae", + "comments": "ItemAuraEndurance", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": " - ", + "DataA1": 0.075, + "DataB1": 0.035, + "DataC1": " - ", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BOae", + "targs2": "_", + "Cast2": " - ", + "Dur2": " - ", + "HeroDur2": " - ", + "Cool2": " - ", + "Cost2": " - ", + "Area2": " - ", + "Rng2": " - ", + "DataA2": "-", + "DataB2": " - ", + "DataC2": " - ", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": " - ", + "Dur3": " - ", + "HeroDur3": " - ", + "Cool3": " - ", + "Cost3": " - ", + "Area3": " - ", + "Rng3": " - ", + "DataA3": "-", + "DataB3": " - ", + "DataC3": " - ", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": " - ", + "Dur4": " - ", + "HeroDur4": " - ", + "Cool4": " - ", + "Cost4": " - ", + "Area4": " - ", + "Rng4": " - ", + "DataA4": "-", + "DataB4": " - ", + "DataC4": " - ", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "AIau": { + "alias": "AIau", + "code": "AUau", + "comments": "ItemAuraUnholy", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": "-", + "DataA1": 0.075, + "DataB1": 0.35, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUau", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": " - ", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": " - ", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": " - ", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\UnholyAura\\UnholyAura.mdl", + "Targetattach": "origin" + }, + "AIuv": { + "alias": "AIuv", + "code": "Ault", + "comments": "ItemUltravision", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bult", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTelescope.blp" + }, + "AIls": { + "alias": "AIls", + "code": "Alsh", + "comments": "Lightning Shield (item)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,friend,enemy,neutral", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 10, + "Cool1": 10, + "Cost1": 0, + "Area1": 160, + "Rng1": 600, + "DataA1": 20, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Blsh,Blsa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "lightningshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp" + }, + "AIxs": { + "alias": "AIxs", + "code": "Aami", + "comments": "Anti-magic Shield", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 15, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 10, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bams,Bam2", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnazzyPotion.blp" + }, + "AIan": { + "alias": "AIan", + "code": "AIan", + "comments": "Animate Dead", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 400, + "DataA1": 6, + "DataB1": 1, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUan", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "AIrs": { + "alias": "AIrs", + "code": "AIrs", + "comments": "Resurrection", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead,friend", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 900, + "Rng1": 400, + "DataA1": 6, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl" + }, + "AIrr": { + "alias": "AIrr", + "code": "Aroa", + "comments": "Roar", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 0, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.25, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": 0, + "DataG1": 0, + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Broa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl" + }, + "AIev": { + "alias": "AIev", + "code": "AEev", + "comments": "Evasion", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.15, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEvasion.blp" + }, + "AImx": { + "alias": "AImx", + "code": "Amim", + "comments": "Magic Immunity", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecklace.blp" + }, + "AImh": { + "alias": "AImh", + "code": "AImi", + "comments": "Permanent Hit point Bonus", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 50, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManual.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AImb": { + "alias": "AImb", + "code": "AImm", + "comments": "MaxManaBonus (Least)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "AIbm": { + "alias": "AIbm", + "code": "AImm", + "comments": "MaxManaBonus (Most)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 250, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "AIsx": { + "alias": "AIsx", + "code": "AIas", + "comments": "Attack Speed Increase", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.18, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlove.blp" + }, + "AIrl": { + "alias": "AIrl", + "code": "AIrg", + "comments": "Potion of Life Regen", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": 400, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingSalve.blp", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Items\\HealingSalve\\HealingSalveTarget.mdl", + "Targetattach": "origin" + }, + "AIpr": { + "alias": "AIpr", + "code": "AIrg", + "comments": "Potion of Mana Regen(greater)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 200, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfClarity.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AIsl": { + "alias": "AIsl", + "code": "AIrg", + "comments": "Scroll of Life Regen", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": "-", + "DataA1": 225, + "DataB1": 0, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfRegenerationGreen.blp" + }, + "AIpl": { + "alias": "AIpl", + "code": "AIrg", + "comments": "Potion of Mana Regen(lesser)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 100, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserClarityPotion.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AIp1": { + "alias": "AIp1", + "code": "AIrg", + "comments": "Potion of Rejuv I", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": 25, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMinorRejuvPotion.blp" + }, + "AIp2": { + "alias": "AIp2", + "code": "AIrg", + "comments": "Potion of Rejuv II", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 150, + "DataB1": 50, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserRejuvPotion.blp" + }, + "AIp3": { + "alias": "AIp3", + "code": "AIrg", + "comments": "Potion of Rejuv III", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 200, + "DataB1": 75, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvPotion.blp" + }, + "AIp4": { + "alias": "AIp4", + "code": "AIrg", + "comments": "Potion of Rejuv IV", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 400, + "DataB1": 125, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvPotion.blp" + }, + "AIp5": { + "alias": "AIp5", + "code": "AIrg", + "comments": "Scroll of Rejuv I", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": "-", + "DataA1": 250, + "DataB1": 100, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserRejuvScroll.blp", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin" + }, + "AIp6": { + "alias": "AIp6", + "code": "AIrg", + "comments": "Scroll of Rejuv II", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,organic,vuln,invu", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 0, + "Cost1": 0, + "Area1": 600, + "Rng1": "-", + "DataA1": 450, + "DataB1": 150, + "DataC1": 0, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrg,BIrl,BIrm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvScroll.blp", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin" + }, + "AIgo": { + "alias": "AIgo", + "code": "AIgo", + "comments": "GiveGold ", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 250, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChestOfGold.blp", + "Casterart": "Abilities\\Spells\\Items\\ResourceItems\\ResourceEffectTarget.mdl", + "Casterattach": "origin", + "Effectsound": "ReceiveGold" + }, + "AIlu": { + "alias": "AIlu", + "code": "AIlu", + "comments": "GiveLumber ", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 250, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBundleOfLumber.blp", + "Targetart": "Abilities\\Spells\\Items\\ResourceItems\\ResourceEffectTarget.mdl", + "Targetattach": "origin", + "Effectsound": "ReceiveLumber" + }, + "AIrv": { + "alias": "AIrv", + "code": "AIrv", + "comments": "ItemRevealMap", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "Xbdt", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfOmniscience.blp", + "Casterart": "Abilities\\Spells\\Items\\PotionOfOmniscience\\CrystalBallCaster.mdl", + "Casterattach": "overhead", + "Effectsound": "PowerupSound" + }, + "AIdc": { + "alias": "AIdc", + "code": "AIdc", + "comments": "ItemDispelChain", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,enemy,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 400, + "Rng1": 700, + "DataA1": 0, + "DataB1": 0, + "DataC1": 8, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfNeutralization.blp", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "AIwb": { + "alias": "AIwb", + "code": "AIwb", + "comments": "ItemWeb", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,enemy,neutral", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 7, + "Cool1": 20, + "Cost1": 0, + "Area1": "-", + "Rng1": 400, + "DataA1": 0.6, + "DataB1": 200, + "DataC1": 128, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bwea,Bweb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWebOn.blp", + "Missileart": "Abilities\\Spells\\Undead\\Web\\Webmissile.mdl" + }, + "AImo": { + "alias": "AImo", + "code": "AImo", + "comments": "ItemMonsterLure", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 0, + "Cost1": 75, + "Area1": 1750, + "Rng1": 500, + "DataA1": 1, + "DataB1": 5, + "DataC1": 2, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nlur", + "BuffID1": "BImo", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "nlur", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsterLure.blp" + }, + "AIct": { + "alias": "AIct", + "code": "AIct", + "comments": "ItemChangeTOD", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 0, + "Cool1": 70, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "EfctID1": "XIct", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMoonStone.blp" + }, + "AIri": { + "alias": "AIri", + "code": "AIri", + "comments": "ItemRandomItem", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "item", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPhilosophersStone.blp" + }, + "AIsr": { + "alias": "AIsr", + "code": "AIsr", + "comments": "Runed Bracers", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": 0.33, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRunedBracers.blp" + }, + "Ablp": { + "alias": "Ablp", + "code": "Ablp", + "comments": "BlightPlacement", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0.08, + "HeroDur1": 0.08, + "Cool1": 0, + "Cost1": 0, + "Area1": 350, + "Rng1": 500, + "DataA1": 64, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialSkull.blp" + }, + "AIpv": { + "alias": "AIpv", + "code": "AIpv", + "comments": "ItemPotionVampirism", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 60, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 12, + "DataB1": 0.75, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIpv", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfVampirism.blp", + "Casterart": "Abilities\\Spells\\Items\\VampiricPotion\\VampPotionCaster.mdl", + "Casterattach": "origin" + }, + "Aste": { + "alias": "Aste", + "code": "Aste", + "comments": "ManaSteal", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "notself", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 10, + "Cost1": 0, + "Area1": "-", + "Rng1": 650, + "DataA1": 60, + "DataB1": 0, + "DataC1": 1, + "DataD1": 1, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfManaSteal.blp", + "Casterart": "Abilities\\Spells\\Other\\Drain\\ManaDrainCaster.mdl", + "Casterattach": "chest", + "Targetart": "Abilities\\Spells\\Other\\Drain\\ManaDrainTarget.mdl", + "Targetattach": "chest" + }, + "Amec": { + "alias": "Amec", + "code": "Amec", + "comments": "MechanicalCritter", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bmec", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMechanicalCritter.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Ashs": { + "alias": "Ashs", + "code": "Ashs", + "comments": "ShadowSight", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bshs", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfShadowSight.blp" + }, + "ANpr": { + "alias": "ANpr", + "code": "ANpr", + "comments": "Preservation", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,vuln,invu,player,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": 700, + "DataA1": 15, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfPreservation.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "ANsa": { + "alias": "ANsa", + "code": "ANsa", + "comments": "Sanctuary", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,vuln,invu,player,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 45, + "Cost1": 0, + "Area1": "-", + "Rng1": 700, + "DataA1": 15, + "DataB1": 1, + "DataC1": 5, + "DataD1": 10, + "DataE1": 15, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNsa", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSanctuary.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "ANss": { + "alias": "ANss", + "code": "ANss", + "comments": "Spell Shield", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 40, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNss", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellShieldAmulet.blp", + "Casterart": "Abilities\\Spells\\Items\\SpellShieldAmulet\\SpellShieldCaster.mdl", + "Casterattach": "origin" + }, + "ANse": { + "alias": "ANse", + "code": "ANse", + "comments": "Spell Shield AOE", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,invu,vuln,self", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 1400, + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNss", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellShieldAmulet.blp", + "Effectsound": "PowerupSound" + }, + "Aret": { + "alias": "Aret", + "code": "Aret", + "comments": "Retrain", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeOfRetraining.blp", + "Casterart": "Abilities\\Spells\\Items\\TomeOfRetraining\\TomeOfRetrainingCaster.mdl", + "Casterattach": "origin" + }, + "AImt": { + "alias": "AImt", + "code": "AHmt", + "comments": "Staff o' Teleportation", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,structure,vuln,invu,player,neutral,ally", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 90, + "Cost1": 0, + "Area1": 50, + "Rng1": 99999, + "DataA1": 1, + "DataB1": 3, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfTeleportation.blp", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "Aspb": { + "alias": "Aspb", + "code": "Aspb", + "comments": "Spell Book", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "AEer,Adis,Aroa", + "DataB1": 1, + "DataC1": 3, + "DataD1": 3, + "DataE1": "spellbook", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellBookBLS.blp" + }, + "AIrd": { + "alias": "AIrd", + "code": "AIrd", + "comments": "Raise Dead (Item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "dead", + "Cast1": 0, + "Dur1": 65, + "HeroDur1": 65, + "Cool1": 24, + "Cost1": 0, + "Area1": 900, + "Rng1": 600, + "DataA1": 2, + "DataB1": 0, + "DataC1": "uske", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "uske", + "BuffID1": "Brai", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "UnitSkinID": "uske", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaiseDead.blp" + }, + "AItb": { + "alias": "AItb", + "code": "AItb", + "comments": "Dust of Appearance", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward,enemy,neutral,vuln,invu", + "Cast1": 0, + "Dur1": 20, + "HeroDur1": 20, + "Cool1": 20, + "Cost1": 0, + "Area1": 1000, + "Rng1": "-", + "DataA1": 3, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bdet", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDustOfAppearance.blp", + "Casterart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl" + }, + "AIdv": { + "alias": "AIdv", + "code": "AHds", + "comments": "Divine Shield (Item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 25, + "HeroDur1": 25, + "Cool1": 60, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BHds", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "divineshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfDivinity.blp" + }, + "AIse": { + "alias": "AIse", + "code": "ANsi", + "comments": "Silence(Item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 6, + "Cool1": 20, + "Cost1": 0, + "Area1": 225, + "Rng1": 700, + "DataA1": 8, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNsi", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "UnitID2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "silence", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSilence.blp" + }, + "AIpg": { + "alias": "AIpg", + "code": "Aprg", + "comments": "Purge(orb)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0, + "DataC1": 200, + "DataD1": 3, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bprg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp" + }, + "AIps": { + "alias": "AIps", + "code": "Aprg", + "comments": "Purge(Totem, SP)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward", + "Cast1": 0, + "Dur1": 15, + "HeroDur1": 5, + "Cool1": 8, + "Cost1": 0, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0, + "DataC1": 150, + "DataD1": 3, + "DataE1": 1, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bprg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Specialattach": "origin" + }, + "AIpw": { + "alias": "AIpw", + "code": "Aprg", + "comments": "Purge(Wand of Negation)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": 0, + "DataB1": 0, + "DataC1": 200, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "AIfg": { + "alias": "AIfg", + "code": "Aclf", + "comments": "Cloud of Fog (Item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu,structure", + "Cast1": 0, + "Dur1": 30, + "HeroDur1": 30, + "Cool1": 15, + "Cost1": 0, + "Area1": 300, + "Rng1": 1000, + "DataA1": 2, + "DataB1": 0, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bclf", + "EfctID1": "Xclf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "cloudoffog", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloudOfFog.blp" + }, + "APrl": { + "alias": "APrl", + "code": "AHre", + "comments": "Rune of Lesser Resurrection", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead,friend", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 1400, + "Rng1": 400, + "DataA1": 1, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl", + "Effectsound": "PowerupSound" + }, + "APrr": { + "alias": "APrr", + "code": "AHre", + "comments": "Rune of Greater Resurrection", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead,friend", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 1400, + "Rng1": 400, + "DataA1": 3, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl", + "Effectsound": "PowerupSound" + }, + "AIrb": { + "alias": "AIrb", + "code": "AIrb", + "comments": "Rune of Rebirth", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BIrb", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "Effectsound": "PowerupSound" + }, + "Aspp": { + "alias": "Aspp", + "code": "Aspl", + "comments": "Rune of Spirit Link", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,friend,self,organic", + "Cast1": 0, + "Dur1": 75, + "HeroDur1": 75, + "Cool1": 0, + "Cost1": 0, + "Area1": 1400, + "Rng1": 1400, + "DataA1": 0.5, + "DataB1": 50, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bspl", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "spiritlinkaoe", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritLink.blp", + "Effectsound": "PowerupSound", + "LightningEffect": "SPLK" + }, + "AUds": { + "alias": "AUds", + "code": "AUds", + "comments": "Dark Summoning", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,vuln,invu,player", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 90, + "Cost1": 0, + "Area1": 700, + "Rng1": 99999, + "DataA1": 12, + "DataB1": 1, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "1500", + "Order": "darksummoning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkSummoning.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDarkSummoning.blp", + "Effectart": "Abilities\\Spells\\Undead\\Darksummoning\\DarkSummonTarget.mdl", + "Targetart": "Abilities\\Spells\\Undead\\Darksummoning\\DarkSummonTarget.mdl", + "Missileart": "Abilities\\Spells\\Undead\\DarkSummoning\\DarkSummonMissile.mdl" + }, + "APwt": { + "alias": "APwt", + "code": "Aeye", + "comments": "Rune of the Watcher", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 500, + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nwad", + "BuffID1": "Beye", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Order": "evileye", + "skinType": "ability", + "UnitSkinID": "nwad", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp", + "Effectsound": "PowerupSound" + }, + "AIuf": { + "alias": "AIuf", + "code": "Auhf", + "comments": "Unholy Frenzy (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 1, + "Cost1": 50, + "Area1": "-", + "Rng1": 500, + "DataA1": 0.75, + "DataB1": 4, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Buhf", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "unholyfrenzy", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "AId0": { + "alias": "AId0", + "code": "AIde", + "comments": "DefenseBonus (+10)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability" + }, + "AIcm": { + "alias": "AIcm", + "code": "Acmg", + "comments": "Control Magic (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,ward", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 5, + "Cost1": 25, + "Area1": "-", + "Rng1": 700, + "DataA1": 5, + "DataB1": 0.3, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bcmg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "spellsteal", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellSteal.blp", + "Targetart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealTarget.mdl", + "Targetattach": "overhead", + "Missileart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealMissile.mdl", + "Missilearc": "0.15" + }, + "AImz": { + "alias": "AImz", + "code": "AImm", + "comments": "MaxManaBonus (Leastest)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 100, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability" + }, + "AIfz": { + "alias": "AIfz", + "code": "ANfd", + "comments": "Finger of Death (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,organic,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": 0.25, + "DataB1": 1, + "DataC1": 250, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "AIdp": { + "alias": "AIdp", + "code": "AUdp", + "comments": "Death Pact (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,player,nonhero,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 15, + "Cost1": 50, + "Area1": "-", + "Rng1": 800, + "DataA1": 0, + "DataB1": 1, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "deathpact", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Casterart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactCaster.mdl", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Targetattach": "origin" + }, + "AImv": { + "alias": "AImv", + "code": "AImm", + "comments": "MaxManaBonus (Leastest, Really)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 75, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability" + }, + "AIpx": { + "alias": "AIpx", + "code": "AImi", + "comments": "Permanent Hit point Bonus (small)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 20, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AIdd": { + "alias": "AIdd", + "code": "AIdd", + "comments": "Defend (Item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "vuln,invu", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.7, + "DataB1": 1, + "DataC1": 0, + "DataD1": 0, + "DataE1": 1, + "DataF1": 0, + "DataG1": 1, + "DataH1": 1, + "DataI1": 0, + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "defend", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDefend.blp", + "Casterart": "Abilities\\Spells\\Human\\Defend\\DefendCaster.mdl" + }, + "AId8": { + "alias": "AId8", + "code": "AIde", + "comments": "DefenseBonus (+8)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 8, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability" + }, + "AId7": { + "alias": "AId7", + "code": "AIde", + "comments": "DefenseBonus (+7)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 7, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability" + }, + "AIlz": { + "alias": "AIlz", + "code": "AIml", + "comments": "MaxLifeBonus (Leastest)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 50, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "skinnableID": "AIlz" + }, + "AIhx": { + "alias": "AIhx", + "code": "AIhe", + "comments": "ItemHeal (Leastest)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 100, + "DataA1": 50, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIaz": { + "alias": "AIaz", + "code": "AIab", + "comments": "AgilityBonus (+10)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 10, + "DataB1": 0, + "DataC1": 0, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability" + }, + "AIrx": { + "alias": "AIrx", + "code": "AHre", + "comments": "Resurrection - Item", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead,friend", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 240, + "Cost1": 0, + "Area1": 900, + "Rng1": 400, + "DataA1": 6, + "DataB1": 0, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl" + }, + "AIbx": { + "alias": "AIbx", + "code": "AHbh", + "comments": "Bash (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,organic", + "Cast1": 0, + "Dur1": 2, + "HeroDur1": 2, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 15, + "DataB1": 0, + "DataC1": 25, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BPSE", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "AItx": { + "alias": "AItx", + "code": "AIat", + "comments": "AttackBonus +20", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 20, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIwm": { + "alias": "AIwm", + "code": "ANwm", + "comments": "Watery Minion (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 2, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "nmrr", + "BuffID1": "BNwm", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "wateryminion", + "skinType": "ability", + "UnitSkinID": "nmrr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AIsh": { + "alias": "AIsh", + "code": "AIsh", + "comments": "Summon Headhunter (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 60, + "HeroDur1": 60, + "Cool1": 60, + "Cost1": 0, + "Area1": 200, + "Rng1": 800, + "DataA1": "-", + "DataB1": 2, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "otbk", + "BuffID1": "BIsh", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "otbk", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AI2m": { + "alias": "AI2m", + "code": "AImm", + "comments": "200 mana bonus", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 200, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability" + }, + "AIgx": { + "alias": "AIgx", + "code": "Aoar", + "comments": "Aura - Regeneration (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,organic,vuln,invu,friend,neutral,self", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 500, + "Rng1": "-", + "DataA1": 0.02, + "DataB1": 1, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Boar", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "AIhl": { + "alias": "AIhl", + "code": "AHhb", + "comments": "Holy Light (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic,notself,invu,vuln,nonancient", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 5, + "Cost1": 0, + "Area1": "-", + "Rng1": 800, + "DataA1": 200, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Order": "holybolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHolyBolt.blp", + "Targetart": "Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl" + }, + "AIsz": { + "alias": "AIsz", + "code": "Aspo", + "comments": "Slow Poison (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,organic", + "Cast1": 0, + "Dur1": 5, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": 0.5, + "DataC1": 0.25, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bspo,Bssd,Bssi", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDaggerOfEscape.blp" + }, + "AIpz": { + "alias": "AIpz", + "code": "AIha", + "comments": "Penguin Squeek", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": 0, + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPenguin.blp", + "Effectsound": "PenguinSqueek" + }, + "AIfw": { + "alias": "AIfw", + "code": "AIfb", + "comments": "Searing Blade - fire melee", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 100, + "Rng1": "-", + "DataA1": 10, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIft": { + "alias": "AIft", + "code": "AIob", + "comments": "Frostguard - frost melee", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,ward", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 1, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bfro", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFrost.blp", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIob\\AIobTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIob\\AIobSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIlx": { + "alias": "AIlx", + "code": "AIsb", + "comments": "Shaman Claws - lightning melee", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,ward", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 12, + "DataB1": 35, + "DataC1": 10, + "DataD1": 35, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "UnitID1": "AIpg", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "UnitSkinID": "AIpg", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIlb\\AIlbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIlb\\AIlbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIcs": { + "alias": "AIcs", + "code": "AOcr", + "comments": "Critical Strike (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 20, + "DataB1": 2, + "DataC1": 0, + "DataD1": 0, + "DataE1": 0, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCriticalStrike.blp" + }, + "AIcl": { + "alias": "AIcl", + "code": "AOcl", + "comments": "Chain Lightning (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,organic", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 9, + "Cost1": 0, + "Area1": 500, + "Rng1": 700, + "DataA1": 100, + "DataB1": 4, + "DataC1": 0.25, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "Missilespeed": "1500", + "Order": "chainlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Missileart": "Abilities\\Spells\\Orc\\LightningBolt\\LightningBoltMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "CLPB,CLSB" + }, + "AIx3": { + "alias": "AIx3", + "code": "AIab", + "comments": "(All + 3)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 3, + "DataB1": 3, + "DataC1": 3, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "skinnableID": "AIx3" + }, + "AIx4": { + "alias": "AIx4", + "code": "AIab", + "comments": "(All + 4)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 4, + "DataB1": 4, + "DataC1": 4, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "skinType": "ability", + "skinnableID": "AIx4" + }, + "AIxk": { + "alias": "AIxk", + "code": "Absk", + "comments": "Beserk (item)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 12, + "HeroDur1": 12, + "Cool1": 30, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0.2, + "DataB1": 0.5, + "DataC1": 0.5, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bbsk", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 0, + "order": "berserk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBerserkForTrolls.blp", + "Casterart": "Abilities\\Spells\\Orc\\TrollBerserk\\TrollBeserkerTarget.mdl", + "Effectsound": "BerserkerRage" + }, + "AIdg": { + "alias": "AIdg", + "code": "AIdg", + "comments": "ItemRitualDagger (Instant)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,player,nonhero,invu,vuln", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 300, + "Rng1": 400, + "DataA1": 100, + "DataB1": 1, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "ground,air,friend,organic,vuln,invu,self", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialDagger.blp", + "Targetart": "Abilities\\Spells\\Items\\RitualDagger\\RitualDaggerTarget.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Specialattach": "origin" + }, + "AIg2": { + "alias": "AIg2", + "code": "AIdg", + "comments": "ItemRitualDagger (Regen)", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,player,nonhero,invu,vuln", + "Cast1": 0, + "Dur1": 45, + "HeroDur1": 45, + "Cool1": 5, + "Cost1": 0, + "Area1": 450, + "Rng1": 400, + "DataA1": 200, + "DataB1": 1, + "DataC1": 0, + "DataD1": 0, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "ground,air,friend,organic,vuln,invu,self", + "DataI1": "-", + "BuffID1": "BIrl", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialDagger.blp", + "Targetart": "Abilities\\Spells\\Items\\RitualDagger\\RitualDaggerTarget.mdl", + "Targetattach": "origin" + }, + "AIf2": { + "alias": "AIf2", + "code": "AIhu", + "comments": "Orb of Fire v2", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,air,ward", + "Cast1": 0, + "Dur1": 3, + "HeroDur1": 3, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 5, + "DataB1": 0.65, + "DataC1": "-", + "DataD1": "-", + "DataE1": 2, + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "Ahsb": { + "alias": "Ahsb", + "code": "Aaab", + "comments": "Sundering Blades", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "ground,enemy,neutral", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": 0, + "Rng1": "-", + "DataA1": 0, + "DataB1": 0.1, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Rhsb", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSunderingBlades.blp", + "Casterart": "Abilities\\Spells\\Human\\SunderingBlades\\SunderingBlades.mdl", + "Casterattach": "weapon,right" + }, + "APai": { + "alias": "APai", + "code": "APai", + "comments": "PassiveSimple", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "APai" + }, + "Ahri": { + "alias": "Ahri", + "code": "APai", + "comments": "Passive - human rifleman plus range (Rhri)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Rhri", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDwarvenLongRifle.blp" + }, + "Ahan": { + "alias": "Ahan", + "code": "APai", + "comments": "Passive - human animal breeding (Rhan)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Rhan", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNAnimalWarTraining.blp" + }, + "Ahpe": { + "alias": "Ahpe", + "code": "APai", + "comments": "Passive - phoenix (Fire and Egg)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMarkOfFire.blp" + }, + "Ahlh": { + "alias": "Ahlh", + "code": "APai", + "comments": "Passive - human lumber harvesting (Rhlh)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "human", + "checkDep": 1, + "levels": 2, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,1", + "Requires": "Rhlh", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHumanLumberUpgrade1.blp,ReplaceableTextures\\PassiveButtons\\PASBTNHumanLumberUpgrade2.blp" + }, + "Aobs": { + "alias": "Aobs", + "code": "APai", + "comments": "Passive - orc grunt berserk (Robs)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "Robs", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBerserk.blp" + }, + "Aobk": { + "alias": "Aobk", + "code": "APai", + "comments": "Passive - orc berserkers (Robk)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Robk", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHeadHunterBerserker.blp" + }, + "Aorb": { + "alias": "Aorb", + "code": "APai", + "comments": "Passive - orc reinforced defense (Rorb)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Rorb", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReinforcedBurrows.blp" + }, + "Aosp": { + "alias": "Aosp", + "code": "APai", + "comments": "Passive - orc spiked barricade (Rosp)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 2, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Rosp", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSpikedBarricades.blp,ReplaceableTextures\\PassiveButtons\\PASBTNImprovedSpikedBarricades.blp,ReplaceableTextures\\PassiveButtons\\PASBTNAdvancedSpikedBarricades.blp" + }, + "Aoth": { + "alias": "Aoth", + "code": "APai", + "comments": "Passive - orc Ghost(icon only, orc, Aeth, unused)", + "version": 0, + "useInEditor": 0, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "0,2", + "Requires": "icon only, orc, Aeth, unused", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNInvisibility.blp" + }, + "Aotr": { + "alias": "Aotr", + "code": "APai", + "comments": "Passive - orc troll regeneration (Rotr)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "orc", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Rotr", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNRegenerate.blp" + }, + "Augf": { + "alias": "Augf", + "code": "APai", + "comments": "Passive - undead ghoul frenzy (Rugf)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "Requires": "Rugf", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGhoulFrenzy.blp" + }, + "Augh": { + "alias": "Augh", + "code": "APai", + "comments": "Passive - Ghost (icon only, undead, Agho)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNShade.blp" + }, + "Ausm": { + "alias": "Ausm", + "code": "APai", + "comments": "Passive - undead skeletal mastery (Rusm)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Rusm", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSkeletonMage.blp" + }, + "Aeib": { + "alias": "Aeib", + "code": "APai", + "comments": "Passive - nightelf improved bows (Reib)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "2,2", + "Requires": "Reib", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImprovedBows.blp" + }, + "Aemk": { + "alias": "Aemk", + "code": "APai", + "comments": "Passive - nightelf marksmanship (Remk)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "3,2", + "Requires": "Remk", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMarksmanship.blp" + }, + "Aews": { + "alias": "Aews", + "code": "APai", + "comments": "Passive - nightelf well spring (Rews)", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "Buttonpos": "1,0", + "Requires": "Rews", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNWellSpring.blp" + }, + "AIbd": { + "alias": "AIbd", + "code": "AIfs", + "comments": "FigurineBlueDrake", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nadk", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAzureDragon.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAzureDrake.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIut": { + "alias": "AIut", + "code": "AIfs", + "comments": "FigurineFurbolgTracker", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nfrb", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolgTracker.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIes": { + "alias": "AIes", + "code": "AIfs", + "comments": "FigurineDragonspawnOverseer", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "_", + "Cast1": 0, + "Dur1": 180, + "HeroDur1": 0, + "Cool1": 20, + "Cost1": 0, + "Area1": 200, + "Rng1": "-", + "DataA1": 1, + "DataB1": "-", + "DataC1": "nbdo", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BFig", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNpurpleDragonSpawn.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDragonSpawnOverseer.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIts": { + "alias": "AIts", + "code": "ANtm", + "comments": "ItemTransmute", + "version": 1, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 0, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy,neutral,nonhero", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 600, + "DataA1": 0.75, + "DataB1": 0, + "DataC1": 5, + "DataD1": 1, + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BNtm", + "targs2": "air,ground,enemy,neutral", + "Cast2": 0, + "Dur2": 0, + "HeroDur2": 0, + "Cool2": 45, + "Cost2": 200, + "Area2": "-", + "Rng2": 200, + "DataA2": 2, + "DataB2": 0, + "DataC2": 5, + "DataD2": 1, + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BNtm", + "targs3": "air,ground,enemy,neutral", + "Cast3": 0, + "Dur3": 0, + "HeroDur3": 0, + "Cool3": 45, + "Cost3": 200, + "Area3": "-", + "Rng3": 200, + "DataA3": 2, + "DataB3": 0, + "DataC3": 5, + "DataD3": 1, + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BNtm", + "targs4": "air,ground,enemy,neutral", + "Cast4": 0, + "Dur4": 0, + "HeroDur4": 0, + "Cool4": 45, + "Cost4": 200, + "Area4": "-", + "Rng4": 200, + "DataA4": 2, + "DataB4": 0, + "DataC4": 5, + "DataD4": 1, + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BNtm", + "InBeta": 1, + "Missilespeed": "700", + "MissileHoming": "1", + "order": "transmute", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Missileart": "Abilities\\Spells\\Other\\Transmute\\GoldBottleMissile.mdl", + "Missilearc": "0.4" + }, + "Aatp": { + "alias": "Aatp", + "code": "Aatp", + "comments": "Attack Target Priority", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": 0, + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Batp", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": 0, + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "Batp", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": 0, + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "Batp", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": 0, + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "Batp", + "InBeta": 1, + "skinType": "ability", + "skinnableID": "Aatp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAirAttackOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAirAttackOff.blp" + }, + "AIno": { + "alias": "AIno", + "code": "Aosl", + "comments": "Slow", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 1, + "sort": "item", + "race": "other", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,enemy", + "Cast1": 0, + "Dur1": 10, + "HeroDur1": 5, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": 1000, + "DataA1": 0.55, + "DataB1": 0.25, + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "Bson", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbofSlowness.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "Amgi": { + "alias": "Amgi", + "code": "Amgi", + "comments": "Bouncing Missile Filter", + "version": 0, + "useInEditor": 1, + "hero": 0, + "item": 0, + "sort": "unit", + "race": "nightelf", + "checkDep": 1, + "levels": 1, + "reqLevel": 0, + "levelSkip": 0, + "priority": 0, + "targs1": "structure", + "Cast1": 0, + "Dur1": 0, + "HeroDur1": 0, + "Cool1": 0, + "Cost1": 0, + "Area1": "-", + "Rng1": "-", + "DataA1": "-", + "DataB1": "-", + "DataC1": "-", + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "targs2": "_", + "Cast2": "-", + "Dur2": "-", + "HeroDur2": "-", + "Cool2": "-", + "Cost2": "-", + "Area2": "-", + "Rng2": "-", + "DataA2": "-", + "DataB2": "-", + "DataC2": "-", + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "targs3": "_", + "Cast3": "-", + "Dur3": "-", + "HeroDur3": "-", + "Cool3": "-", + "Cost3": "-", + "Area3": "-", + "Rng3": "-", + "DataA3": "-", + "DataB3": "-", + "DataC3": "-", + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "targs4": "_", + "Cast4": "-", + "Dur4": "-", + "HeroDur4": "-", + "Cool4": "-", + "Cost4": "-", + "Area4": "-", + "Rng4": "-", + "DataA4": "-", + "DataB4": "-", + "DataC4": "-", + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "InBeta": 1, + "skinType": "ability" + }, + "AUa2": { + "alias": "AUa2", + "code": "AUa2", + "comments": "Death Knight - Animate Dead", + "version": 0, + "useInEditor": 1, + "hero": 1, + "item": 0, + "sort": "hero", + "race": "undead", + "checkDep": 1, + "levels": 1, + "reqLevel": 6, + "levelSkip": 0, + "priority": 0, + "targs1": "air,ground,dead", + "Cast1": 0, + "Dur1": 40, + "HeroDur1": 40, + "Cool1": 180, + "Cost1": 125, + "Area1": 900, + "Rng1": 400, + "DataA1": 6, + "DataB1": 0, + "DataC1": 1, + "DataD1": "-", + "DataE1": "-", + "DataF1": "-", + "DataG1": "-", + "DataH1": "-", + "DataI1": "-", + "BuffID1": "BUan", + "EfctID1": "Aap5", + "targs2": "air,ground,dead", + "Cast2": "-", + "Dur2": 120, + "HeroDur2": 120, + "Cool2": 240, + "Cost2": 125, + "Area2": 900, + "Rng2": 400, + "DataA2": 6, + "DataB2": 0, + "DataC2": 0, + "DataD2": "-", + "DataE2": "-", + "DataF2": "-", + "DataG2": "-", + "DataH2": "-", + "DataI2": "-", + "BuffID2": "BUan", + "EfctID2": "Aap5", + "targs3": "air,ground,dead", + "Cast3": "-", + "Dur3": 120, + "HeroDur3": 120, + "Cool3": 240, + "Cost3": 125, + "Area3": 900, + "Rng3": 400, + "DataA3": 6, + "DataB3": 0, + "DataC3": 0, + "DataD3": "-", + "DataE3": "-", + "DataF3": "-", + "DataG3": "-", + "DataH3": "-", + "DataI3": "-", + "BuffID3": "BUan", + "EfctID3": "Aap5", + "targs4": "air,ground,dead", + "Cast4": "-", + "Dur4": 120, + "HeroDur4": 120, + "Cool4": 240, + "Cost4": 125, + "Area4": 900, + "Rng4": 400, + "DataA4": 6, + "DataB4": 0, + "DataC4": 0, + "DataD4": "-", + "DataE4": "-", + "DataF4": "-", + "DataG4": "-", + "DataH4": "-", + "DataI4": "-", + "BuffID4": "BUan", + "EfctID4": "Aap5", + "InBeta": 1, + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "Bmlc": { + "skinType": "buff", + "Effectsoundlooped": "AerialShacklesLoop" + }, + "Bmlt": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMagicLariet.blp", + "Targetart": "Abilities\\Spells\\Human\\AerialShackles\\AerialShacklesTarget.mdl", + "Targetattach": "chest,mount" + }, + "Bcmg": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNControlMagic.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Bdbb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp" + }, + "Bdbl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp" + }, + "Bdbm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp" + }, + "Bdcb": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainCaster.mdl", + "Targetattach": "chest" + }, + "Bdcl": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainCaster.mdl", + "Targetattach": "chest" + }, + "Bdcm": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\ManaDrainCaster.mdl", + "Targetattach": "chest" + }, + "Bdtb": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainTarget.mdl", + "Targetattach": "chest" + }, + "Bdtl": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainTarget.mdl", + "Targetattach": "chest" + }, + "Bdtm": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\ManaDrainTarget.mdl", + "Targetattach": "chest" + }, + "Bclf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCloudOfFog.blp" + }, + "Xclf": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\CloudOfFog\\CloudOfFog.mdl", + "Effectsoundlooped": "CloudOfFogLoop" + }, + "BHfs": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "XHfs": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeEmbers.mdl", + "Effectsoundlooped": "HumanFireLarge" + }, + "BHbn": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp", + "Targetart": "Abilities\\Spells\\Human\\Banish\\BanishTarget.mdl", + "Effectsoundlooped": "BanishLoop" + }, + "Bphx": { + "skinType": "buff" + }, + "Bpxf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireDamage.mdl" + }, + "Xfla": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\Flare\\FlareTarget.mdl" + }, + "Binf": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNInnerFire.blp", + "Targetart": "Abilities\\Spells\\Human\\InnerFire\\InnerFireTarget.mdl", + "Targetattachcount": "1", + "Targetattach": "overhead" + }, + "Bhea": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHeal.blp" + }, + "BNhe": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSlow.blp" + }, + "Bslo": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSlow.blp", + "Targetart": "Abilities\\Spells\\Human\\slow\\slowtarget.mdl" + }, + "Binv": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNInvisibility.blp" + }, + "Bply": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPolymorph.blp", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "BHbd": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Targetart": "Abilities\\Spells\\Other\\FrostDamage\\FrostDamage.mdl" + }, + "XHbz": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\Blizzard\\BlizzardTarget.mdl", + "Effectsoundlooped": "BlizzardLoop", + "Effectsound": "BlizzardWave" + }, + "BHwe": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp" + }, + "BHab": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BHtb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "BHtc": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThunderclap.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "BHbh": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBash.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "BHav": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAvatar.blp" + }, + "BHds": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp", + "Targetart": "Abilities\\Spells\\Human\\DivineShield\\DivineShieldTarget.mdl", + "Targetattach": "origin" + }, + "BHad": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "Bmil": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCallToArms.blp" + }, + "Xfhs": { + "skinType": "effect", + "TargetArt": "Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,fourth", + "Effectsoundlooped": "HumanFireSmall" + }, + "Xfhm": { + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fourth", + "Targetattach3": "sprite,fifth", + "Effectsoundlooped": "HumanFireMedium" + }, + "Xfhl": { + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire0.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fifth", + "Targetattach3": "sprite,third", + "Targetattach4": "sprite,fourth", + "Targetattach5": "sprite,sixth", + "Effectsoundlooped": "HumanFireLarge" + }, + "Bbof": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "Xbof": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeEmbers.mdl", + "Effectsoundlooped": "HumanFireLarge" + }, + "Bbsk": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBerserkForTrolls.blp", + "Targetart": "Abilities\\Spells\\Orc\\TrollBerserk\\HeadhunterWEAPONSLeft.mdl,Abilities\\Spells\\Orc\\TrollBerserk\\HeadhunterWEAPONSRight.mdl", + "Targetattachcount": "2", + "Targetattach": "weapon,left", + "Targetattach1": "weapon,right" + }, + "Bspl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpiritLink.blp", + "Targetart": "Abilities\\Spells\\Orc\\SpiritLink\\SpiritLinkTarget.mdl", + "Targetattach": "chest" + }, + "Bliq": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\PassiveButtons\\PASBTNLiquidFire.blp", + "Targetart": "Abilities\\Spells\\Orc\\LiquidFire\\Liquidfire.mdl", + "Effectsoundlooped": "LiquidFireLoop" + }, + "Mliq": { + "Missilespeed": "900", + "skinType": "ability", + "Missileart": "Abilities\\Spells\\Orc\\LiquidFire\\BatRiderMissile.mdl", + "Missilearc": "0.35" + }, + "BOhx": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "BOvd": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBigBadVoodooSpell.blp", + "Targetart": "Abilities\\Spells\\Orc\\Voodoo\\VoodooAuraTarget.mdl", + "Targetattach": "overhead" + }, + "BOvc": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Orc\\Voodoo\\VoodooAura.mdl" + }, + "Acha": { + "Requires": "Roch", + "skinType": "ability" + }, + "Bens": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Targetart": "Abilities\\Spells\\Orc\\Ensnare\\ensnareTarget.mdl", + "Targetattach": "origin" + }, + "Beng": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Targetart": "Abilities\\Spells\\Orc\\Ensnare\\ensnareTarget.mdl" + }, + "Bena": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Targetart": "Abilities\\Spells\\Orc\\Ensnare\\ensnare_AirTarget.mdl", + "Targetattach": "chest,mount" + }, + "Bdvv": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDevour.blp" + }, + "Bprg": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Targetart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Targetattach": "origin" + }, + "Blsh": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp", + "Targetart": "Abilities\\Spells\\Orc\\LightningShield\\LightningShieldTarget.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\Orc\\LightningShield\\LightningShieldBuff.mdl" + }, + "Bblo": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBloodLust.blp", + "Targetart": "Abilities\\Spells\\Orc\\Bloodlust\\BloodlustTarget.mdl,Abilities\\Spells\\Orc\\Bloodlust\\BloodlustSpecial.mdl", + "Targetattachcount": "2", + "Targetattach": "hand,left", + "Targetattach1": "hand,right" + }, + "Beye": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp" + }, + "Bstt": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStasisTrap.blp" + }, + "Bsta": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStasisTrap.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "Bhwd": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "Boar": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "Bpoi": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnvenomedSpear.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Bpsd": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnvenomedSpear.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "BIpb": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfVenom.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "BIpd": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfVenom.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Anit": { + "Requires": "Ronv", + "skinType": "ability" + }, + "Bakb": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDrum.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BOwk": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp" + }, + "BOmi": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMirrorImage.blp", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl" + }, + "BOeq": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "XOeq": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Orc\\EarthQuake\\EarthQuakeTarget.mdl", + "Effectsoundlooped": "EarthquakeLoop" + }, + "BOae": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BOsf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BOws": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp" + }, + "Xfos": { + "skinType": "effect", + "TargetArt": "Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,fourth", + "Effectsoundlooped": "HumanFireSmall" + }, + "Xfom": { + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fourth", + "Targetattach3": "sprite,fifth", + "Effectsoundlooped": "HumanFireMedium" + }, + "Xfol": { + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire0.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fifth", + "Targetattach3": "sprite,third", + "Targetattach4": "sprite,fourth", + "Targetattach5": "sprite,sixth", + "Effectsoundlooped": "HumanFireLarge" + }, + "Bvng": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAvengingWatcher.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Bmfl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNManaFlare.blp", + "Targetart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareBase.mdl", + "Targetattach": "overhead", + "Effectsoundlooped": "ManaFlareLoop", + "LightningEffect": "MFPB" + }, + "Bmfa": { + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNManaFlare.blp", + "Targetart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareTarget.mdl", + "Targetattach": "overhead", + "Missileart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareMissile.mdl", + "Specialart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareBoltImpact.mdl" + }, + "Bpsh": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPhaseShift.blp", + "Specialart": "Abilities\\Spells\\NightElf\\FaerieDragonInvis\\FaerieDragon_Invis.mdl" + }, + "Btau": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTaunt.blp" + }, + "BEsh": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Targetart": "Abilities\\Spells\\NightElf\\shadowstrike\\shadowstrike.mdl", + "Targetattach": "overhead" + }, + "BEsi": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Targetart": "Abilities\\Spells\\NightElf\\shadowstrike\\shadowstrike.mdl", + "Targetattach": "overhead" + }, + "BEsv": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpiritOfVengeance.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Bspo": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSlowPoison.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Bssd": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\PassiveButtons\\PASBTNSlowPoison.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "XEsn": { + "skinType": "effect", + "Targetart": "Units\\NightElf\\Owl\\Owl.mdl", + "Targetattach": "overhead" + }, + "Awhe": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Requires": "Rewh", + "Order": "wispheal", + "Orderon": "wisphealon", + "Orderoff": "wisphealoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWispHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWispHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Aroo": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "root", + "Unorder": "unroot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRoot.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUproot.blp" + }, + "Bcor": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCorrosiveBreath.blp", + "Targetart": "Abilities\\Spells\\NightElf\\CorrosiveBreath\\ChimaeraAcidTargetArt.mdl" + }, + "BEim": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationDamage.mdl", + "Specialattach": "head" + }, + "BEme": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "BEer": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp", + "Targetart": "Abilities\\Spells\\NightElf\\EntanglingRoots\\EntanglingRootsTarget.mdl", + "Targetattach": "origin" + }, + "BEfn": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp" + }, + "BEah": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThorns.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\NightElf\\ThornsAura\\ThornsAuraDamage.mdl", + "Specialattach": "head" + }, + "AEtr": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\Tranquility\\TranquilityTarget.mdl" + }, + "XEtq": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\NightElf\\Tranquility\\Tranquility.mdl", + "Effectsoundlooped": "TranquilityLoop" + }, + "BEar": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "AEsd": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\Starfall\\StarfallTarget.mdl", + "Targetattach": "origin" + }, + "XEsf": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\NightElf\\Starfall\\StarfallCaster.mdl" + }, + "Bfae": { + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\NightElf\\FaerieFire\\FaerieFireTarget.mdl", + "Targetattach": "head", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFire.blp" + }, + "Bcyc": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp", + "Effectart": "Abilities\\Spells\\NightElf\\Cyclone\\CycloneTarget.mdl", + "Targetattach": "sprite,first", + "Effectsoundlooped": "CycloneLoop" + }, + "Bcy2": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp", + "Effectart": "Abilities\\Spells\\NightElf\\Cyclone\\CycloneTarget.mdl", + "Effectattach": "sprite,first", + "Effectsoundlooped": "CycloneLoop" + }, + "Brej": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp", + "TargetArt": "Abilities\\Spells\\NightElf\\Rejuvenation\\RejuvenationTarget.mdl", + "Targetattach": "chest" + }, + "Broa": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Targetart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarTarget.mdl", + "Targetattach": "overhead" + }, + "Bbar": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBarkskin.blp", + "Targetart": "Abilities\\Spells\\NightElf\\Barkskin\\BarkSkinTarget.mdl", + "Targetattach": "chest" + }, + "Xfns": { + "skinType": "effect", + "TargetArt": "Environment\\NightElfBuildingFire\\ElfSmallBuildingFire2.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,fourth", + "Effectsoundlooped": "NightElfFireSmall" + }, + "Xfnm": { + "skinType": "effect", + "TargetArt": "Environment\\NightElfBuildingFire\\ElfLargeBuildingFire2.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire1.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire0.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire2.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fourth", + "Targetattach3": "sprite,fifth", + "Effectsoundlooped": "NightElfFireMedium" + }, + "Xfnl": { + "skinType": "effect", + "TargetArt": "Environment\\NightElfBuildingFire\\ElfLargeBuildingFire1.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire0.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire0.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire1.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire2.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire0.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fifth", + "Targetattach3": "sprite,third", + "Targetattach4": "sprite,fourth", + "Targetattach5": "sprite,sixth", + "Effectsoundlooped": "NightElfFireLarge" + }, + "Brpb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNReplenishMana.blp" + }, + "Brpl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNReplenishHealth.blp" + }, + "Brpm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNReplenishMana.blp" + }, + "Babr": { + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNRegenerationAura.blp" + }, + "BUim": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Effectart": "Abilities\\Spells\\Undead\\Impale\\ImpaleHitTarget.mdl", + "Effectattach": "sprite,first", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Targetattach": "overhead" + }, + "BUts": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestRight.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountRight.mdl", + "Targetattach1": "chest,right", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp", + "Targetattach3": "chest,mount,right", + "Targetattach2": "chest,mount,left", + "Targetattach": "chest,left", + "Targetattachcount": "4" + }, + "BUcb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp" + }, + "BUlo": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp" + }, + "Amtc": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Buns": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Unsummon\\UnsummonTarget.mdl", + "Effectsoundlooped": "AcolyteUnsummonLoop", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUnsummonBuilding.blp" + }, + "Bspa": { + "skinType": "buff", + "Targetart": "Abilities\\Weapons\\CryptFiendMissile\\CryptFiendMissileTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpider.blp" + }, + "Bweb": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Web\\WebTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWeb.blp" + }, + "Bwea": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Web\\Web_AirTarget.mdl", + "Targetattach": "chest,mount", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWeb.blp" + }, + "Aapl": { + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Bapl": { + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Units\\Undead\\PlagueCloud\\PlagueCloudtarget.mdl", + "Targetattach": "head", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPlagueCloud.blp" + }, + "Bfrz": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\FreezingBreath\\FreezingBreathTargetArt.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFreezingBreath.blp" + }, + "Brai": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp" + }, + "Buhf": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\UnholyFrenzy\\UnholyFrenzyTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "Bcrs": { + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Curse\\CurseTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCurse.blp" + }, + "Bams": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\AntiMagicShell\\AntiMagicShell.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Bam2": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\AntiMagicShell\\AntiMagicShell.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Bpos": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Possession\\PossessionTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp" + }, + "Bpoc": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Possession\\PossessionCaster.mdl", + "Targetattach": "overhead" + }, + "BUdp": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactCaster.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp" + }, + "BUan": { + "skinType": "buff", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp" + }, + "BUsl": { + "skinType": "buff", + "Effectsoundlooped": "CreepSleepSnoreLoop", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "BUst": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepSpecialArt.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "BUsp": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepSpecialArt.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "BUav": { + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNVampiricAura.blp", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Specialattach": "origin" + }, + "BUfa": { + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorTarget.mdl", + "Targetattach": "chest", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp", + "Specialart": "Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", + "Specialattach": "chest" + }, + "XUdd": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Undead\\DeathandDecay\\DeathandDecayTarget.mdl", + "Effectsoundlooped": "DeathAndDecayLoop" + }, + "BUdd": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\DeathandDecay\\DeathandDecayDamage.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp" + }, + "Bcri": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Cripple\\CrippleTarget.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "BUau": { + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUnholyAura.blp" + }, + "Xfus": { + "skinType": "effect", + "Targetattach1": "sprite,fourth", + "Targetattach": "sprite,first", + "TargetArt": "Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire2.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Effectsoundlooped": "UndeadFireSmall" + }, + "Xfum": { + "skinType": "effect", + "TargetArt": "Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire2.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire1.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire0.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire2.mdl", + "Effectsoundlooped": "UndeadFireMedium", + "Targetattach1": "sprite,second", + "Targetattach3": "sprite,fifth", + "Targetattach2": "sprite,fourth", + "Targetattach": "sprite,first", + "Targetattachcount": "4" + }, + "Xful": { + "skinType": "effect", + "TargetArt": "Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire1.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire0.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire0.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire1.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire2.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire0.mdl", + "Effectsoundlooped": "UndeadFireLarge", + "Targetattach5": "sprite,sixth", + "Targetattach4": "sprite,fourth", + "Targetattach1": "sprite,second", + "Targetattach3": "sprite,third", + "Targetattach2": "sprite,fifth", + "Targetattach": "sprite,first", + "Targetattachcount": "6" + }, + "BNic": { + "MissileHoming": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNIncinerate.blp", + "Specialart": "Abilities\\Spells\\Other\\Incinerate\\FireLordDeathExplode.mdl", + "Targetart": "Abilities\\Spells\\Other\\Incinerate\\IncinerateBuff.mdl", + "Targetattach": "chest" + }, + "BNso": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSoulBurn.blp", + "Targetart": "Abilities\\Spells\\Other\\SoulBurn\\SoulBurnbuff.mdl", + "Targetattach": "overhead" + }, + "BNlm": { + "Missilespeed": "200", + "MissileHoming": "1", + "skinType": "buff", + "Missileart": "Abilities\\Weapons\\LavaSpawnMissile\\LavaSpawnBirthMissile.mdl", + "Missilearc": ".99" + }, + "BNvc": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNVolcano.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "XNvc": { + "Missilespeed": "400", + "MissileHoming": "1", + "skinType": "effect", + "Specialart": "Abilities\\Spells\\Other\\Volcano\\VolcanoDeath.mdl", + "Effectsoundlooped": "VolcanoLoop", + "Missileart": "Abilities\\Spells\\Other\\Volcano\\VolcanoMissile.mdl", + "Missilearc": "0.8" + }, + "BNfy": { + "skinType": "buff" + }, + "BNcs": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "XNcs": { + "skinType": "effect" + }, + "BNeg": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEngineeringUpgrade.blp", + "Targetart": "Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestRight.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountRight.mdl", + "Targetattachcount": "4", + "Targetattach": "chest,left", + "Targetattach1": "chest,right", + "Targetattach2": "chest,mount,left", + "Targetattach3": "chest,mount,right" + }, + "ANf1": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "ANf2": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "ANf3": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "BNcg": { + "skinType": "buff" + }, + "BNhs": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingSpray.blp" + }, + "XNhs": { + "skinType": "effect", + "Specialart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "BNab": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAcidBomb.blp", + "Targetart": "Abilities\\Spells\\Other\\AcidBomb\\BottleImpact.mdl", + "Targetattach": "chest" + }, + "BNcr": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNChemicalRage.blp" + }, + "BNtm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Specialart": "Abilities\\Spells\\Other\\Transmute\\PileofGold.mdl" + }, + "BNms": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Targetart": "Abilities\\Spells\\Human\\ManaShield\\ManaShieldCaster.mdl" + }, + "BNrd": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "XErf": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Demon\\RainOfFire\\RainOfFireTarget.mdl", + "Effectsoundlooped": "RainOfFireLoop", + "Effectsound": "RainOfFireWave" + }, + "BHca": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp" + }, + "Bcsd": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp" + }, + "Bcsi": { + "skinType": "buff" + }, + "BNht": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Targetart": "Abilities\\Spells\\Other\\HowlOfTerror\\HowlTarget.mdl" + }, + "BNdo": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDoom.blp", + "Targetart": "Abilities\\Spells\\Other\\Doom\\DoomTarget.mdl" + }, + "BNdi": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Doom\\DoomDeath.mdl", + "Effectart": "Abilities\\Spells\\Other\\Doom\\DoomDeath.mdl" + }, + "BNef": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Effectart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl" + }, + "BNsg": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BNsq": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BNsw": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AChV": { + "Buttonpos": "0,2", + "Order": "healingwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Targetart": "Abilities\\Spells\\Orc\\HealingWave\\HealingWaveTarget.mdl", + "Animnames": "spell,throw", + "LightningEffect": "HWPB,HWSB" + }, + "BCbf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFrost.blp", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFrost\\BreathOfFrostTarget.mdl" + }, + "BNmr": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "BNbf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireDamage.mdl" + }, + "BNdh": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Targetart": "Abilities\\Spells\\Other\\StrongDrink\\BrewmasterTarget.mdl", + "Targetattach": "overhead" + }, + "BNsi": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Targetart": "Abilities\\Spells\\Other\\Silence\\SilenceTarget.mdl", + "Targetattach": "overhead" + }, + "BNba": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp" + }, + "BNdm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp" + }, + "BNch": { + "skinType": "buff" + }, + "ANmd": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\Monsoon\\MonsoonBoltTarget.mdl", + "Targetattach": "origin" + }, + "BNmo": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp" + }, + "XNmo": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Other\\Monsoon\\MonsoonRain.mdl", + "Effectsoundlooped": "MonsoonLoop" + }, + "BNwm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Basl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Targetart": "Abilities\\Spells\\Other\\Tornado\\Tornado_Target.mdl" + }, + "Btsp": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Effectart": "Abilities\\Spells\\Other\\Tornado\\TornadoElementalSmall.mdl", + "Effectattach": "sprite,first" + }, + "XNto": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Other\\Tornado\\Tornado.mdl" + }, + "BNto": { + "skinType": "buff", + "Effectsoundlooped": "TornadoLoop" + }, + "BNdc": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepTarget.mdl", + "Targetattach": "overhead", + "Effectart": "Abilities\\Spells\\Demon\\DarkConversion\\ZombifyTarget.mdl" + }, + "BNsl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Effectsound": "SoulPreservation" + }, + "Bchd": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDizzy.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "BNpi": { + "skinType": "buff", + "Specialart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationDamage.mdl", + "Specialattach": "head" + }, + "Bpig": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\ImmolationRed\\ImmolationRedTarget.mdl", + "Targetattach": "chest", + "Specialart": "Abilities\\Spells\\Other\\ImmolationRed\\ImmolationRedDamage.mdl", + "Specialattach": "chest" + }, + "Acar": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "ANgl": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGLExchange.blp", + "Casterart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl", + "Targetart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl" + }, + "ANlg": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLGExchange.blp", + "Casterart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl", + "Targetart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl" + }, + "ANrl": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "ANrm": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "ANsp": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpy.blp" + }, + "BCtc": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGolemThunderclap.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "Bfzy": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBloodLust.blp", + "Targetart": "Abilities\\Spells\\Orc\\Bloodlust\\BloodlustTarget.mdl,Abilities\\Spells\\Orc\\Bloodlust\\BloodlustSpecial.mdl", + "Targetattachcount": "2", + "Targetattach": "hand,left", + "Targetattach1": "hand,right" + }, + "AOac": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "BOac": { + "SpellDetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "Btlf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAcorn.blp" + }, + "Aarm": { + "skinType": "ability" + }, + "Barm": { + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "Anei": { + "Buttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectUnit.blp" + }, + "BIhm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "BNpa": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNParasite.blp", + "Targetart": "Abilities\\Spells\\Other\\Parasite\\ParasiteTarget.mdl", + "Targetattach": "overhead" + }, + "BNpm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNParasite.blp" + }, + "BNbr": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Targetart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarTarget.mdl", + "Targetattach": "overhead" + }, + "Amou": { + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "mount", + "Unorder": "dismount", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "Aque": { + "Order": "revive", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Human\\ReviveHuman\\ReviveHuman.mdl,Abilities\\Spells\\Orc\\ReviveOrc\\ReviveOrc.mdl,Abilities\\Spells\\Undead\\ReviveUndead\\ReviveUndead.mdl,Abilities\\Spells\\NightElf\\ReviveNightElf\\ReviveNightElf.mdl,Abilities\\Spells\\Demon\\ReviveDemon\\ReviveDemon.mdl" + }, + "Adet": { + "Buttonpos": "0,2", + "skinType": "ability" + }, + "Adta": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReveal.blp" + }, + "Xbdt": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Other\\Andt\\Andt.mdl" + }, + "Bdet": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDustOfAppearance.blp" + }, + "Bvul": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNInvulnerable.blp", + "Targetart": "Abilities\\Spells\\Human\\DivineShield\\DivineShieldTarget.mdl", + "Targetattach": "origin" + }, + "Bspe": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBoots.blp", + "Targetart": "Abilities\\Spells\\Items\\AIsp\\SpeedTarget.mdl" + }, + "Bfro": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFrost.blp", + "Targetart": "Abilities\\Spells\\Other\\FrostDamage\\FrostDamage.mdl" + }, + "BSTN": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStun.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "BPSE": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStun.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "AIde": { + "skinType": "ability" + }, + "AIhe": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIvi": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIvi\\AIviTarget.mdl", + "Targetattach": "chest" + }, + "AIpi": { + "skinType": "ability" + }, + "AIma": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin" + }, + "Bdef": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNScroll.blp", + "Targetart": "Abilities\\Spells\\Items\\AIda\\AIdaTarget.mdl", + "Targetattach": "overhead" + }, + "AIfi": { + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl" + }, + "BIil": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWand.blp", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl" + }, + "BIcb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfCorruption.blp" + }, + "BIsv": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUsedSoulGem.blp", + "Targetart": "Abilities\\Spells\\Items\\AIso\\BIsvTarget.mdl" + }, + "AIto": { + "skinType": "ability" + }, + "AIga": { + "skinType": "ability", + "Effectart": "Abilities\\Spells\\NightElf\\NatureTouch\\NatureTouchTarget.mdl" + }, + "AIte": { + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl" + }, + "BFig": { + "skinType": "buff", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AImn": { + "skinType": "ability" + }, + "AImm": { + "skinType": "ability" + }, + "AIas": { + "skinType": "ability" + }, + "BIcf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCloakOfFlames.blp", + "Targetart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationDamage.mdl", + "Specialattach": "head" + }, + "AImi": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AIfc": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp" + }, + "BIrl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingSalve.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Targetattach": "origin" + }, + "BIrm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPotionOfClarity.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl", + "Targetattach": "origin" + }, + "BIrg": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvScroll.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl,Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Targetattach": "origin", + "Targetattach1": "origin", + "Targetattachcount": "2" + }, + "BIpv": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPotionOfVampirism.blp", + "Targetart": "Abilities\\Spells\\Items\\VampiricPotion\\VampPotionCaster.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Specialattach": "origin" + }, + "Bshs": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWandOfShadowSight.blp" + }, + "Bnss": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpellShieldAmulet.blp", + "Targetart": "Abilities\\Spells\\Items\\SpellShieldAmulet\\SpellShieldCaster.mdl", + "Targetattach": "origin" + }, + "BNsa": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSanctuary.blp", + "Targetart": "Abilities\\Spells\\Items\\StaffOfSanctuary\\Staff_Sanctuary_Target.mdl" + }, + "BIrb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Aami": { + "Order": "antimagicshell", + "skinType": "ability" + }, + "BIsh": { + "skinType": "buff", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "CmdMove": { + "Art": "CommandMove", + "Buttonpos": "0,0" + }, + "CmdAttack": { + "Art": "CommandAttack", + "Buttonpos": "3,0" + }, + "CmdAttackGround": { + "Art": "CommandAttackGround", + "Buttonpos": "3,1" + }, + "CmdBuild": { + "Art": "CommandBasicStruct", + "Buttonpos": "0,2" + }, + "CmdBuildHuman": { + "Art": "CommandBasicStructHuman", + "Buttonpos": "0,2" + }, + "CmdBuildOrc": { + "Art": "CommandBasicStructOrc", + "Buttonpos": "0,2" + }, + "CmdBuildNightElf": { + "Art": "CommandBasicStructNightElf", + "Buttonpos": "0,2" + }, + "CmdBuildUndead": { + "Art": "CommandBasicStructUndead", + "Buttonpos": "0,2" + }, + "CmdCancel": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdCancelBuild": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdCancelTrain": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdCancelRevive": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdHoldPos": { + "Art": "CommandHoldPosition", + "Buttonpos": "2,0" + }, + "CmdPatrol": { + "Art": "CommandPatrol", + "Buttonpos": "0,1" + }, + "CmdPurchase": { + "Art": "CommandPurchase", + "Buttonpos": "0,0" + }, + "CmdRally": { + "Art": "CommandRally", + "Buttonpos": "3,1", + "PlacementModel": "UI\\Feedback\\RallyPoint\\RallyPoint.mdl" + }, + "CmdSelectSkill": { + "Art": "CommandNewSkill", + "Buttonpos": "3,1" + }, + "CmdStop": { + "Art": "CommandStop", + "Buttonpos": "1,0" + }, + "AEmf": { + "skinType": "ability", + "skinnableID": "AEme", + "UnitSkinID": "Edmf,Edmf,Edmf,Edmf" + }, + "Asa2": { + "skinType": "ability", + "Art:custom,V1": "ReplaceableTextures\\PassiveButtons\\PASBTNPillage.blp" + }, + "DummySec": {}, + "BUtt": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\SpikedShell\\SpikedShellTargetChestLeft.mdl,Abilities\\Spells\\Other\\SpikedShell\\SpikedShellTargetChestRight.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp", + "Targetattach": "chest,mount,left", + "Targetattach1": "chest,mount,right", + "Targetattachcount": "2" + }, + "Batp": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAirAttackOn.blp" + }, + "Bson": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbofSlowness.blp", + "Targetart": "Abilities\\Spells\\Items\\OrbSlow\\OrbOfSlowTarget.mdl" + } + }, + "buff": { + "BPSE": { + "alias": "BPSE", + "code": "BPSE", + "comments": "Pause", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStun.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "BSTN": { + "alias": "BSTN", + "code": "BSTN", + "comments": "Stun", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStun.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "Bchd": { + "alias": "Bchd", + "code": "Bchd", + "comments": "CargoHoldDeath ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDizzy.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "Bdef": { + "alias": "Bdef", + "code": "Bdef", + "comments": "Defense ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNScroll.blp", + "Targetart": "Abilities\\Spells\\Items\\AIda\\AIdaTarget.mdl", + "Targetattach": "overhead" + }, + "Bdet": { + "alias": "Bdet", + "code": "Bdet", + "comments": "Detected ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDustOfAppearance.blp" + }, + "Bfre": { + "alias": "Bfre", + "code": "Bfre", + "comments": "Freeze ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "Bfro": { + "alias": "Bfro", + "code": "Bfro", + "comments": "Frost ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFrost.blp", + "Targetart": "Abilities\\Spells\\Other\\FrostDamage\\FrostDamage.mdl" + }, + "Bvul": { + "alias": "Bvul", + "code": "Bvul", + "comments": "Invulnerable ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNInvulnerable.blp", + "Targetart": "Abilities\\Spells\\Human\\DivineShield\\DivineShieldTarget.mdl", + "Targetattach": "origin" + }, + "Bpoi": { + "alias": "Bpoi", + "code": "Bpoi", + "comments": "PoisonAttack ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnvenomedSpear.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Bpsd": { + "alias": "Bpsd", + "code": "Bpsd", + "comments": "PoisonAttackStackDoT ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnvenomedSpear.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Bpsi": { + "alias": "Bpsi", + "code": "Bpsi", + "comments": "PoisonAttackStackInfo", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "Bsha": { + "alias": "Bsha", + "code": "Bsha", + "comments": "SharedVision ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "Bspe": { + "alias": "Bspe", + "code": "Bspe", + "comments": "SpeedBonus ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBoots.blp", + "Targetart": "Abilities\\Spells\\Items\\AIsp\\SpeedTarget.mdl" + }, + "Btrv": { + "alias": "Btrv", + "code": "Btrv", + "comments": "TeleportReveal ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1 + }, + "Bclf": { + "alias": "Bclf", + "code": "Bclf", + "comments": "CloudOfFog ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCloudOfFog.blp" + }, + "Bcmg": { + "alias": "Bcmg", + "code": "Bcmg", + "comments": "ControlMagic ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNControlMagic.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Bhea": { + "alias": "Bhea", + "code": "Bhea", + "comments": "Heal ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHeal.blp" + }, + "Binf": { + "alias": "Binf", + "code": "Binf", + "comments": "InnerFire ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNInnerFire.blp", + "Targetart": "Abilities\\Spells\\Human\\InnerFire\\InnerFireTarget.mdl", + "Targetattachcount": "1", + "Targetattach": "overhead" + }, + "Binv": { + "alias": "Binv", + "code": "Binv", + "comments": "Invisibility ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNInvisibility.blp" + }, + "Bmlc": { + "alias": "Bmlc", + "code": "Bmlc", + "comments": "MagicLeashCaster ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Effectsoundlooped": "AerialShacklesLoop" + }, + "Bmlt": { + "alias": "Bmlt", + "code": "Bmlt", + "comments": "MagicLeashTarget ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMagicLariet.blp", + "Targetart": "Abilities\\Spells\\Human\\AerialShackles\\AerialShacklesTarget.mdl", + "Targetattach": "chest,mount" + }, + "Bmil": { + "alias": "Bmil", + "code": "Bmil", + "comments": "Militia ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCallToArms.blp" + }, + "Bpxf": { + "alias": "Bpxf", + "code": "Bpxf", + "comments": "PhoenixFire ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireDamage.mdl" + }, + "Bphx": { + "alias": "Bphx", + "code": "Bphx", + "comments": "Phoenix ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff" + }, + "Bply": { + "alias": "Bply", + "code": "Bply", + "comments": "Polymorph ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPolymorph.blp", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "Bslo": { + "alias": "Bslo", + "code": "Bslo", + "comments": "Slow ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSlow.blp", + "Targetart": "Abilities\\Spells\\Human\\slow\\slowtarget.mdl" + }, + "BHab": { + "alias": "BHab", + "code": "BHab", + "comments": "AuraBrilliance ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BHad": { + "alias": "BHad", + "code": "BHad", + "comments": "AuraDevotion ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BHav": { + "alias": "BHav", + "code": "BHav", + "comments": "Avatar ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAvatar.blp" + }, + "BHbn": { + "alias": "BHbn", + "code": "BHbn", + "comments": "Banish ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp", + "Targetart": "Abilities\\Spells\\Human\\Banish\\BanishTarget.mdl", + "Effectsoundlooped": "BanishLoop" + }, + "BHbd": { + "alias": "BHbd", + "code": "BHbd", + "comments": "Blizzard ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Targetart": "Abilities\\Spells\\Other\\FrostDamage\\FrostDamage.mdl" + }, + "BHbz": { + "alias": "BHbz", + "code": "BHbz", + "comments": "BlizzardAoe ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1 + }, + "BHds": { + "alias": "BHds", + "code": "BHds", + "comments": "DivineShield ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp", + "Targetart": "Abilities\\Spells\\Human\\DivineShield\\DivineShieldTarget.mdl", + "Targetattach": "origin" + }, + "Bdcb": { + "alias": "Bdcb", + "code": "Bdcb", + "comments": "DrainCaster ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainCaster.mdl", + "Targetattach": "chest" + }, + "Bdcl": { + "alias": "Bdcl", + "code": "Bdcl", + "comments": "DrainCasterLife ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainCaster.mdl", + "Targetattach": "chest" + }, + "Bdcm": { + "alias": "Bdcm", + "code": "Bdcm", + "comments": "DrainCasterMana ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\ManaDrainCaster.mdl", + "Targetattach": "chest" + }, + "Bdtb": { + "alias": "Bdtb", + "code": "Bdtb", + "comments": "DrainTarget ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainTarget.mdl", + "Targetattach": "chest" + }, + "Bdtl": { + "alias": "Bdtl", + "code": "Bdtl", + "comments": "DrainTargetLife ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\DrainTarget.mdl", + "Targetattach": "chest" + }, + "Bdtm": { + "alias": "Bdtm", + "code": "Bdtm", + "comments": "DrainTargetMana ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Drain\\ManaDrainTarget.mdl", + "Targetattach": "chest" + }, + "BHfs": { + "alias": "BHfs", + "code": "BHfs", + "comments": "FlameStrike ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "BHtc": { + "alias": "BHtc", + "code": "BHtc", + "comments": "ThunderClap ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThunderclap.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "BHwe": { + "alias": "BHwe", + "code": "BHwe", + "comments": "WaterElemental ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp" + }, + "Bakb": { + "alias": "Bakb", + "code": "Bakb", + "comments": "AuraKotoBeast ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDrum.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "Boar": { + "alias": "Boar", + "code": "Boar", + "comments": "AuraRegenLife ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "Barm": { + "alias": "Barm", + "code": "Barm", + "comments": "AuraRegenMana ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "Bbof": { + "alias": "Bbof", + "code": "Bbof", + "comments": "BallsOfFire ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "Bbsk": { + "alias": "Bbsk", + "code": "Bbsk", + "comments": "BerserkerRage ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBerserkForTrolls.blp", + "Targetart": "Abilities\\Spells\\Orc\\TrollBerserk\\HeadhunterWEAPONSLeft.mdl,Abilities\\Spells\\Orc\\TrollBerserk\\HeadhunterWEAPONSRight.mdl", + "Targetattachcount": "2", + "Targetattach": "weapon,left", + "Targetattach1": "weapon,right" + }, + "Bblo": { + "alias": "Bblo", + "code": "Bblo", + "comments": "Bloodlust ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBloodLust.blp", + "Targetart": "Abilities\\Spells\\Orc\\Bloodlust\\BloodlustTarget.mdl,Abilities\\Spells\\Orc\\Bloodlust\\BloodlustSpecial.mdl", + "Targetattachcount": "2", + "Targetattach": "hand,left", + "Targetattach1": "hand,right" + }, + "Bdvv": { + "alias": "Bdvv", + "code": "Bdvv", + "comments": "DevourVision ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDevour.blp" + }, + "Bdig": { + "alias": "Bdig", + "code": "Bdig", + "comments": "Digesting ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1 + }, + "Bens": { + "alias": "Bens", + "code": "Bens", + "comments": "Ensnare ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Targetart": "Abilities\\Spells\\Orc\\Ensnare\\ensnareTarget.mdl", + "Targetattach": "origin" + }, + "Bena": { + "alias": "Bena", + "code": "Bena", + "comments": "EnsnareAir ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Targetart": "Abilities\\Spells\\Orc\\Ensnare\\ensnare_AirTarget.mdl", + "Targetattach": "chest,mount" + }, + "Beng": { + "alias": "Beng", + "code": "Beng", + "comments": "EnsnareGround ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Targetart": "Abilities\\Spells\\Orc\\Ensnare\\ensnareTarget.mdl" + }, + "Beye": { + "alias": "Beye", + "code": "Beye", + "comments": "EvilEye ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp" + }, + "Bhwd": { + "alias": "Bhwd", + "code": "Bhwd", + "comments": "HealingWard ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "Blsh": { + "alias": "Blsh", + "code": "Blsh", + "comments": "LightningShield ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp", + "Targetart": "Abilities\\Spells\\Orc\\LightningShield\\LightningShieldTarget.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\Orc\\LightningShield\\LightningShieldBuff.mdl" + }, + "Blsa": { + "alias": "Blsa", + "code": "Blsa", + "comments": "LightningShieldAoe ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1 + }, + "Bliq": { + "alias": "Bliq", + "code": "Bliq", + "comments": "LiquidFire ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\PassiveButtons\\PASBTNLiquidFire.blp", + "Targetart": "Abilities\\Spells\\Orc\\LiquidFire\\Liquidfire.mdl", + "Effectsoundlooped": "LiquidFireLoop" + }, + "Bprg": { + "alias": "Bprg", + "code": "Bprg", + "comments": "Purge ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Targetart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Targetattach": "origin" + }, + "Bspl": { + "alias": "Bspl", + "code": "Bspl", + "comments": "SpiritLink ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpiritLink.blp", + "Targetart": "Abilities\\Spells\\Orc\\SpiritLink\\SpiritLinkTarget.mdl", + "Targetattach": "chest" + }, + "Bstt": { + "alias": "Bstt", + "code": "Bstt", + "comments": "StasisTrapTrigger ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStasisTrap.blp" + }, + "BOac": { + "alias": "BOac", + "code": "BOac", + "comments": "AuraCommand ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "SpellDetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BOae": { + "alias": "BOae", + "code": "BOae", + "comments": "AuraEndurance ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BOeq": { + "alias": "BOeq", + "code": "BOeq", + "comments": "Earthquake ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "BOea": { + "alias": "BOea", + "code": "BOea", + "comments": "EarthquakeAoe ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1 + }, + "BOhx": { + "alias": "BOhx", + "code": "BOhx", + "comments": "Hex ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "BOmi": { + "alias": "BOmi", + "code": "BOmi", + "comments": "MirrorImage ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMirrorImage.blp", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl" + }, + "BOsh": { + "alias": "BOsh", + "code": "BOsh", + "comments": "Shockwave ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1 + }, + "BOsf": { + "alias": "BOsf", + "code": "BOsf", + "comments": "SpiritWolf ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BOvd": { + "alias": "BOvd", + "code": "BOvd", + "comments": "Voodoo ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBigBadVoodooSpell.blp", + "Targetart": "Abilities\\Spells\\Orc\\Voodoo\\VoodooAuraTarget.mdl", + "Targetattach": "overhead" + }, + "BOvc": { + "alias": "BOvc", + "code": "BOvc", + "comments": "VoodooCaster ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Orc\\Voodoo\\VoodooAura.mdl" + }, + "BOwd": { + "alias": "BOwd", + "code": "BOwd", + "comments": "Ward ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1 + }, + "BOww": { + "alias": "BOww", + "code": "BOww", + "comments": "WhirlwindAoe ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1 + }, + "BOwk": { + "alias": "BOwk", + "code": "BOwk", + "comments": "WindWalk ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp" + }, + "Bbar": { + "alias": "Bbar", + "code": "Bbar", + "comments": "Barkskin ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBarkskin.blp", + "Targetart": "Abilities\\Spells\\NightElf\\Barkskin\\BarkSkinTarget.mdl", + "Targetattach": "chest" + }, + "Bcor": { + "alias": "Bcor", + "code": "Bcor", + "comments": "CorrosiveBreath ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCorrosiveBreath.blp", + "Targetart": "Abilities\\Spells\\NightElf\\CorrosiveBreath\\ChimaeraAcidTargetArt.mdl" + }, + "Bcyc": { + "alias": "Bcyc", + "code": "Bcyc", + "comments": "Cyclone ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp", + "Effectart": "Abilities\\Spells\\NightElf\\Cyclone\\CycloneTarget.mdl", + "Targetattach": "sprite,first", + "Effectsoundlooped": "CycloneLoop" + }, + "Bcy2": { + "alias": "Bcy2", + "code": "Bcy2", + "comments": "CycloneTwo ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp", + "Effectart": "Abilities\\Spells\\NightElf\\Cyclone\\CycloneTarget.mdl", + "Effectattach": "sprite,first", + "Effectsoundlooped": "CycloneLoop" + }, + "Beat": { + "alias": "Beat", + "code": "Beat", + "comments": "EatTree ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1 + }, + "Bfae": { + "alias": "Bfae", + "code": "Bfae", + "comments": "FaerieFire ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\NightElf\\FaerieFire\\FaerieFireTarget.mdl", + "Targetattach": "head", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFire.blp" + }, + "Bgra": { + "alias": "Bgra", + "code": "Bgra", + "comments": "GrabTree ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1 + }, + "Bmfl": { + "alias": "Bmfl", + "code": "Bmfl", + "comments": "ManaFlare ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNManaFlare.blp", + "Targetart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareBase.mdl", + "Targetattach": "overhead", + "Effectsoundlooped": "ManaFlareLoop", + "LightningEffect": "MFPB" + }, + "Bmfa": { + "alias": "Bmfa", + "code": "Bmfa", + "comments": "ManaFlareAoe ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNManaFlare.blp", + "Targetart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareTarget.mdl", + "Targetattach": "overhead", + "Missileart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareMissile.mdl", + "Specialart": "Abilities\\Spells\\Human\\ManaFlare\\ManaFlareBoltImpact.mdl" + }, + "Bpsh": { + "alias": "Bpsh", + "code": "Bpsh", + "comments": "PhaseShift ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPhaseShift.blp", + "Specialart": "Abilities\\Spells\\NightElf\\FaerieDragonInvis\\FaerieDragon_Invis.mdl" + }, + "Bps1": { + "alias": "Bps1", + "code": "Bps1", + "comments": "WispPhaseShift ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1 + }, + "Brej": { + "alias": "Brej", + "code": "Brej", + "comments": "Rejuvination ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp", + "TargetArt": "Abilities\\Spells\\NightElf\\Rejuvenation\\RejuvenationTarget.mdl", + "Targetattach": "chest" + }, + "Broa": { + "alias": "Broa", + "code": "Broa", + "comments": "Roar ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Targetart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarTarget.mdl", + "Targetattach": "overhead" + }, + "Bspo": { + "alias": "Bspo", + "code": "Bspo", + "comments": "SlowPoison ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSlowPoison.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Bssd": { + "alias": "Bssd", + "code": "Bssd", + "comments": "SlowPoisonStackDoT ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\PassiveButtons\\PASBTNSlowPoison.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Bssi": { + "alias": "Bssi", + "code": "Bssi", + "comments": "SlowPoisonStackInfo ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1 + }, + "Bvng": { + "alias": "Bvng", + "code": "Bvng", + "comments": "Vengeance ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAvengingWatcher.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BEah": { + "alias": "BEah", + "code": "BEah", + "comments": "AuraThorns ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThorns.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\NightElf\\ThornsAura\\ThornsAuraDamage.mdl", + "Specialattach": "head" + }, + "BEar": { + "alias": "BEar", + "code": "BEar", + "comments": "AuraTrueshot ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin" + }, + "BEer": { + "alias": "BEer", + "code": "BEer", + "comments": "EntanglingRoots ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp", + "Targetart": "Abilities\\Spells\\NightElf\\EntanglingRoots\\EntanglingRootsTarget.mdl", + "Targetattach": "origin" + }, + "BEfn": { + "alias": "BEfn", + "code": "BEfn", + "comments": "ForceOfNature ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp" + }, + "BEim": { + "alias": "BEim", + "code": "BEim", + "comments": "Immolation ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationDamage.mdl", + "Specialattach": "head" + }, + "BEia": { + "alias": "BEia", + "code": "BEia", + "comments": "ImmolationAoe ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1 + }, + "BEme": { + "alias": "BEme", + "code": "BEme", + "comments": "Metamorphosis ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "BEst": { + "alias": "BEst", + "code": "BEst", + "comments": "Scout ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1 + }, + "BEsh": { + "alias": "BEsh", + "code": "BEsh", + "comments": "ShadowStrike ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Targetart": "Abilities\\Spells\\NightElf\\shadowstrike\\shadowstrike.mdl", + "Targetattach": "overhead" + }, + "BEsv": { + "alias": "BEsv", + "code": "BEsv", + "comments": "SpiritOfVengeance ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpiritOfVengeance.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Bams": { + "alias": "Bams", + "code": "Bams", + "comments": "AntiMagicShell ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\AntiMagicShell\\AntiMagicShell.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Bam2": { + "alias": "Bam2", + "code": "Bam2", + "comments": "AntiMagicShell (Matrix)", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\AntiMagicShell\\AntiMagicShell.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Babr": { + "alias": "Babr", + "code": "Babr", + "comments": "AuraBlightRegen ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNRegenerationAura.blp" + }, + "Bapl": { + "alias": "Bapl", + "code": "Bapl", + "comments": "AuraPlague ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Units\\Undead\\PlagueCloud\\PlagueCloudtarget.mdl", + "Targetattach": "head", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPlagueCloud.blp" + }, + "Bcri": { + "alias": "Bcri", + "code": "Bcri", + "comments": "Cripple ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Cripple\\CrippleTarget.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "Bcrs": { + "alias": "Bcrs", + "code": "Bcrs", + "comments": "Curse ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Curse\\CurseTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCurse.blp" + }, + "Bfrz": { + "alias": "Bfrz", + "code": "Bfrz", + "comments": "FreezingBreath ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\FreezingBreath\\FreezingBreathTargetArt.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFreezingBreath.blp" + }, + "Bplg": { + "alias": "Bplg", + "code": "Bplg", + "comments": "PlagueWard ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1 + }, + "Bpoc": { + "alias": "Bpoc", + "code": "Bpoc", + "comments": "Possession", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Possession\\PossessionCaster.mdl", + "Targetattach": "overhead" + }, + "Bpos": { + "alias": "Bpos", + "code": "Bpos", + "comments": "Possession", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Possession\\PossessionTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp" + }, + "Brai": { + "alias": "Brai", + "code": "Brai", + "comments": "RaiseDead ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp" + }, + "Brpb": { + "alias": "Brpb", + "code": "Brpb", + "comments": "Replenish ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNReplenishMana.blp" + }, + "Brpl": { + "alias": "Brpl", + "code": "Brpl", + "comments": "ReplenishLife ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNReplenishHealth.blp" + }, + "Brpm": { + "alias": "Brpm", + "code": "Brpm", + "comments": "ReplenishMana ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNReplenishMana.blp" + }, + "Bspa": { + "alias": "Bspa", + "code": "Bspa", + "comments": "SpiderAttack ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Weapons\\CryptFiendMissile\\CryptFiendMissileTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpider.blp" + }, + "Buhf": { + "alias": "Buhf", + "code": "Buhf", + "comments": "UnholyFrenzy ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\UnholyFrenzy\\UnholyFrenzyTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "Buns": { + "alias": "Buns", + "code": "Buns", + "comments": "Unsummon ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Unsummon\\UnsummonTarget.mdl", + "Effectsoundlooped": "AcolyteUnsummonLoop", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUnsummonBuilding.blp" + }, + "Bweb": { + "alias": "Bweb", + "code": "Bweb", + "comments": "Web ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Web\\WebTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWeb.blp" + }, + "Bwea": { + "alias": "Bwea", + "code": "Bwea", + "comments": "WebAir ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Web\\Web_AirTarget.mdl", + "Targetattach": "chest,mount", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWeb.blp" + }, + "BUan": { + "alias": "BUan", + "code": "BUan", + "comments": "AnimateDead ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Specialart": "Objects\\Spawnmodels\\Undead\\UndeadLargeDeathExplode\\UndeadLargeDeathExplode.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp" + }, + "BUau": { + "alias": "BUau", + "code": "BUau", + "comments": "AuraUnholy ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUnholyAura.blp" + }, + "BUav": { + "alias": "BUav", + "code": "BUav", + "comments": "AuraVampiric ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "Spelldetail": "2", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\GeneralAuraTarget\\GeneralAuraTarget.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNVampiricAura.blp", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Specialattach": "origin" + }, + "BUcb": { + "alias": "BUcb", + "code": "BUcb", + "comments": "CarrionScarab ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp" + }, + "BUcs": { + "alias": "BUcs", + "code": "BUcs", + "comments": "CarrionSwarm ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1 + }, + "BUdd": { + "alias": "BUdd", + "code": "BUdd", + "comments": "DeathAndDecayAoe ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\DeathandDecay\\DeathandDecayDamage.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp" + }, + "BUfa": { + "alias": "BUfa", + "code": "BUfa", + "comments": "FrostArmor ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorTarget.mdl", + "Targetattach": "chest", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp", + "Specialart": "Abilities\\Spells\\Undead\\FrostArmor\\FrostArmorDamage.mdl", + "Specialattach": "chest" + }, + "BUim": { + "alias": "BUim", + "code": "BUim", + "comments": "Impale ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Effectart": "Abilities\\Spells\\Undead\\Impale\\ImpaleHitTarget.mdl", + "Effectattach": "sprite,first", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Targetattach": "overhead" + }, + "BUsl": { + "alias": "BUsl", + "code": "BUsl", + "comments": "Sleep ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Effectsoundlooped": "CreepSleepSnoreLoop", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepTarget.mdl", + "Targetattach": "overhead", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "BUsp": { + "alias": "BUsp", + "code": "BUsp", + "comments": "SleepPause ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepSpecialArt.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "BUst": { + "alias": "BUst", + "code": "BUst", + "comments": "SleepStun ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepSpecialArt.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "BUts": { + "alias": "BUts", + "code": "BUts", + "comments": "ThornyShield ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestRight.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountRight.mdl", + "Targetattach1": "chest,right", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp", + "Targetattach3": "chest,mount,right", + "Targetattach2": "chest,mount,left", + "Targetattach": "chest,left", + "Targetattachcount": "4" + }, + "BUtt": { + "alias": "BUtt", + "code": "BUts", + "comments": "ThornyShield ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\SpikedShell\\SpikedShellTargetChestLeft.mdl,Abilities\\Spells\\Other\\SpikedShell\\SpikedShellTargetChestRight.mdl", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp", + "Targetattach": "chest,mount,left", + "Targetattach1": "chest,mount,right", + "Targetattachcount": "2" + }, + "Basl": { + "alias": "Basl", + "code": "Basl", + "comments": "AuraSlow ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Targetart": "Abilities\\Spells\\Other\\Tornado\\Tornado_Target.mdl" + }, + "BCbf": { + "alias": "BCbf", + "code": "BCbf", + "comments": "BreathOfFrost ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFrost.blp", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFrost\\BreathOfFrostTarget.mdl" + }, + "BCtc": { + "alias": "BCtc", + "code": "BCtc", + "comments": "CreepThunderClap ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGolemThunderclap.blp", + "Targetart": "Abilities\\Spells\\Orc\\StasisTrap\\StasisTotemTarget.mdl", + "Targetattach": "overhead" + }, + "Bfzy": { + "alias": "Bfzy", + "code": "Bfzy", + "comments": "Frenzy ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBloodLust.blp", + "Targetart": "Abilities\\Spells\\Orc\\Bloodlust\\BloodlustTarget.mdl,Abilities\\Spells\\Orc\\Bloodlust\\BloodlustSpecial.mdl", + "Targetattachcount": "2", + "Targetattach": "hand,left", + "Targetattach1": "hand,right" + }, + "Bmec": { + "alias": "Bmec", + "code": "Bmec", + "comments": "MechanicalCritter ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "BNmr": { + "alias": "BNmr", + "code": "BNmr", + "comments": "MindRot ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "Bpig": { + "alias": "Bpig", + "code": "Bpig", + "comments": "PandaImmolation ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\ImmolationRed\\ImmolationRedTarget.mdl", + "Targetattach": "chest", + "Specialart": "Abilities\\Spells\\Other\\ImmolationRed\\ImmolationRedDamage.mdl", + "Specialattach": "chest" + }, + "BNpi": { + "alias": "BNpi", + "code": "BNpi", + "comments": "PermImmolation ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Specialart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationDamage.mdl", + "Specialattach": "head" + }, + "BNsa": { + "alias": "BNsa", + "code": "BNsa", + "comments": "Sanctuary ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSanctuary.blp", + "Targetart": "Abilities\\Spells\\Items\\StaffOfSanctuary\\Staff_Sanctuary_Target.mdl" + }, + "Bshs": { + "alias": "Bshs", + "code": "Bshs", + "comments": "ShadowSight ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWandOfShadowSight.blp" + }, + "BNss": { + "alias": "BNss", + "code": "BNss", + "comments": "SpellShield ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "Btdg": { + "alias": "Btdg", + "code": "Btdg", + "comments": "TornadoDamageAoe ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "Btsp": { + "alias": "Btsp", + "code": "Btsp", + "comments": "TornadoSpin ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Effectart": "Abilities\\Spells\\Other\\Tornado\\TornadoElementalSmall.mdl", + "Effectattach": "sprite,first" + }, + "Btsa": { + "alias": "Btsa", + "code": "Btsa", + "comments": "TornadoSpinAoe ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "BNba": { + "alias": "BNba", + "code": "BNba", + "comments": "BlackArrow ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp" + }, + "BNbf": { + "alias": "BNbf", + "code": "BNbf", + "comments": "BreathOfFire ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireDamage.mdl" + }, + "BHca": { + "alias": "BHca", + "code": "BHca", + "comments": "ColdArrow ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp" + }, + "Bcsd": { + "alias": "Bcsd", + "code": "Bcsd", + "comments": "ColdArrowStackDoT ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp" + }, + "Bcsi": { + "alias": "Bcsi", + "code": "Bcsi", + "comments": "ColdArrowStackInfo ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff" + }, + "BNdm": { + "alias": "BNdm", + "code": "BNdm", + "comments": "DarkMinion ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp" + }, + "BNdo": { + "alias": "BNdo", + "code": "BNdo", + "comments": "Doom ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDoom.blp", + "Targetart": "Abilities\\Spells\\Other\\Doom\\DoomTarget.mdl" + }, + "BNdi": { + "alias": "BNdi", + "code": "BNdi", + "comments": "DoomMinion ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Other\\Doom\\DoomDeath.mdl", + "Effectart": "Abilities\\Spells\\Other\\Doom\\DoomDeath.mdl" + }, + "BNdh": { + "alias": "BNdh", + "code": "BNdh", + "comments": "DrunkenHaze ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Targetart": "Abilities\\Spells\\Other\\StrongDrink\\BrewmasterTarget.mdl", + "Targetattach": "overhead" + }, + "BNef": { + "alias": "BNef", + "code": "BNef", + "comments": "ElementalFury ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Effectart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl" + }, + "BNht": { + "alias": "BNht", + "code": "BNht", + "comments": "HowlOfTerror ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Targetart": "Abilities\\Spells\\Other\\HowlOfTerror\\HowlTarget.mdl" + }, + "BNms": { + "alias": "BNms", + "code": "BNms", + "comments": "ManaShield ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Targetart": "Abilities\\Spells\\Human\\ManaShield\\ManaShieldCaster.mdl" + }, + "BNsi": { + "alias": "BNsi", + "code": "BNsi", + "comments": "Silence ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Targetart": "Abilities\\Spells\\Other\\Silence\\SilenceTarget.mdl", + "Targetattach": "overhead" + }, + "BNst": { + "alias": "BNst", + "code": "BNst", + "comments": "Stampede ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "BNsg": { + "alias": "BNsg", + "code": "BNsg", + "comments": "SummonGrizzly ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BNsq": { + "alias": "BNsq", + "code": "BNsq", + "comments": "SummonQuillbeast ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BNsw": { + "alias": "BNsw", + "code": "BNsw", + "comments": "SummonWarEagle ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BNto": { + "alias": "BNto", + "code": "BNto", + "comments": "Tornado ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Effectsoundlooped": "TornadoLoop" + }, + "BNwm": { + "alias": "BNwm", + "code": "BNwm", + "comments": "WateryMinion ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BNbr": { + "alias": "BNbr", + "code": "BNbr", + "comments": "BattleRoar ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Targetart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarTarget.mdl", + "Targetattach": "overhead" + }, + "BNdc": { + "alias": "BNdc", + "code": "BNdc", + "comments": "DarkConversion ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Targetart": "Abilities\\Spells\\Undead\\Sleep\\SleepTarget.mdl", + "Targetattach": "overhead", + "Effectart": "Abilities\\Spells\\Demon\\DarkConversion\\ZombifyTarget.mdl" + }, + "BNin": { + "alias": "BNin", + "code": "BNin", + "comments": "Infernal ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "BNpa": { + "alias": "BNpa", + "code": "BNpa", + "comments": "Parasite ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNParasite.blp", + "Targetart": "Abilities\\Spells\\Other\\Parasite\\ParasiteTarget.mdl", + "Targetattach": "overhead" + }, + "BNpm": { + "alias": "BNpm", + "code": "BNpm", + "comments": "ParasiteMinion ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNParasite.blp" + }, + "BNrd": { + "alias": "BNrd", + "code": "BNrd", + "comments": "RainOfFire ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "BNrf": { + "alias": "BNrf", + "code": "BNrf", + "comments": "RainOfFireAoe", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "BNsl": { + "alias": "BNsl", + "code": "BNsl", + "comments": "SoulPreservation ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Effectsound": "SoulPreservation" + }, + "BIcb": { + "alias": "BIcb", + "code": "BIcb", + "comments": "Corruption ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfCorruption.blp" + }, + "BFig": { + "alias": "BFig", + "code": "BFig", + "comments": "Figurine ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BIcf": { + "alias": "BIcf", + "code": "BIcf", + "comments": "ItemCloakOfFlames ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNCloakOfFlames.blp", + "Targetart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Immolation\\ImmolationDamage.mdl", + "Specialattach": "head" + }, + "BIil": { + "alias": "BIil", + "code": "BIil", + "comments": "ItemIllusion ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWand.blp", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageDeathCaster.mdl" + }, + "BIrb": { + "alias": "BIrb", + "code": "BIrb", + "comments": "Rebirth ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BIrg": { + "alias": "BIrg", + "code": "BIrg", + "comments": "Regeneration ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvScroll.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl,Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Targetattach": "origin", + "Targetattach1": "origin", + "Targetattachcount": "2" + }, + "BIrl": { + "alias": "BIrl", + "code": "BIrl", + "comments": "RegenLife ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingSalve.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Targetattach": "origin" + }, + "BIrm": { + "alias": "BIrm", + "code": "BIrm", + "comments": "RegenMana ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPotionOfClarity.blp", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl", + "Targetattach": "origin" + }, + "BIsv": { + "alias": "BIsv", + "code": "BIsv", + "comments": "SoulTrapVision ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNUsedSoulGem.blp", + "Targetart": "Abilities\\Spells\\Items\\AIso\\BIsvTarget.mdl" + }, + "BIsh": { + "alias": "BIsh", + "code": "BIsh", + "comments": "SpiritTroll ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Effectart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "BIwb": { + "alias": "BIwb", + "code": "BIwb", + "comments": "ItemWeb ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1 + }, + "BImo": { + "alias": "BImo", + "code": "BImo", + "comments": "ItemMonsterLure ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1 + }, + "BIpv": { + "alias": "BIpv", + "code": "BIpv", + "comments": "ItemVampirePotion ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNPotionOfVampirism.blp", + "Targetart": "Abilities\\Spells\\Items\\VampiricPotion\\VampPotionCaster.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Specialattach": "origin" + }, + "Xclf": { + "alias": "Xclf", + "code": "Xclf", + "comments": "CloudOfFog ", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\CloudOfFog\\CloudOfFog.mdl", + "Effectsoundlooped": "CloudOfFogLoop" + }, + "Xfla": { + "alias": "Xfla", + "code": "Xfla", + "comments": "Flare ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\Flare\\FlareTarget.mdl" + }, + "XHbz": { + "alias": "XHbz", + "code": "XHbz", + "comments": "Blizzard ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\Blizzard\\BlizzardTarget.mdl", + "Effectsoundlooped": "BlizzardLoop", + "Effectsound": "BlizzardWave" + }, + "XHfs": { + "alias": "XHfs", + "code": "XHfs", + "comments": "FlameStrike ", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "human", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeEmbers.mdl", + "Effectsoundlooped": "HumanFireLarge" + }, + "Xbof": { + "alias": "Xbof", + "code": "Xbof", + "comments": "BallsOfFire ", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeEmbers.mdl", + "Effectsoundlooped": "HumanFireLarge" + }, + "XOeq": { + "alias": "XOeq", + "code": "XOeq", + "comments": "Earthquake ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Orc\\EarthQuake\\EarthQuakeTarget.mdl", + "Effectsoundlooped": "EarthquakeLoop" + }, + "XOre": { + "alias": "XOre", + "code": "XOre", + "comments": "Reincarnation ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "orc", + "InBeta": 1 + }, + "Xesn": { + "alias": "Xesn", + "code": "Xesn", + "comments": "Sentinel ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1 + }, + "XEsf": { + "alias": "XEsf", + "code": "XEsf", + "comments": "Starfall ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\NightElf\\Starfall\\StarfallCaster.mdl" + }, + "XEtq": { + "alias": "XEtq", + "code": "XEtq", + "comments": "Tranquility ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\NightElf\\Tranquility\\Tranquility.mdl", + "Effectsoundlooped": "TranquilityLoop" + }, + "XUdd": { + "alias": "XUdd", + "code": "XUdd", + "comments": "DeathAndDecay ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Undead\\DeathandDecay\\DeathandDecayTarget.mdl", + "Effectsoundlooped": "DeathAndDecayLoop" + }, + "XNmo": { + "alias": "XNmo", + "code": "XNmo", + "comments": "Monsoon ", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Other\\Monsoon\\MonsoonRain.mdl", + "Effectsoundlooped": "MonsoonLoop" + }, + "XErc": { + "alias": "XErc", + "code": "XErc", + "comments": "RainOfChaos ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1 + }, + "XErf": { + "alias": "XErf", + "code": "XErf", + "comments": "RainOfFire ", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Demon\\RainOfFire\\RainOfFireTarget.mdl", + "Effectsoundlooped": "RainOfFireLoop", + "Effectsound": "RainOfFireWave" + }, + "XIct": { + "alias": "XIct", + "code": "XIct", + "comments": "ItemChangeTOD ", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1 + }, + "AEsd": { + "alias": "AEsd", + "code": "AEsd", + "comments": "Starfall target", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\Starfall\\StarfallTarget.mdl", + "Targetattach": "origin" + }, + "AEtr": { + "alias": "AEtr", + "code": "AEtr", + "comments": "Tranquility target", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "nightelf", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\Tranquility\\TranquilityTarget.mdl" + }, + "ANmd": { + "alias": "ANmd", + "code": "ANmd", + "comments": "Monsoon ", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\Monsoon\\MonsoonBoltTarget.mdl", + "Targetattach": "origin" + }, + "Bivs": { + "alias": "Bivs", + "code": "Bivs", + "comments": "Invisibility ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1 + }, + "BUad": { + "alias": "BUad", + "code": "BUad", + "comments": "AnimateDead ", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "hero", + "race": "undead", + "InBeta": 1 + }, + "Bult": { + "alias": "Bult", + "code": "Bult", + "comments": "Ultravision", + "isEffect": 0, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1 + }, + "BNab": { + "alias": "BNab", + "code": "BNab", + "comments": "AcidBomb", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAcidBomb.blp", + "Targetart": "Abilities\\Spells\\Other\\AcidBomb\\BottleImpact.mdl", + "Targetattach": "chest" + }, + "BNcr": { + "alias": "BNcr", + "code": "BNcr", + "comments": "ChemicalRage", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNChemicalRage.blp" + }, + "BNhs": { + "alias": "BNhs", + "code": "BNhs", + "comments": "HealingSpray", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNHealingSpray.blp" + }, + "XNhs": { + "alias": "XNhs", + "code": "XNhs", + "comments": "HealingSpray", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "effect", + "Specialart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "BNtm": { + "alias": "BNtm", + "code": "BNtm", + "comments": "Transmute", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Specialart": "Abilities\\Spells\\Other\\Transmute\\PileofGold.mdl" + }, + "BNeg": { + "alias": "BNeg", + "code": "BNeg", + "comments": "EngineeringUpgrade", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNEngineeringUpgrade.blp", + "Targetart": "Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestRight.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountLeft.mdl,Abilities\\Spells\\Undead\\ThornyShield\\ThornyShieldTargetChestMountRight.mdl", + "Targetattachcount": "4", + "Targetattach": "chest,left", + "Targetattach1": "chest,right", + "Targetattach2": "chest,mount,left", + "Targetattach3": "chest,mount,right" + }, + "BNcs": { + "alias": "BNcs", + "code": "BNcs", + "comments": "ClusterRockets", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "XNcs": { + "alias": "XNcs", + "code": "XNcs", + "comments": "ClusterRockets", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "effect" + }, + "BNfy": { + "alias": "BNfy", + "code": "BNfy", + "comments": "SummonFactory", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff" + }, + "BNcg": { + "alias": "BNcg", + "code": "BNcg", + "comments": "ClockwerkGoblin", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff" + }, + "BNic": { + "alias": "BNic", + "code": "BNic", + "comments": "Incinerate", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "MissileHoming": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNIncinerate.blp", + "Specialart": "Abilities\\Spells\\Other\\Incinerate\\FireLordDeathExplode.mdl", + "Targetart": "Abilities\\Spells\\Other\\Incinerate\\IncinerateBuff.mdl", + "Targetattach": "chest" + }, + "BNso": { + "alias": "BNso", + "code": "BNso", + "comments": "SoulBurn", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSoulBurn.blp", + "Targetart": "Abilities\\Spells\\Other\\SoulBurn\\SoulBurnbuff.mdl", + "Targetattach": "overhead" + }, + "BNlm": { + "alias": "BNlm", + "code": "BNlm", + "comments": "LavaMonster", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "Missilespeed": "200", + "MissileHoming": "1", + "skinType": "buff", + "Missileart": "Abilities\\Weapons\\LavaSpawnMissile\\LavaSpawnBirthMissile.mdl", + "Missilearc": ".99" + }, + "BNvc": { + "alias": "BNvc", + "code": "BNvc", + "comments": "Volcano", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNVolcano.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "BNva": { + "alias": "BNva", + "code": "BNva", + "comments": "VolcanoAOE", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1 + }, + "XNvc": { + "alias": "XNvc", + "code": "XNvc", + "comments": "Volcano", + "isEffect": 1, + "version": 1, + "useInEditor": 1, + "sort": "hero", + "race": "other", + "InBeta": 1, + "Missilespeed": "400", + "MissileHoming": "1", + "skinType": "effect", + "Specialart": "Abilities\\Spells\\Other\\Volcano\\VolcanoDeath.mdl", + "Effectsoundlooped": "VolcanoLoop", + "Missileart": "Abilities\\Spells\\Other\\Volcano\\VolcanoMissile.mdl", + "Missilearc": "0.8" + }, + "Xbdt": { + "alias": "Xbdt", + "code": "Xbdt", + "comments": "EFFECT_BASEDETECTOR", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1, + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Other\\Andt\\Andt.mdl" + }, + "Xbli": { + "alias": "Xbli", + "code": "Xbli", + "comments": "EFFECT_BLIGHT", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "Xdis": { + "alias": "Xdis", + "code": "Xdis", + "comments": "EFFECT_HERODISSIPATE", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "other", + "InBeta": 1 + }, + "Xfhs": { + "alias": "Xfhs", + "code": "Xfhs", + "comments": "EFFECT_OnFireHumanSml", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,fourth", + "Effectsoundlooped": "HumanFireSmall" + }, + "Xfhm": { + "alias": "Xfhm", + "code": "Xfhm", + "comments": "EFFECT_OnFireHumanMed", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fourth", + "Targetattach3": "sprite,fifth", + "Effectsoundlooped": "HumanFireMedium" + }, + "Xfhl": { + "alias": "Xfhl", + "code": "Xfhl", + "comments": "EFFECT_OnFireHumanLrg", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "human", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire0.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fifth", + "Targetattach3": "sprite,third", + "Targetattach4": "sprite,fourth", + "Targetattach5": "sprite,sixth", + "Effectsoundlooped": "HumanFireLarge" + }, + "Xfos": { + "alias": "Xfos", + "code": "Xfos", + "comments": "EFFECT_OnFireOrcSml", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,fourth", + "Effectsoundlooped": "HumanFireSmall" + }, + "Xfom": { + "alias": "Xfom", + "code": "Xfom", + "comments": "EFFECT_OnFireOrcMed", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire2.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire2.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fourth", + "Targetattach3": "sprite,fifth", + "Effectsoundlooped": "HumanFireMedium" + }, + "Xfol": { + "alias": "Xfol", + "code": "Xfol", + "comments": "EFFECT_OnFireOrcLrg", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "orc", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire0.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire1.mdl,Environment\\LargeBuildingFire\\LargeBuildingFire1.mdl,Environment\\SmallBuildingFire\\SmallBuildingFire0.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fifth", + "Targetattach3": "sprite,third", + "Targetattach4": "sprite,fourth", + "Targetattach5": "sprite,sixth", + "Effectsoundlooped": "HumanFireLarge" + }, + "Xfns": { + "alias": "Xfns", + "code": "Xfns", + "comments": "EFFECT_OnFireNightElfSml", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\NightElfBuildingFire\\ElfSmallBuildingFire2.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,fourth", + "Effectsoundlooped": "NightElfFireSmall" + }, + "Xfnm": { + "alias": "Xfnm", + "code": "Xfnm", + "comments": "EFFECT_OnFireNightElfMed", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\NightElfBuildingFire\\ElfLargeBuildingFire2.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire1.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire0.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire2.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fourth", + "Targetattach3": "sprite,fifth", + "Effectsoundlooped": "NightElfFireMedium" + }, + "Xfnl": { + "alias": "Xfnl", + "code": "Xfnl", + "comments": "EFFECT_OnFireNightElfLrg", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "nightelf", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\NightElfBuildingFire\\ElfLargeBuildingFire1.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire0.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire0.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire1.mdl,Environment\\NightElfBuildingFire\\ElfLargeBuildingFire2.mdl,Environment\\NightElfBuildingFire\\ElfSmallBuildingFire0.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,fifth", + "Targetattach3": "sprite,third", + "Targetattach4": "sprite,fourth", + "Targetattach5": "sprite,sixth", + "Effectsoundlooped": "NightElfFireLarge" + }, + "Xfus": { + "alias": "Xfus", + "code": "Xfus", + "comments": "EFFECT_OnFireUndeadSml", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "effect", + "Targetattach1": "sprite,fourth", + "Targetattach": "sprite,first", + "TargetArt": "Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire2.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire1.mdl", + "Targetattachcount": "2", + "Effectsoundlooped": "UndeadFireSmall" + }, + "Xfum": { + "alias": "Xfum", + "code": "Xfum", + "comments": "EFFECT_OnFireUndeadMed", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire2.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire1.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire0.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire2.mdl", + "Effectsoundlooped": "UndeadFireMedium", + "Targetattach1": "sprite,second", + "Targetattach3": "sprite,fifth", + "Targetattach2": "sprite,fourth", + "Targetattach": "sprite,first", + "Targetattachcount": "4" + }, + "Xful": { + "alias": "Xful", + "code": "Xful", + "comments": "EFFECT_OnFireUndeadLrg", + "isEffect": 1, + "version": 0, + "useInEditor": 1, + "sort": "unit", + "race": "undead", + "InBeta": 1, + "skinType": "effect", + "TargetArt": "Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire1.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire0.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire0.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire1.mdl,Environment\\UndeadBuildingFire\\UndeadLargeBuildingFire2.mdl,Environment\\UndeadBuildingFire\\UndeadSmallBuildingFire0.mdl", + "Effectsoundlooped": "UndeadFireLarge", + "Targetattach5": "sprite,sixth", + "Targetattach4": "sprite,fourth", + "Targetattach1": "sprite,second", + "Targetattach3": "sprite,third", + "Targetattach2": "sprite,fifth", + "Targetattach": "sprite,first", + "Targetattachcount": "6" + }, + "BIhm": { + "alias": "BIhm", + "code": "BIhm", + "comments": "HealMultiplier", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Targetart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeDamageTarget.mdl" + }, + "Bson": { + "alias": "Bson", + "code": "Bson", + "comments": "OrbOfSlow", + "isEffect": 0, + "version": 1, + "useInEditor": 1, + "sort": "item", + "race": "other", + "InBeta": 1, + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbofSlowness.blp", + "Targetart": "Abilities\\Spells\\Items\\OrbSlow\\OrbOfSlowTarget.mdl" + }, + "Amls": { + "Buttonpos": "0,2", + "Order": "magicleash", + "Scriptname": "\"Aerial Shackles\"", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMagicLariet.blp", + "Animnames": "spell,looping", + "LightningEffect": "LEAS" + }, + "AHta": { + "Requires": "Rhse", + "ButtonPos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReveal.blp", + "Casterart": "Abilities\\Spells\\Items\\AIta\\CrystalBallCaster.mdl", + "Casterattach": "overhead" + }, + "Afbk": { + "Buttonpos": "3,2", + "Scriptname": "Feedback", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFeedBack.blp", + "Specialart": "Abilities\\Spells\\Human\\Feedback\\SpellBreakerAttack.mdl" + }, + "Afbt": { + "Buttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFeedBack.blp", + "Specialart": "Abilities\\Spells\\Human\\Feedback\\ArcaneTowerAttack.mdl" + }, + "Acmg": { + "Requires": "Rhss", + "Buttonpos": "1,2", + "Order": "controlmagic", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNControlMagic.blp", + "Targetart": "Abilities\\Spells\\Human\\ControlMagic\\ControlMagicTarget.mdl", + "Targetattach": "overhead" + }, + "AHdr": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp", + "Effectsoundlooped": "SiphonManaLoop", + "LightningEffect": "DRAB,DRAL,DRAM", + "Animnames": "spell,channel" + }, + "Bdbb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp" + }, + "Bdbl": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp" + }, + "Bdbm": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp" + }, + "Aflk": { + "Buttonpos": "2,2", + "Requires": "Rhfc", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFlakCannons.blp", + "Targetart": "Abilities\\Spells\\Human\\FlakCannons\\FlakTarget.mdl", + "Targetattach": "chest", + "Specialart": "Abilities\\Spells\\Human\\FlakCannons\\FlakTarget.mdl", + "Specialattach": "chest" + }, + "Afsh": { + "Buttonpos": "1,2", + "Requires": "Rhfs", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFragmentationBombs.blp", + "Targetart": "Abilities\\Weapons\\FlyingMachine\\FlyingMachineImpact.mdl", + "Targetattach": "chest" + }, + "Aroc": { + "Requires": "Rhrt", + "Buttonpos": "0,2", + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNScatterRockets.blp", + "Missileart": "Abilities\\Weapons\\RocketMissile\\RocketMissile.mdl", + "Missilearc": "0.15" + }, + "Amdf": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "magicdefense", + "Unorder": "magicundefense", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellBreakerMagicDefend.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSpellBreakerMagicUnDefend.blp", + "Casterart": "Abilities\\Spells\\Human\\Defend\\DefendCaster.mdl" + }, + "AHbu": { + "Buttonpos": "0,2", + "Order": "humanbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanBuild.blp" + }, + "Asph": { + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Units\\Human\\HeroBloodElf\\BloodElfBall.mdl", + "Targetattachcount": "3", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Missileart": "Units\\Human\\HeroBloodElf\\BloodElfBall.mdl", + "Missilearc": "0.05" + }, + "Asps": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "spellsteal", + "Orderon": "spellstealon", + "Orderoff": "spellstealoff", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellStealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSpellStealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealTarget.mdl", + "Targetattach": "overhead", + "Missileart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealMissile.mdl", + "Missilearc": "0.15" + }, + "Aclf": { + "Requires": "Rhcd", + "Buttonpos": "1,2", + "Order": "cloudoffog", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloudOfFog.blp", + "Animnames": "stand,channel" + }, + "AHfs": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "flamestrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrike1.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike2.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike.mdl", + "Animnames": "spell,channel" + }, + "AHbn": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "banish", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp", + "Effectsound": "BanishCaster" + }, + "AHpx": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "summonphoenix", + "skinType": "ability", + "UnitSkinID": "hphx,hphx,hphx,hphx", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Specialart": "Abilities\\Spells\\Human\\MarkOfChaos\\MarkOfChaosTarget.mdl" + }, + "Aphx": { + "skinType": "ability", + "UnitSkinID": "hpxe" + }, + "Apxf": { + "Buttonpos": "0,2", + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMarkOfFire.blp", + "Missileart": "Abilities\\Weapons\\PhoenixMissile\\Phoenix_Missile_mini.mdl" + }, + "Agyb": { + "Requires": "Rhgb", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHumanArtilleryUpOne.blp" + }, + "Asth": { + "Requires": "Rhhb", + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNStormHammer.blp" + }, + "Agyv": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFlyingMachineTrueSight.blp" + }, + "Adef": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Requires": "Rhde", + "Order": "defend", + "Unorder": "undefend", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDefend.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDefendStop.blp", + "Casterart": "Abilities\\Spells\\Human\\Defend\\DefendCaster.mdl" + }, + "Afla": { + "Buttonpos": "0,2", + "Requires": "Rhfl", + "Order": "flare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlare.blp", + "Casterart": "Abilities\\Spells\\Human\\Flare\\FlareCaster.mdl", + "Animnames": "spell,attack" + }, + "Adts": { + "Buttonpos": "2,1", + "Requires": "Rhse", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMagicalSentry.blp", + "Casterart": "Abilities\\Spells\\Human\\MagicSentry\\MagicSentryCaster.mdl", + "Casterattach": "overhead" + }, + "Ainf": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Requires": "Rhpt", + "Requiresamount": "2", + "Order": "innerfire", + "Orderon": "innerfireon", + "Orderoff": "innerfireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOff.blp", + "Effectsound": "InnerFireCast" + }, + "Adis": { + "Buttonpos": "1,2", + "Requires": "Rhpt", + "Order": "dispel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDispelMagic.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Ahea": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "BNhe": { + "Spelldetail": "1", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSlow.blp" + }, + "Aslo": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "slow", + "Orderon": "slowon", + "Orderoff": "slowoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlowOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSlowOff.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "Aivs": { + "Buttonpos": "1,2", + "Requires": "Rhst", + "Order": "invisibility", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInvisibility.blp", + "Targetart": "Abilities\\Spells\\Human\\Invisibility\\InvisibilityTarget.mdl", + "Targetattach": "chest" + }, + "Aply": { + "Buttonpos": "2,2", + "Requires": "Rhst", + "Requiresamount": "2", + "Order": "polymorph", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolymorph.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphTarget.mdl", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphFallingSheepArt.mdl" + }, + "AHbz": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "blizzard", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Animnames": "stand,channel" + }, + "AHwe": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "waterelemental", + "skinType": "ability", + "UnitSkinID": "hwat,hwt2,hwt3,hwt3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSummonWaterElemental.blp" + }, + "AHab": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBrilliance.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Human\\Brilliance\\Brilliance.mdl", + "Targetattach": "origin" + }, + "AHmt": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "massteleport", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMassTeleport.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMassTeleport.blp", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "AHtb": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "thunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Missileart": "Abilities\\Spells\\Human\\StormBolt\\StormBoltMissile.mdl", + "Animnames": "spell,throw" + }, + "BHtb": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "AHtc": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "thunderclap", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNThunderclap.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThunderclap.blp", + "Casterart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderClapCaster.mdl", + "Casterattach": "origin", + "Animnames": "spell,slam" + }, + "AHbh": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBash.blp" + }, + "BHbh": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNBash.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "AHav": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "avatar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAvatarOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAvatarOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAvatar.blp", + "Casterart": "Abilities\\Spells\\Human\\Avatar\\AvatarCaster.mdl" + }, + "AHhb": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "holybolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHolyBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHolyBolt.blp", + "Targetart": "Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl" + }, + "AHds": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "divineshield", + "Unorder": "undivineshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDivineShieldOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp" + }, + "AHad": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDevotion.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Human\\DevotionAura\\DevotionAura.mdl", + "Targetattach": "origin" + }, + "AHre": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl" + }, + "Amil": { + "Buttonpos": "1,2", + "Unbuttonpos": "2,2", + "Order": "militia", + "Unorder": "militiaoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCallToArms.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBacktoWork.blp" + }, + "Amic": { + "Buttonpos": "1,2", + "Unbuttonpos": "2,2", + "Order": "townbellon", + "Unorder": "townbelloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCallToArms.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBacktoWork.blp", + "Effectsound": "TownHallCallToArms" + }, + "Ahsb": { + "Buttonpos": "0,2", + "Requires": "Rhsb", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSunderingBlades.blp", + "Casterart": "Abilities\\Spells\\Human\\SunderingBlades\\SunderingBlades.mdl", + "Casterattach": "weapon,right" + }, + "Ahri": { + "Buttonpos": "0,2", + "Requires": "Rhri", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDwarvenLongRifle.blp" + }, + "Ahan": { + "Buttonpos": "3,2", + "Requires": "Rhan", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNAnimalWarTraining.blp" + }, + "Ahpe": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMarkOfFire.blp" + }, + "Ahlh": { + "Buttonpos": "2,1", + "Requires": "Rhlh", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHumanLumberUpgrade1.blp,ReplaceableTextures\\PassiveButtons\\PASBTNHumanLumberUpgrade2.blp" + }, + "Abof": { + "Buttonpos": "0,2", + "Missilespeed": "900", + "Requires": "Robf", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFireRocks.blp", + "Missileart": "Abilities\\Weapons\\DemolisherFireMissile\\DemolisherFireMissile.mdl", + "Missilearc": "0.35" + }, + "Absk": { + "Buttonpos": "0,2", + "Order": "berserk", + "Requires": "Robk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBerserkForTrolls.blp" + }, + "Sbsk": { + "Requires": "Robk", + "skinType": "ability", + "UnitSkinID": "otbk" + }, + "Arbr": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Orc\\ReinforcedTrollBurrow\\ReinforcedTrollBurrowTarget.mdl" + }, + "Aast": { + "Requires": "Rowt", + "Requiresamount": "2", + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAncestralSpirit.blp", + "Casterart": "Abilities\\Spells\\Orc\\AncestralSpirit\\AncestralSpiritCaster.mdl", + "Targetart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "Adch": { + "Requires": "Rowt", + "Requiresamount": "1", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDisenchant.blp", + "Targetart": "Abilities\\Spells\\Orc\\Disenchant\\DisenchantSpecialArt.mdl", + "Targetattach": "head", + "Effectsound": "Disenchant" + }, + "Adcn": { + "Requires": "Rowt", + "Requiresamount": "1", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDisenchant.blp", + "Targetart": "Abilities\\Spells\\Orc\\Disenchant\\DisenchantSpecialArt.mdl", + "Targetattach": "head", + "Effectsound": "Disenchant" + }, + "Acpf": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "corporealform", + "Unorder": "uncorporealform", + "skinType": "ability", + "UnitSkinID": "ospw", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritwalker.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNEtherealFormOn.blp", + "Casterart": "Abilities\\Spells\\Orc\\EtherealForm\\SpiritWalkerChange.mdl", + "Casterattach": "chest", + "Effectsound": "SpiritwalkerMorph" + }, + "Aetf": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "etherealform", + "Unorder": "unetherealform", + "skinType": "ability", + "UnitSkinID": "ospm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEtherealFormOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSpiritwalker.blp", + "Casterart": "Abilities\\Spells\\Orc\\EtherealForm\\SpiritWalkerChange.mdl", + "Casterattach": "chest", + "Effectsound": "SpiritwalkerMorph" + }, + "Aspl": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "spiritlink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritLink.blp", + "Targetart": "Abilities\\Spells\\Orc\\SpiritLink\\SpiritLinkZapTarget.mdl", + "Casterart": "Abilities\\Spells\\Orc\\SpiritLink\\SpiritLinkZapTarget.mdl", + "LightningEffect": "SPLK" + }, + "Apak": { + "Requires": "Ropm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aliq": { + "Buttonpos": "1,2", + "Requires": "Rolf", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNLiquidFire.blp" + }, + "Mliq": { + "Missilespeed": "900", + "skinType": "ability", + "Missileart": "Abilities\\Spells\\Orc\\LiquidFire\\BatRiderMissile.mdl", + "Missilearc": "0.35" + }, + "Auco": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "unstableconcoction", + "Orderon": "unstableconcoctionon", + "Orderoff": "unstableconcoctionoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnstableConcoction.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUnstableConcoction.blp" + }, + "AObu": { + "Buttonpos": "0,2", + "Order": "orcbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBasicStruct.blp" + }, + "AOhw": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "healingwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Targetart": "Abilities\\Spells\\Orc\\HealingWave\\HealingWaveTarget.mdl", + "Animnames": "spell,throw", + "LightningEffect": "HWPB,HWSB" + }, + "AOhx": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "hex", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "AOsw": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "ward", + "skinType": "ability", + "UnitSkinID": "osp1,osp2,osp3,osp3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp" + }, + "AOvd": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "voodoo", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBigBadVoodooSpell.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBigBadVoodooSpell.blp", + "Animnames": "stand,channel" + }, + "Awfb": { + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Animnames": "spell,throw" + }, + "Acha": { + "Requires": "Roch", + "skinType": "ability" + }, + "Achl": { + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "ncpn" + }, + "Sca1": { + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nchg" + }, + "Sca2": { + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nchr" + }, + "Sca3": { + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nchw" + }, + "Sca4": { + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "nckb" + }, + "Sca5": { + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "ncpn" + }, + "Sca6": { + "Requires": "Roch", + "skinType": "ability", + "UnitSkinID": "Opgh" + }, + "Abtl": { + "Buttonpos": "0,2", + "Order": "battlestations", + "skinType": "ability", + "UnitSkinID": "opeo", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleStations.blp", + "Effectsound": "BurrowBattleStations" + }, + "Astd": { + "Buttonpos": "1,2", + "Order": "standdown", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBacktoWork.blp" + }, + "Aens": { + "Buttonpos": "0,2", + "Requires": "Roen", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "ensnare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Missileart": "Abilities\\Spells\\Orc\\Ensnare\\EnsnareMissile.mdl" + }, + "Awar": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSmash.blp", + "Animnames": "slam" + }, + "Adev": { + "Buttonpos": "0,2", + "Order": "devour", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevour.blp", + "Specialart": "Abilities\\Spells\\Orc\\Devour\\DevourEffectArt.mdl", + "Targetattach": "head,mount" + }, + "Aprg": { + "Buttonpos": "0,2", + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Specialattach": "origin" + }, + "Apg2": { + "Buttonpos": "0,2", + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Specialattach": "origin" + }, + "Alsh": { + "Buttonpos": "1,2", + "Requires": "Rost", + "Order": "lightningshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp" + }, + "Ablo": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Requires": "Rost", + "Requiresamount": "2", + "Order": "bloodlust", + "OrderOn": "bloodluston", + "OrderOff": "bloodlustoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "Aeye": { + "Buttonpos": "0,2", + "Order": "evileye", + "skinType": "ability", + "UnitSkinID": "oeye", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp" + }, + "Asta": { + "Buttonpos": "1,2", + "Requires": "Rowd", + "Order": "stasistrap", + "skinType": "ability", + "UnitSkinID": "otot", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStasisTrap.blp" + }, + "Bsta": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNStasisTrap.blp", + "Targetart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderclapTarget.mdl", + "Targetattach": "overhead" + }, + "Ahwd": { + "Buttonpos": "2,2", + "Requires": "Rowd", + "Requiresamount": "2", + "Order": "healingward", + "skinType": "ability", + "UnitSkinID": "ohwd", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "Aoar": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "Aven": { + "Buttonpos": "0,2", + "Requires": "Rovs", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEnvenomedSpear.blp" + }, + "Apoi": { + "Buttonpos": "0,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPoisonSting.blp", + "Missileart": "Abilities\\Weapons\\PoisonSting\\PoisonStingMissile.mdl" + }, + "Apo2": { + "Buttonpos": "0,0", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPoisonSting.blp", + "Missileart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenomMissile.mdl" + }, + "BIpb": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfVenom.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "BIpd": { + "Spelldetail": "2", + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfVenom.blp", + "Targetart": "Abilities\\Weapons\\PoisonSting\\PoisonStingTarget.mdl" + }, + "Anit": { + "Requires": "Ronv", + "skinType": "ability" + }, + "Asal": { + "Requires": "Ropg", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPillage.blp" + }, + "Aspi": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Orc\\SpikeBarrier\\SpikeBarrier.mdl" + }, + "Aakb": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrum.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "AOwk": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "windwalk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Effectsound": "WindWalk" + }, + "AOmi": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1000", + "Order": "mirrorimage", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMirrorImage.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMirrorImage.blp", + "Targetart": "Abilities\\Spells\\Other\\Levelup\\LevelupCaster.mdl", + "Specialart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageCaster.mdl", + "Missileart": "Abilities\\Spells\\Orc\\MirrorImage\\MirrorImageMissile.mdl" + }, + "AOcr": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCriticalStrike.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCriticalStrike.blp" + }, + "AOww": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "whirlwind", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWhirlwind.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWhirlwind.blp" + }, + "AOcl": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1500", + "Order": "chainlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Missileart": "Abilities\\Spells\\Orc\\LightningBolt\\LightningBoltMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "Animnames": "spell,chain", + "LightningEffect": "CLPB,CLSB" + }, + "AOfs": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "farsight", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFarSight.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFarSight.blp" + }, + "AOeq": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "earthquake", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Animnames": "spell,looping" + }, + "AOsh": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "AOae": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCommand.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "AOre": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "AOsf": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "osw1,osw2,osw3,osw3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AOws": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "spell,slam" + }, + "BOws": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp" + }, + "Aobs": { + "Buttonpos": "0,2", + "Requires": "Robs", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBerserk.blp" + }, + "Aobk": { + "Buttonpos": "1,2", + "Requires": "Robk", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHeadHunterBerserker.blp" + }, + "Aorb": { + "Buttonpos": "3,2", + "Requires": "Rorb", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReinforcedBurrows.blp" + }, + "Aosp": { + "Buttonpos": "3,2", + "Requires": "Rosp", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSpikedBarricades.blp,ReplaceableTextures\\PassiveButtons\\PASBTNImprovedSpikedBarricades.blp,ReplaceableTextures\\PassiveButtons\\PASBTNAdvancedSpikedBarricades.blp" + }, + "Aoth": { + "Buttonpos": "0,2", + "Requires": "icon only, orc, Aeth, unused", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNInvisibility.blp" + }, + "Aotr": { + "Buttonpos": "3,2", + "Requires": "Rotr", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNRegenerate.blp" + }, + "Avng": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "Vengeance", + "Orderon": "Vengeanceon", + "Orderoff": "Vengeanceoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAvengingWatcherOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAvengingWatcherOff.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Amfl": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "manaflareon", + "Unorder": "manaflareoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaFlare.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNManaFlareOff.blp" + }, + "Apsh": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Orderon": "phaseshifton", + "Orderoff": "phaseshiftoff", + "Order": "phaseshift", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPhaseShiftOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNPhaseShiftOff.blp", + "Effectsound": "ShadowMeld", + "Specialart": "Abilities\\Spells\\NightElf\\FaerieDragonInvis\\FaerieDragon_Invis.mdl" + }, + "Aetl": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "Asp1": { + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl", + "Targetattachcount": "1", + "Targetattach": "sprite,first", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl", + "Missilearc": "0.05" + }, + "Asp2": { + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl", + "Targetattachcount": "2", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl", + "Missilearc": "0.05" + }, + "Asp3": { + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl", + "Targetattachcount": "3", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl", + "Missilearc": "0.05" + }, + "Asp4": { + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl", + "Targetattachcount": "4", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Targetattach3": "sprite,fourth", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl", + "Missilearc": "0.05" + }, + "Asp5": { + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl", + "Targetattachcount": "5", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Targetattach3": "sprite,fourth", + "Targetattach4": "sprite,fifth", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl", + "Missilearc": "0.05" + }, + "Asp6": { + "Missilespeed": "1400", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs6.mdl", + "Targetattachcount": "6", + "Targetattach": "sprite,first", + "Targetattach1": "sprite,second", + "Targetattach2": "sprite,third", + "Targetattach3": "sprite,fourth", + "Targetattach4": "sprite,fifth", + "Targetattach5": "sprite,sixth", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs1.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs2.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs3.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs4.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs5.mdl,Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceOrbs6.mdl", + "Missilearc": "0.05" + }, + "AEbu": { + "Buttonpos": "0,2", + "Order": "nightelfbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfBuild.blp" + }, + "Agra": { + "Buttonpos": "1,2", + "Order": "grabtree", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrabTree.blp", + "Animnames": "spell,eattree" + }, + "Assk": { + "Requires": "Rehs", + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHardenedSkin.blp" + }, + "Arsk": { + "Buttonpos": "3,2", + "Requires": "Rers", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNResistantSkin.blp" + }, + "Atau": { + "Buttonpos": "0,2", + "Order": "taunt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTaunt.blp", + "Casterart": "Abilities\\Spells\\NightElf\\Taunt\\TauntCaster.mdl" + }, + "Btau": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNTaunt.blp" + }, + "AEbl": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "blink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlink.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBlink.blp", + "Areaeffectart": "Abilities\\Spells\\NightElf\\Blink\\BlinkTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Blink\\BlinkCaster.mdl", + "Animnames": "spell,throw" + }, + "AEfk": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "fanofknives", + "Missilespeed": "700", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFanOfKnives.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFanOfKnives.blp", + "Effectart": "Abilities\\Spells\\NightElf\\FanOfKnives\\FanOfKnivesCaster.mdl", + "Missileart": "Abilities\\Spells\\NightElf\\FanOfKnives\\FanOfKnivesMissile.mdl", + "MissileArc": "0.10", + "Animnames": "spell,slam" + }, + "AEsh": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "1200", + "MissileHoming": "1", + "Order": "shadowstrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Missileart": "Abilities\\Spells\\NightElf\\shadowstrike\\ShadowStrikeMissile.mdl", + "MissileArc": "0.0" + }, + "BEsi": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Targetart": "Abilities\\Spells\\NightElf\\shadowstrike\\shadowstrike.mdl", + "Targetattach": "overhead" + }, + "AEsv": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "700", + "Order": "spiritofvengeance", + "skinType": "ability", + "UnitSkinID": "espv,espv,espv,espv", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritOfVengeance.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSpiritOfVengeance.blp", + "Missileart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceBirthMissile.mdl", + "MissileArc": "0.50", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Slo2": { + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "UnitSkinID": "ewsp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "Amgl": { + "Requires": "Remg", + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUpgradeMoonGlaive.blp", + "Casterart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceBirthMissile.mdl", + "Casterattach": "weapon,right" + }, + "Amgi": { + "skinType": "ability" + }, + "Amgr": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUpgradeMoonGlaive.blp", + "Casterart": "Abilities\\Spells\\NightElf\\SpiritOfVengeance\\SpiritOfVengeanceBirthMissile.mdl", + "Casterattach": "weapon,right" + }, + "Aspo": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSlowPoison.blp" + }, + "Ashm": { + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmbush.blp", + "Effectsound": "ShadowMeld" + }, + "AIhm": { + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloak.blp", + "Effectsound": "ShadowMeld" + }, + "Ahid": { + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmbush.blp", + "Effectsound": "ShadowMeld" + }, + "Sshm": { + "Buttonpos": "2,1", + "Order": "ambush", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmbush.blp", + "Effectsound": "ShadowMeld" + }, + "Aesn": { + "Requires": "Resc", + "Buttonpos": "0,2", + "MissileSpeed": "1500", + "Order": "sentinel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentinel.blp", + "Missileart": "Units\\NightElf\\Owl\\Owl.mdl" + }, + "Aesr": { + "Buttonpos": "0,2", + "MissileSpeed": "1500", + "Order": "sentinel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentinel.blp", + "Missileart": "Units\\NightElf\\Owl\\Owl.mdl" + }, + "XEsn": { + "skinType": "effect", + "Targetart": "Units\\NightElf\\Owl\\Owl.mdl", + "Targetattach": "overhead" + }, + "Aeat": { + "Buttonpos": "0,2", + "Order": "eattree", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEatTree.blp", + "Specialart": "Abilities\\Spells\\NightElf\\EatTree\\EatTreeSprite.mdl", + "Specialattach": "eattree" + }, + "Ambt": { + "Buttonpos": "0,0", + "Unbuttonpos": "0,0", + "Order": "recharge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaRechargeOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNManaRechargeOff.blp", + "Effectart": "Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\MoonWellTarget.mdl,Abilities\\Spells\\NightElf\\MoonWell\\CorruptedMoonWellTarget.mdl", + "Casterart": "Abilities\\Spells\\NightElf\\MoonWell\\MoonWellCasterArt.mdl", + "Specialart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Awha": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TargetArtLumber\\TargetArtLumber.mdl", + "Targetattach": "origin", + "Effectsoundlooped": "WispHarvestLoop" + }, + "Awh2": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TargetArtLumber\\TargetArtLumber.mdl", + "Targetattach": "origin", + "Effectsoundlooped": "WispHarvestLoop" + }, + "Adtn": { + "Buttonpos": "1,2", + "Order": "detonate", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWispSplode.blp", + "Specialart": "Units\\NightElf\\Wisp\\WispExplode.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Awhe": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Requires": "Rewh", + "Order": "wispheal", + "Orderon": "wisphealon", + "Orderoff": "wisphealoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWispHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWispHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Aent": { + "Buttonpos": "1,2", + "Order": "entangle", + "skinType": "ability", + "UnitSkinID": "egol", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoldMine.blp", + "Casterart": "Abilities\\Spells\\NightElf\\EntangleMine\\Roots.mdl", + "Casterattach": "origin" + }, + "Aenc": { + "Buttonpos": "1,2", + "Unbuttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUnload.blp", + "Effectsound": "WispLoad" + }, + "Aroo": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "root", + "Unorder": "unroot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRoot.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUproot.blp" + }, + "Abrf": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Requires": "Redc", + "Requiresamount": "2", + "Order": "bearform", + "Unorder": "unbearform", + "skinType": "ability", + "UnitSkinID": "edcm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBearForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDruidOfTheClaw.blp" + }, + "Arav": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Requires": "Redt", + "Order": "ravenform", + "Unorder": "unravenform", + "skinType": "ability", + "UnitSkinID": "edtm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDruidOfTheTalon.blp" + }, + "Aadm": { + "Requires": "Resi", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Amim": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMagicImmunity.blp" + }, + "Ault": { + "Requires": "Reuv", + "skinType": "ability" + }, + "Aegr": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNElunesBlessing.blp" + }, + "Acoa": { + "Buttonpos": "0,2", + "Requires": "ehip", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp", + "Effectsound": "HippogryphTaming" + }, + "Aco2": { + "Requires": "ehip", + "Buttonpos": "0,2", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp" + }, + "Acoh": { + "Buttonpos": "0,2", + "Requires": "ehip", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp", + "Effectsound": "HippogryphTaming" + }, + "Aco3": { + "Buttonpos": "0,2", + "Requires": "ehip", + "skinType": "ability", + "UnitSkinID": "ehpr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHippogriffRider.blp", + "Effectsound": "HippogryphTaming" + }, + "Adec": { + "Buttonpos": "0,2", + "Order": "decouple", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcher.blp", + "Effectsound": "HippogryphTaming" + }, + "Acor": { + "Buttonpos": "0,2", + "Requires": "Recb", + "Missilespeed": "1000", + "Order": "corrosivebreath", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCorrosiveBreath.blp", + "Missileart": "Abilities\\Weapons\\ChimaeraAcidMissile\\ChimaeraAcidMissile.mdl" + }, + "AEmb": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "AEim": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "immolation", + "Unorder": "unimmolation", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp" + }, + "AEev": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEvasion.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEvasion.blp" + }, + "AEme": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "metamorphosis", + "skinType": "ability", + "UnitSkinID": "Edmm,Edmm,Edmm,Edmm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "AEIl": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "metamorphosis", + "skinType": "ability", + "UnitSkinID": "Eilm,Eilm,Eilm,Eilm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "AEvi": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "metamorphosis", + "skinType": "ability", + "UnitSkinID": "Eevm,Eevm,Eevm,Eevm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMetamorphosis.blp" + }, + "AEer": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "entanglingroots", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp" + }, + "AEfn": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "forceofnature", + "skinType": "ability", + "UnitSkinID": "efon,efon,efon,efon", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp" + }, + "AEah": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThorns.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThorns.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ThornsAura\\ThornsAura.mdl", + "Targetattach": "origin" + }, + "AEtq": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "tranquility", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTranquility.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTranquility.blp", + "Animnames": "stand,channel" + }, + "AEst": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "MissileSpeed": "650", + "Order": "scout", + "skinType": "ability", + "UnitSkinID": "nowl,now2,now3,now3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScout.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNScout.blp", + "Missileart": "Units\\NightElf\\Owl\\Owl.mdl" + }, + "AHfa": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "flamingarrows", + "Unorder": "unflamingarrows", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrows.blp", + "Missileart": "Abilities\\Weapons\\SearingArrow\\SearingArrowMissile.mdl", + "Animnames": "attack" + }, + "AEar": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNTrueShot.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TrueshotAura\\TrueshotAura.mdl", + "Targetattach": "origin" + }, + "AEsf": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "starfall", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Animnames": "spell,looping" + }, + "AEsb": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "starfall", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStarfall.blp", + "Animnames": "spell,looping" + }, + "Afae": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "order": "faeriefire", + "orderon": "faeriefireon", + "orderoff": "faeriefireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOff.blp" + }, + "Afa2": { + "Requires": "Reec", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "order": "faeriefire", + "orderon": "faeriefireon", + "orderoff": "faeriefireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOff.blp" + }, + "Acyc": { + "Buttonpos": "1,2", + "Requires": "Redt", + "Requiresamount": "2", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "Arej": { + "Buttonpos": "1,2", + "Requires": "Redc", + "order": "rejuvination", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp" + }, + "Aren": { + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "renew", + "Orderon": "renewon", + "Orderoff": "renewoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWispHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWispHealOff.blp", + "Effectsoundlooped": "WispRenewLoop", + "Animnames": "stand,work" + }, + "Aroa": { + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "Ara2": { + "Requires": "Reeb", + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "Alit": { + "Missilespeed": "1500", + "skinType": "ability", + "Missileart": "Abilities\\Weapons\\ChimaeraLightningMissile\\ChimaeraLightningMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "CHIM" + }, + "Atol": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\NightElf\\TreeofLifeUpgrade\\TreeofLifeUpgradeTargetArt.mdl,Abilities\\Spells\\NightElf\\TreeofLifeUpgrade\\TreeofLifeUpgradeTargetArtHand.mdl,Abilities\\Spells\\NightElf\\TreeofLifeUpgrade\\TreeofLifeUpgradeTargetArtHand.mdl", + "Targetattachcount": "3", + "Targetattach": "origin", + "Targetattach1": "hand,left", + "Targetattach2": "hand,right" + }, + "Aeib": { + "Buttonpos": "2,2", + "Requires": "Reib", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImprovedBows.blp" + }, + "Aemk": { + "Buttonpos": "3,2", + "Requires": "Remk", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNMarksmanship.blp" + }, + "Aews": { + "Buttonpos": "1,0", + "Requires": "Rews", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNWellSpring.blp" + }, + "Arpb": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "replenish", + "Orderon": "replenishon", + "Orderoff": "replenishoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOn.blp", + "Specialart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCasterOverhead.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOff.blp", + "Specialattach": "overhead" + }, + "Arpl": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "replenishlife", + "Orderon": "replenishlifeon", + "Orderoff": "replenishlifeoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishHealthOn.blp", + "Specialart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCasterOverhead.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishHealth\\ReplenishHealthCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishHealthOff.blp", + "Specialattach": "overhead" + }, + "Arpm": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "replenishmana", + "Orderon": "replenishmanaon", + "Orderoff": "replenishmanaoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOn.blp", + "Specialart": "Abilities\\Spells\\Undead\\ReplenishMana\\ReplenishManaCasterOverhead.mdl", + "Casterattach": "origin", + "Effectsound": "SpiritTouch", + "Targetart": "Abilities\\Spells\\Undead\\ReplenishMana\\SpiritTouchTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishMana\\ReplenishManaCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOff.blp", + "Specialattach": "overhead" + }, + "Aexh": { + "Buttonpos": "3,2", + "Requires": "Ruex", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNExhumeCorpses.blp" + }, + "Amb2": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "recharge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOn.blp", + "Specialart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterart": "Abilities\\Spells\\Undead\\ReplenishMana\\ReplenishManaCaster.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReplenishManaOff.blp" + }, + "Aave": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "sphinxform", + "Unorder": "unsphinxform", + "Requires": "Rusp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDestroyer.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNObsidianStatue.blp" + }, + "Afak": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDeathOn.blp", + "Animnames": "attack", + "Missileart": "Abilities\\Spells\\Undead\\OrbOfDeath\\AnnihilationMissile.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDeathOff.blp" + }, + "Advm": { + "Buttonpos": "0,2", + "Missilespeed": "1200", + "MissileHoming": "1", + "skinType": "ability", + "Missilearc": "0.10", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevourMagic.blp", + "Missileart": "Abilities\\Spells\\Undead\\DevourMagic\\DevourMagicBirthMissile.mdl", + "Specialart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "Aabr": { + "Buttonpos": "2,2", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\RegenerationAura\\ObsidianRegenAura.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNRegenerationAura.blp", + "Targetattach": "origin" + }, + "Aabs": { + "Buttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "absorbmana", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAbsorbMagic.blp", + "Missileart": "Abilities\\Spells\\Undead\\AbsorbMana\\AbsorbManaBirthMissile.mdl" + }, + "AUbu": { + "Buttonpos": "0,2", + "Order": "undeadbuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScourgeBuild.blp" + }, + "Abur": { + "Requires": "Rubu", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "Abu2": { + "Requires": "Rubu", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "Abu3": { + "Requires": "Rubu", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "AUim": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "impale", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Effectsound": "ImpaleCast", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Specialart": "Abilities\\Spells\\Undead\\Impale\\ImpaleMissTarget.mdl" + }, + "AUts": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThornShield.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp" + }, + "AUcb": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "Carrionscarabs", + "Orderon": "Carrionscarabson", + "Orderoff": "Carrionscarabsoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabs.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCarrionScarabsOff.blp" + }, + "AUls": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "Locustswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Effectsoundlooped": "LocustSwarmLoop" + }, + "BUlo": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp" + }, + "Amtc": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Atru": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNShadeTrueSight.blp" + }, + "Aaha": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Effectsound": "AcolyteMining", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Ahrl": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Auns": { + "Buttonpos": "1,2", + "Order": "unsummon", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnsummonBuilding.blp" + }, + "Abgm": { + "skinType": "ability", + "Effectart": "Abilities\\Spells\\Undead\\UndeadMine\\UndeadMineCircle.mdl", + "Effectsoundlooped": "MineDomeLoop" + }, + "Agyd": { + "SpecialArt": "Abilities\\Spells\\Undead\\Graveyard\\GraveMarker.mdl", + "skinType": "ability" + }, + "Alam": { + "Buttonpos": "3,2", + "Requires": "usap", + "Order": "sacrifice", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrifice.blp" + }, + "Asac": { + "Buttonpos": "0,0", + "Order": "sacrifice", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrifice.blp" + }, + "Acan": { + "Requires": "Ruac", + "Buttonpos": "0,2", + "Order": "cannibalize", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannibalize.blp", + "Animnames": "stand,channel" + }, + "Acn2": { + "Requires": "Ruac", + "Buttonpos": "0,2", + "Order": "cannibalize", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannibalize.blp", + "Animnames": "stand,channel" + }, + "Aspa": { + "skinType": "ability" + }, + "Aweb": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Requires": "Ruwb", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "web", + "Orderon": "webon", + "Orderoff": "weboff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWebOn.blp", + "Missileart": "Abilities\\Spells\\Undead\\Web\\Webmissile.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWebOff.blp" + }, + "Astn": { + "Requires": "Rusf", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "stoneform", + "Unorder": "unstoneform", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStoneForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNGargoyle.blp" + }, + "Amel": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "loadcorpse", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadLoadOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUndeadLoadOff.blp" + }, + "Amed": { + "Buttonpos": "1,2", + "Order": "unloadcorpse", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadUnLoad.blp" + }, + "Aapl": { + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap1": { + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap2": { + "Buttonpos": "0,2", + "Requires": "Rupc", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap3": { + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap4": { + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Aap5": { + "Buttonpos": "1,2", + "Requires": "Rupc", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\PlagueCloud\\PlagueCloudCaster.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Apts": { + "Buttonpos": "2,2", + "Requires": "Rupc", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNPlagueCloud.blp" + }, + "Afrb": { + "skinType": "ability", + "Missileart": "Abilities\\Weapons\\FrostWyrmMissile\\FrostWyrmMissile.mdl" + }, + "Afra": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFrost.blp", + "Missileart": "Abilities\\Weapons\\ZigguratFrostMissile\\ZigguratFrostMissile.mdl" + }, + "Afr2": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFrost.blp", + "Missileart": "Abilities\\Weapons\\ZigguratFrostMissile\\ZigguratFrostMissile.mdl" + }, + "Afrz": { + "Buttonpos": "1,2", + "Requires": "Rufb", + "Missilespeed": "900", + "MissileHoming": "1", + "Order": "freezingbreath", + "skinType": "ability", + "Missilearc": "0.0", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFreezingBreath.blp", + "Missileart": "Abilities\\Spells\\Undead\\FreezingBreath\\FreezingBreathMissile.mdl" + }, + "Arai": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "raisedead", + "Orderon": "raisedeadon", + "Orderoff": "raisedeadoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOn.blp", + "Effectart": "Abilities\\Spells\\Undead\\RaiseSkeletonWarrior\\RaiseSkeleton.mdl", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOff.blp" + }, + "Auhf": { + "Buttonpos": "1,2", + "Requires": "Rune", + "Order": "unholyfrenzy", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "Suhf": { + "Buttonpos": "1,2", + "Order": "unholyfrenzy", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "Auuf": { + "Buttonpos": "2,2", + "Requires": "Rune", + "Requiresamount": "2", + "Order": "unholyfrenzyaoe", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\UnholyFrenzyAOE\\UnholyFrenzyAOETarget.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp", + "Targetattach": "origin" + }, + "Acrs": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "curse", + "Orderon": "curseon", + "Orderoff": "curseoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCurseOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCurseOff.blp" + }, + "Aams": { + "Buttonpos": "1,2", + "Requires": "Ruba", + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Aam2": { + "Buttonpos": "1,2", + "Requires": "Ruba", + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "Apos": { + "Buttonpos": "2,2", + "Requires": "Ruba", + "Requiresamount": "2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "possession", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp", + "Missileart": "Abilities\\Spells\\Undead\\Possession\\PossessionMissile.mdl" + }, + "Aps2": { + "Buttonpos": "2,2", + "Requires": "Ruba", + "Requiresamount": "2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "possession", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp", + "Missileart": "Abilities\\Spells\\Undead\\Possession\\PossessionMissile.mdl", + "Animnames": "spell,looping", + "LightningEffect": "POSS" + }, + "AUdc": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1100", + "MissileHoming": "1", + "Order": "deathcoil", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathCoil.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathCoil.blp", + "Specialart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl", + "Missileart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilMissile.mdl" + }, + "AUdp": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "deathpact", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Targetattach": "origin", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Casterart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactCaster.mdl" + }, + "BUdp": { + "skinType": "buff", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactCaster.mdl", + "Targetattach": "origin", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp" + }, + "AUan": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "AUa2": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "AUcs": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCarrionSwarm.blp", + "Animnames": "attack,slam", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCarrionSwarm.blp", + "Specialart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmDamage.mdl", + "Missileart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmMissile.mdl" + }, + "AUsl": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "sleep", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "AUav": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAura.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNVampiricAura.blp", + "Targetattach": "origin", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNVampiricAura.blp" + }, + "AUfn": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "frostnova", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlacier.blp", + "Effectart": "Abilities\\Spells\\Undead\\FrostNova\\FrostNovaTarget.mdl", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNGlacier.blp" + }, + "AUfa": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "frostarmor", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp" + }, + "AUfu": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "frostarmor", + "Orderon": "frostarmoron", + "Orderoff": "frostarmoroff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOff.blp" + }, + "AUdr": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "darkritual", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\DarkRitual\\DarkRitualTarget.mdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkRitual.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDarkRitual.blp", + "Casterart": "Abilities\\Spells\\Undead\\DarkRitual\\DarkRitualCaster.mdl" + }, + "AUdd": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "deathanddecay", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp", + "Animnames": "stand,channel", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp" + }, + "Acri": { + "Requires": "Rune", + "Requiresamount": "2", + "Buttonpos": "2,2", + "order": "cripple", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "Scri": { + "Buttonpos": "2,2", + "order": "cripple", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "Arst": { + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "restoration", + "Orderon": "restorationon", + "Orderoff": "restorationoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRepairOn.blp", + "Animnames": "stand,work", + "Effectsoundlooped": "AcolyteRestoreLoop", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRepairOff.blp" + }, + "AUau": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Undead\\UnholyAura\\UnholyAura.mdl", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUnholyAura.blp", + "Targetattach": "origin", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNUnholyAura.blp" + }, + "AUin": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "inferno", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp" + }, + "Afrc": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFrost.blp" + }, + "Augf": { + "Buttonpos": "1,2", + "Requires": "Rugf", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGhoulFrenzy.blp" + }, + "Augh": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNShade.blp" + }, + "Ausm": { + "Buttonpos": "3,2", + "Requires": "Rusm", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSkeletonMage.blp" + }, + "ANic": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "order": "incinerate", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNIncinerate.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNIncinerate.blp", + "Missileart": "Abilities\\Weapons\\LordofFlameMissile\\LordofFlameMissile.mdl", + "Missilearc": "0.35" + }, + "ANia": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Researchbuttonpos": "2,0", + "order": "incineratearrow", + "orderon": "incineratearrowon", + "orderoff": "incineratearrowon", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIncinerateOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNIncinerateOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNIncinerate.blp", + "Missileart": "Abilities\\Weapons\\LordofFlameMissile\\LordofFlameMissile.mdl", + "Missilearc": "0.35" + }, + "ANso": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "order": "soulburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSoulBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSoulBurn.blp" + }, + "ANlm": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "order": "slimemonster", + "skinType": "ability", + "UnitSkinID": "nlv1,nlv2,nlv3,nlv3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLavaSpawn.blp" + }, + "ANvc": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "order": "volcano", + "skinType": "ability", + "UnitSkinID": "Volc,Volc,Volc,Volc", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVolcano.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNVolcano.blp", + "Animnames": "stand,channel" + }, + "ANsy": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANs1": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANs2": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANs3": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "summonfactory", + "skinType": "ability", + "UnitSkinID": "nfac,nfa1,nfa2,nfa2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp", + "Missileart": "Units\\Creeps\\HeroTinkerFactory\\HeroTinkerFactoryMissle.mdl", + "Missilearc": "0.35", + "Animnames": "spell,Slam" + }, + "ANcs": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANc1": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANc2": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANc3": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "clusterrockets", + "Missilespeed": "700", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNClusterRockets.blp", + "Missileart": "Abilities\\Spells\\Other\\TinkerRocket\\TinkerRocketMissile.mdl", + "Missilearc": "0.2", + "Animnamescount": "4", + "Animnames": "spell,one", + "Animnames1": "spell,two", + "Animnames2": "spell,three", + "Animnames3": "spell,three" + }, + "ANeg": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "engineeringupgrade", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\PASBTNEngineeringUpgrade.blp", + "Art:hd": "ReplaceableTextures\\PassiveButtons\\PASBTNEngineeringUpgrade.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEngineeringUpgrade.blp" + }, + "ANrg": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANg1": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANg2": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANg3": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "robogoblin", + "Unorder": "unrobogoblin", + "skinType": "ability", + "UnitSkinID": "Nrob,Nrob,Nrob,Nrob", + "Art": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHeroTinker.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNROBOGOBLIN.blp" + }, + "ANde": { + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANd1": { + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANd2": { + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANd3": { + "Buttonpos": "1,1", + "Order": "demolish", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDemolish.blp" + }, + "ANfy": { + "Buttonpos": "0,2", + "skinType": "ability", + "UnitSkinID": "ncgb", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "ANf1": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "ANf2": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "ANf3": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPocketFactory.blp" + }, + "ANhs": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "700", + "Order": "healingspray", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingSpray.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHealingSpray.blp", + "Missileart": "Abilities\\Spells\\Other\\HealingSpray\\HealBottleMissile.mdl", + "Missilearc": "0.4", + "Animnames": "spell,looping" + }, + "ANab": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "700", + "MissileHoming": "1", + "order": "acidbomb", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAcidBomb.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAcidBomb.blp", + "Missileart": "Abilities\\Spells\\Other\\AcidBomb\\BottleMissile.mdl", + "Missilearc": "0.4", + "Animnames": "Attack,two,Spell" + }, + "ANcr": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "order": "chemicalrage", + "skinType": "ability", + "UnitSkinID": "Nalm,Nal2,Nal3,Nal3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChemicalRage.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNChemicalRage.blp" + }, + "ANtm": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "700", + "MissileHoming": "1", + "order": "transmute", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Missileart": "Abilities\\Spells\\Other\\Transmute\\GoldBottleMissile.mdl", + "Missilearc": "0.4", + "Animnames": "Attack,two,Spell" + }, + "AIgf": { + "skinType": "ability", + "UnitSkinID": "Rgfo", + "Effectsound": "PowerupSound" + }, + "AIgu": { + "skinType": "ability", + "UnitSkinID": "Rguv,Reuv", + "Effectsound": "PowerupSound" + }, + "Aasl": { + "skinType": "ability" + }, + "Atdg": { + "skinType": "ability" + }, + "Atsp": { + "skinType": "ability" + }, + "Atwa": { + "skinType": "ability" + }, + "Asod": { + "skinType": "ability" + }, + "ANak": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNQuillSpray.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNQuillSprayOff.blp", + "Missileart": "Abilities\\Weapons\\QuillSprayMissile\\QuillSprayMissile.mdl" + }, + "ANbl": { + "Buttonpos": "0,2", + "Order": "blink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBearBlink.blp", + "Areaeffectart": "Abilities\\Spells\\NightElf\\Blink\\BlinkTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Blink\\BlinkCaster.mdl", + "Animnames": "spell,throw" + }, + "Abu5": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "burrow", + "Unorder": "unburrow", + "skinType": "ability", + "UnitSkinID": "nbnb", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendUnBurrow.blp" + }, + "ACpa": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1900", + "Orderon": "parasiteon", + "Orderoff": "parasiteoff", + "Order": "parasite", + "skinType": "ability", + "UnitSkinID": "nvdl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNParasiteOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNParasiteOff.blp", + "Missileart": "Abilities\\Spells\\Other\\Parasite\\ParasiteMissile.mdl", + "Missilehoming": "1" + }, + "ACsm": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaDrain.blp", + "Effectsoundlooped": "SiphonManaLoop", + "Animnames": "stand,channel", + "LightningEffect": "DRAB,DRAL,DRAM" + }, + "ACbn": { + "Buttonpos": "1,2", + "Order": "banish", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBanish.blp" + }, + "ACde": { + "Buttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevourMagic.blp", + "Missileart": "Abilities\\Spells\\Undead\\DevourMagic\\DevourMagicBirthMissile.mdl" + }, + "Ache": { + "Buttonpos": "1,2", + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfNeutralization.blp", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "Ansk": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNHardenedSkin.blp" + }, + "ANms": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Orderon": "manashieldon", + "Orderoff": "manashieldoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShieldOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Effectsound": "ManaShieldCastSound" + }, + "ANrf": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "rainoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Animnames": "spell,looping" + }, + "ACrg": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "rainoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFire.blp", + "Animnames": "spell,looping" + }, + "ANfa": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp", + "Missileart": "Abilities\\Spells\\Other\\FrostArrows\\NagaColdArrowMissile.mdl", + "Missilearc": "0.15", + "Animnames": "attack" + }, + "AHca": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNColdArrows.blp", + "Missileart": "Abilities\\Weapons\\ColdArrow\\ColdArrowMissile.mdl", + "Missilearc": "0.15", + "Animnames": "attack" + }, + "ANca": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCleavingAttack.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCleavingAttack.blp", + "Specialart": "Abilities\\Spells\\Other\\Cleave\\CleaveDamageTarget.mdl", + "Specialattach": "chest" + }, + "ACce": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCleavingAttack.blp", + "Specialart": "Abilities\\Spells\\Other\\Cleave\\CleaveDamageTarget.mdl", + "Specialattach": "chest" + }, + "ANht": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "howlofterror", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Casterart": "Abilities\\Spells\\Other\\HowlOfTerror\\HowlCaster.mdl", + "Animnames": "spell,slam" + }, + "Acht": { + "Buttonpos": "0,2", + "Order": "howlofterror", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHowlOfTerror.blp", + "Casterart": "Abilities\\Spells\\Other\\HowlOfTerror\\HowlCaster.mdl", + "Animnames": "spell,slam" + }, + "ANdo": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "doom", + "skinType": "ability", + "UnitSkinID": "nba2,nba2,nba2,nba2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDoom.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDoom.blp" + }, + "ANef": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "elementalfury", + "Missilespeed": "150", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl", + "Missileart": "Units\\Creeps\\FirePandarenBrewmaster\\ChenStormstoutFire_Missile.mdl,Units\\Creeps\\StormPandarenBrewmaster\\ChenStormstoutStorm_Missile.mdl,Units\\Creeps\\EarthPandarenBrewmaster\\ChenStormstoutEarth_Missile.mdl", + "Missilearc": "0.75", + "Effectsound": "StormEarthFireSound", + "Animnames": "spell,throw" + }, + "ANwk": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "windwalk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWindWalkOn.blp", + "Effectsound": "WindWalk" + }, + "ANta": { + "Buttonpos": "0,2", + "Order": "taunt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPandaTaunt.blp", + "Casterart": "Abilities\\Spells\\NightElf\\Taunt\\TauntCaster.mdl" + }, + "ANdr": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp", + "Effectsoundlooped": "DrainLoop", + "Animnames": "spell,channel", + "LightningEffect": "DRAB,DRAL,DRAM" + }, + "ACdr": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLifeDrain.blp", + "Effectsoundlooped": "DrainLoop", + "Animnames": "stand,channel", + "LightningEffect": "DRAB,DRAL,DRAM" + }, + "Aiun": { + "Requires": "Rupm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aion": { + "Requires": "Ropm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aihn": { + "Requires": "Rhpm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "Aien": { + "Requires": "Repm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp" + }, + "ANsg": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "summongrizzly", + "skinType": "ability", + "UnitSkinID": "ngz1,ngz2,ngz3,ngz3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "ANsq": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "summonquillbeast", + "skinType": "ability", + "UnitSkinID": "nqb1,nqb2,nqb3,nqb3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "ANsw": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "summonwareagle", + "skinType": "ability", + "UnitSkinID": "nwe1,nwe2,nwe3,nwe3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWarEagle.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "ANst": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "500", + "Order": "stampede", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Specialart": "Abilities\\Spells\\Other\\Stampede\\StampedeMissileDeath.mdl", + "Missileart": "Abilities\\Spells\\Other\\Stampede\\StampedeMissile.mdl", + "Effectsoundlooped": "StampedeLoop", + "Effectsound": "StampedeCast", + "Animnames": "spell,looping" + }, + "AChx": { + "Buttonpos": "1,2", + "Order": "hex", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "Aenw": { + "Buttonpos": "0,2", + "Order": "entanglingroots", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp" + }, + "AChV": { + "Buttonpos": "0,2", + "Order": "healingwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Targetart": "Abilities\\Spells\\Orc\\HealingWave\\HealingWaveTarget.mdl", + "Animnames": "spell,throw", + "LightningEffect": "HWPB,HWSB" + }, + "ACsi": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "silence", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Effectart": "Abilities\\Spells\\Other\\Silence\\SilenceAreaBirth.mdl" + }, + "ACmf": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "manashield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNneutralManaShieldOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNNeutralManaShield.blp", + "Effectsound": "ManaShieldCastSound" + }, + "ACss": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "1200", + "MissileHoming": "1", + "Order": "shadowstrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShadowStrike.blp", + "Missileart": "Abilities\\Spells\\NightElf\\shadowstrike\\ShadowStrikeMissile.mdl", + "MissileArc": "0.0" + }, + "ACcb": { + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "thunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostBolt.blp", + "Missileart": "Abilities\\Spells\\Other\\FrostBolt\\FrostBoltMissile.mdl", + "Animnames": "spell,throw" + }, + "ACbf": { + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFrost.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFrost\\BreathOfFrostMissile.mdl", + "Animnames": "spell,slam" + }, + "ACbc": { + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireForTheCannon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFireForTheCannon.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireMissile.mdl", + "Targetart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireDamage.mdl", + "Animnames": "spell,slam" + }, + "ACfs": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "flamestrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrike1.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike2.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike.mdl", + "Animnames": "spell,channel" + }, + "ANfs": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "flamestrike", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWallOfFire.blp", + "Effectart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrikeTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\FlameStrike\\FlameStrike1.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike2.mdl,Abilities\\Spells\\Human\\FlameStrike\\FlameStrike.mdl", + "Animnames": "spell,channel" + }, + "ACmp": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "impale", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNImpale.blp", + "Specialart": "Abilities\\Spells\\Undead\\Impale\\ImpaleMissTarget.mdl" + }, + "ANbu": { + "Buttonpos": "0,2", + "Order": "build", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBasicStruct.blp" + }, + "AInv": { + "skinType": "ability" + }, + "ANth": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "Thornyshield", + "Unorder": "Unthornyshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThornShield.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp" + }, + "ANt2": { + "Buttonpos": "2,2", + "Researchbuttonpos": "1,0", + "Order": "Thornyshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThornShield.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNThornShield.blp" + }, + "ANmr": { + "Buttonpos": "0,2", + "Order": "mindrot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "ANpr": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfPreservation.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "ACpv": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNSeaGiantPulverize.blp", + "Animnames": "slam" + }, + "ANss": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellShieldAmulet.blp", + "Casterart": "Abilities\\Spells\\Items\\SpellShieldAmulet\\SpellShieldCaster.mdl", + "Casterattach": "origin" + }, + "ANbf": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireMissile.mdl", + "Animnames": "spell,slam" + }, + "ANdb": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrunkenDodge.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDrunkenDodge.blp" + }, + "ANdh": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "Order": "drunkenhaze", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Missileart": "Abilities\\Spells\\Other\\StrongDrink\\BrewmasterMissile.mdl", + "Missilearc": "0.15" + }, + "ANsi": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "silence", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSilence.blp", + "Effectart": "Abilities\\Spells\\Other\\Silence\\SilenceAreaBirth.mdl" + }, + "ANba": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1050", + "MissileHoming": "1", + "Orderon": "blackarrowon", + "Orderoff": "blackarrowoff", + "Order": "blackarrow", + "skinType": "ability", + "UnitSkinID": "ndr1,ndr2,ndr3,ndr3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp", + "Missileart": "Abilities\\Spells\\Other\\BlackArrow\\BlackArrowMissile.mdl", + "Animnames": "attack" + }, + "ACbk": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1050", + "MissileHoming": "1", + "Orderon": "blackarrowon", + "Orderoff": "blackarrowoff", + "Order": "blackarrow", + "skinType": "ability", + "UnitSkinID": "ndr1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrowOnOff.blp", + "Missileart": "Abilities\\Spells\\Other\\BlackArrow\\BlackArrowMissile.mdl", + "Animnames": "attack" + }, + "ACch": { + "Buttonpos": "3,2", + "Order": "charm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCharm.blp", + "Targetart": "Abilities\\Spells\\Other\\Charm\\CharmTarget.mdl", + "Targetattach": "overhead" + }, + "ANch": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "charm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCharm.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCharm.blp", + "Targetart": "Abilities\\Spells\\Other\\Charm\\CharmTarget.mdl", + "Targetattach": "overhead" + }, + "BNch": { + "skinType": "buff" + }, + "ANmo": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "monsoon", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Animnames": "stand,channel" + }, + "BNmo": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp" + }, + "ACmo": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "monsoon", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Animnames": "stand,channel" + }, + "ANwm": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "wateryminion", + "skinType": "ability", + "UnitSkinID": "ncfs,ntws,nsns,nsns", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "Aslp": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "wateryminion", + "skinType": "ability", + "UnitSkinID": "nlps", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLobstrokkRed.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "ANto": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "tornado", + "skinType": "ability", + "UnitSkinID": "ntor,ntor,ntor,ntor", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNTornado.blp", + "Animnames": "spell,channel" + }, + "XNto": { + "skinType": "effect", + "Effectart": "Abilities\\Spells\\Other\\Tornado\\Tornado.mdl" + }, + "AChw": { + "Buttonpos": "0,2", + "Order": "healingward", + "skinType": "ability", + "UnitSkinID": "ohwd", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "ACr2": { + "Buttonpos": "0,2", + "order": "rejuvination", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp" + }, + "ACmi": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGenericSpellImmunity.blp" + }, + "ACm2": { + "Buttonpos": "1,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGenericSpellImmunity.blp" + }, + "ACm3": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGenericSpellImmunity.blp" + }, + "ACpy": { + "Buttonpos": "2,2", + "Order": "polymorph", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPolymorph.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphTarget.mdl", + "Effectart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphFallingSheepArt.mdl" + }, + "ACps": { + "Buttonpos": "2,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "possession", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPossession.blp", + "Missileart": "Abilities\\Spells\\Undead\\Possession\\PossessionMissile.mdl", + "LightningEffect": "POSS" + }, + "ACpu": { + "Buttonpos": "0,2", + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl" + }, + "Adtg": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNScout.blp" + }, + "ANtr": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNScout.blp" + }, + "Arng": { + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Specialart": "Objects\\Spawnmodels\\Human\\HumanLargeDeathExplode\\HumanLargeDeathExplode.mdl", + "Targetart": "Abilities\\Weapons\\Mortar\\MortarMissile.mdl" + }, + "ANdc": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "darkconversion", + "skinType": "ability", + "UnitSkinID": "nzom,nzom,nzom,nzom", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "SNdc": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "darkconversion", + "skinType": "ability", + "UnitSkinID": "nzom,nzom,nzom,nzom", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "ANsl": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "soulpreservation", + "skinType": "ability", + "UnitSkinID": "nzom,nzom,nzom,nzom", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "SNin": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "inferno", + "skinType": "ability", + "UnitSkinID": "ninf,ninf,ninf,ninf", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl" + }, + "ANdp": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDizzy.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDizzy.blp", + "Effectart": "Abilities\\Spells\\Demon\\DarkPortal\\DarkPortalTarget.mdl" + }, + "ANrc": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Animnames": "spell,slam" + }, + "ANr3": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "Animnames": "spell,slam" + }, + "ANfd": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "ACfd": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "ACf3": { + "Buttonpos": "2,1", + "Researchbuttonpos": "0,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "Afod": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "Achd": { + "skinType": "ability" + }, + "ANpi": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImmolation.blp" + }, + "Apig": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImmolation.blp" + }, + "Abun": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Sbtl": { + "Buttonpos": "0,2", + "Order": "battlestations", + "skinType": "ability", + "UnitSkinID": "ncpn", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleStations.blp", + "Effectsound": "BurrowBattleStations" + }, + "Acar": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Aloa": { + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "Adro": { + "Buttonpos": "1,2", + "Order": "unload", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnLoad.blp" + }, + "Sdro": { + "Buttonpos": "1,2", + "Order": "unload", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnLoad.blp" + }, + "Adri": { + "Buttonpos": "1,2", + "Order": "unload", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnLoad.blp" + }, + "AAns": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Andt": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReveal.blp" + }, + "ANgl": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGLExchange.blp", + "Casterart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl", + "Targetart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl" + }, + "ANlg": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLGExchange.blp", + "Casterart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl", + "Targetart": "Abilities\\Spells\\Other\\TempSpellArt\\TempSpellArt.mdl" + }, + "ANrl": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "ANrm": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\ANrl\\ANrlTarget.mdl", + "Effectsoundlooped": "FountainOfLifeLoop" + }, + "Sch2": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Sch3": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Sch4": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Sch5": { + "skinType": "ability", + "Effectsound": "LoadUnload" + }, + "Aneu": { + "Buttonpos": "0,0", + "Unbuttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOff.blp", + "Casterart": "Abilities\\Spells\\Other\\Aneu\\AneuCaster.mdl", + "Targetart": "Abilities\\Spells\\Other\\Aneu\\AneuTarget.mdl", + "Casterattach": "overhead", + "Targetattach": "overhead" + }, + "Ane2": { + "Buttonpos": "0,0", + "Unbuttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOff.blp", + "Casterart": "Abilities\\Spells\\Other\\Aneu\\AneuCaster.mdl", + "Targetart": "Abilities\\Spells\\Other\\Aneu\\AneuTarget.mdl", + "Casterattach": "overhead", + "Targetattach": "overhead" + }, + "Aall": { + "Buttonpos": "0,0", + "Unbuttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOff.blp", + "Casterart": "Abilities\\Spells\\Other\\Aneu\\AneuCaster.mdl", + "Targetart": "Abilities\\Spells\\Other\\Aneu\\AneuTarget.mdl", + "Casterattach": "overhead", + "Targetattach": "overhead" + }, + "ANin": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "inferno", + "skinType": "ability", + "UnitSkinID": "ninf,ninf,ninf,ninf", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl" + }, + "ANsp": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpy.blp" + }, + "Asds": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Asdg": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Asd2": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Asd3": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "selfdestruct", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSelfDestructOff.blp" + }, + "Amrf": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "ravenform", + "Unorder": "unravenform", + "skinType": "ability", + "UnitSkinID": "nmdm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNMedivh.blp" + }, + "Anhe": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "ACsw": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "slow", + "Orderon": "slowon", + "Orderoff": "slowoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlowOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSlowOff.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "ACtc": { + "Buttonpos": "1,2", + "Order": "creepthunderclap", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGolemThunderclap.blp", + "Casterart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderClapCaster.mdl", + "Casterattach": "origin", + "Animnames": "spell,slam" + }, + "ACt2": { + "Buttonpos": "0,2", + "Order": "creepthunderclap", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGolemThunderclap.blp", + "Casterart": "Abilities\\Spells\\Human\\Thunderclap\\ThunderClapCaster.mdl", + "Casterattach": "origin", + "Animnames": "spell,slam" + }, + "ACtb": { + "Buttonpos": "0,2", + "Missilespeed": "1000", + "Order": "creepthunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGolemStormBolt.blp", + "Missileart": "Abilities\\Weapons\\RockBoltMissile\\RockBoltMissile.mdl", + "Missilearc": ".30", + "Animnames": "spell,throw" + }, + "ACbb": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "bloodlust", + "OrderOn": "bloodluston", + "OrderOff": "bloodlustoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "Afzy": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "frenzy", + "OrderOn": "frenzyon", + "OrderOff": "frenzyoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "ACbl": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "bloodlust", + "OrderOn": "bloodluston", + "OrderOff": "bloodlustoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNBloodLustOff.blp" + }, + "ACcn": { + "Buttonpos": "0,2", + "Order": "cannibalize", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannibalize.blp", + "Animnames": "spell,channel" + }, + "ACdv": { + "Buttonpos": "0,2", + "Order": "creepdevour", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRedDragonDevour.blp", + "Animnames": "attack,spell" + }, + "ANrn": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "ANfb": { + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Animnames": "spell,throw" + }, + "Assp": { + "skinType": "ability" + }, + "Aspd": { + "skinType": "ability" + }, + "Aspy": { + "skinType": "ability" + }, + "Aspt": { + "skinType": "ability" + }, + "AOac": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "ACac": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "Btlf": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAcorn.blp" + }, + "ACad": { + "Buttonpos": "3,2", + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "ACrn": { + "Buttonpos": "3,2", + "skinType": "ability", + "Tip": "Reincarnation", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "Ambd": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "Amnb": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "Ambb": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "manaburn", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNManaBurn.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ManaBurn\\ManaBurnTarget.mdl", + "LightningEffect": "MBUR" + }, + "ACsl": { + "Buttonpos": "1,2", + "Order": "sleep", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp" + }, + "Asla": { + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Other\\CreepSleep\\CreepSleepTarget.mdl", + "Casterattach": "overhead", + "Effectsoundlooped": "CreepSleepSnoreLoop" + }, + "ACsp": { + "Order": "creepsleep", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSleep.blp", + "Casterart": "Abilities\\Spells\\Other\\CreepSleep\\CreepSleepTarget.mdl", + "Casterattach": "overhead", + "Effectsoundlooped": "CreepSleepSnoreLoop" + }, + "ACba": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Human\\Brilliance\\Brilliance.mdl", + "Targetattach": "origin" + }, + "ACat": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TrueshotAura\\TrueshotAura.mdl", + "Targetattach": "origin" + }, + "ACam": { + "Buttonpos": "1,2", + "Requires": "Ruba", + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp" + }, + "ACbh": { + "Buttonpos": "2,2", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "ANbh": { + "Buttonpos": "1,2", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "ANb2": { + "Buttonpos": "1,2", + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "ACbz": { + "Buttonpos": "0,2", + "Order": "blizzard", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlizzard.blp", + "Animnames": "spell,looping" + }, + "ACca": { + "Buttonpos": "0,2", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCarrionSwarm.blp", + "Missileart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmMissile.mdl", + "Specialart": "Abilities\\Spells\\Undead\\CarrionSwarm\\CarrionSwarmDamage.mdl", + "Animnames": "attack,slam" + }, + "ACcl": { + "Buttonpos": "0,2", + "Missilespeed": "1500", + "Order": "chainlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Missileart": "Abilities\\Spells\\Orc\\LightningBolt\\LightningBoltMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "Animnames": "spell,throw", + "LightningEffect": "CLPB,CLSB" + }, + "ACcw": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNColdArrowsOff.blp", + "Missileart": "Abilities\\Weapons\\ColdArrow\\ColdArrowMissile.mdl", + "Missilearc": "0.15", + "Animnames": "attack" + }, + "ACcr": { + "Buttonpos": "2,2", + "order": "cripple", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCripple.blp" + }, + "ACct": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCriticalStrike.blp" + }, + "ACcs": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "curse", + "Orderon": "curseon", + "Orderoff": "curseoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCurseOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNCurseOff.blp" + }, + "ACcy": { + "Buttonpos": "1,2", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "SCc1": { + "Buttonpos": "1,1", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "ACdc": { + "Buttonpos": "0,2", + "Missilespeed": "1100", + "MissileHoming": "1", + "Order": "deathcoil", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathCoil.blp", + "Missileart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilMissile.mdl", + "Specialart": "Abilities\\Spells\\Undead\\DeathCoil\\DeathCoilSpecialArt.mdl" + }, + "ACds": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "divineshield", + "Unorder": "undivineshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDivineIntervention.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDivineShieldOff.blp" + }, + "Aenr": { + "Buttonpos": "0,2", + "Order": "entanglingroots", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntanglingRoots.blp" + }, + "ACev": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEvasion.blp" + }, + "ACes": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEvasion.blp" + }, + "ACff": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "order": "faeriefire", + "orderon": "faeriefireon", + "orderoff": "faeriefireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFaerieFireOff.blp" + }, + "ACsf": { + "Buttonpos": "2,2", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "osw1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "ACs9": { + "Buttonpos": "1,2", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "nspp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRazorback.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "ACfb": { + "Buttonpos": "0,2", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireBolt.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Animnames": "spell,throw" + }, + "ACfr": { + "Buttonpos": "1,2", + "Order": "forceofnature", + "skinType": "ability", + "UnitSkinID": "efon", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnt.blp" + }, + "ACfa": { + "Buttonpos": "1,2", + "Order": "frostarmor", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmor.blp" + }, + "ACf2": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "frostarmor", + "Orderon": "frostarmoron", + "Orderoff": "frostarmoroff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOff.blp" + }, + "ACfn": { + "Buttonpos": "0,2", + "Order": "frostnova", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlacier.blp", + "Effectart": "Abilities\\Spells\\Undead\\FrostNova\\FrostNovaTarget.mdl", + "Animnames": "spell,slam" + }, + "Ahr2": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Ahr3": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Anh1": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "Anh2": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "heal", + "Orderon": "healon", + "Orderoff": "healoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNHealOff.blp", + "Targetart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl" + }, + "ACim": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "immolation", + "Unorder": "unimmolation", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNImmolationOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNImmolationOff.blp" + }, + "ACif": { + "Buttonpos": "2,2", + "Unbuttonpos": "2,2", + "Order": "innerfire", + "Orderon": "innerfireon", + "Orderoff": "innerfireoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNInnerFireOff.blp", + "Effectsound": "InnerFireCast" + }, + "ACls": { + "Buttonpos": "1,2", + "Order": "lightningshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp" + }, + "Sloa": { + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "UnitSkinID": "opeo", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "Slo3": { + "Buttonpos": "0,2", + "Order": "load", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLoad.blp" + }, + "ACrf": { + "Buttonpos": "3,2", + "Order": "rainoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFire.blp" + }, + "ACrd": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "raisedead", + "Orderon": "raisedeadon", + "Orderoff": "raisedeadoff", + "skinType": "ability", + "UnitSkinID": "uske", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRaiseDeadOff.blp", + "Effectart": "Abilities\\Spells\\Undead\\RaiseSkeletonWarrior\\RaiseSkeleton.mdl" + }, + "ACrj": { + "Buttonpos": "1,2", + "order": "rejuvination", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvenation.blp" + }, + "Ahrp": { + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "repair", + "Orderon": "repairon", + "Orderoff": "repairoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRepairOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRepairOff.blp", + "Animnames": "stand,work" + }, + "ACro": { + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "ACr1": { + "Buttonpos": "0,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "Aro1": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "root", + "Unorder": "unroot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRoot.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUproot.blp" + }, + "Aro2": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "root", + "Unorder": "unroot", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRoot.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNUproot.blp" + }, + "ACsa": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "flamingarrows", + "Unorder": "unflamingarrows", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOff.blp", + "Missileart": "Abilities\\Weapons\\SearingArrow\\SearingArrowMissile.mdl", + "Animnames": "attack" + }, + "Asid": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSell.blp" + }, + "Asud": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHire.blp" + }, + "ACsh": { + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "ACst": { + "Buttonpos": "0,2", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "ACah": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThorns.blp", + "Targetart": "Abilities\\Spells\\NightElf\\ThornsAura\\ThornsAura.mdl", + "Targetattach": "origin" + }, + "ACua": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNUnholyAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\UnholyAura\\UnholyAura.mdl", + "Targetattach": "origin" + }, + "ACuf": { + "Buttonpos": "1,2", + "Order": "unholyfrenzy", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "SCva": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostMourne.blp", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "ACvp": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNVampiricAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAura.mdl", + "Targetattach": "origin" + }, + "Awrs": { + "Buttonpos": "1,2", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "slam" + }, + "Awrh": { + "Buttonpos": "1,2", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHydraWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "slam" + }, + "Awrg": { + "Buttonpos": "1,2", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaGiantWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "slam" + }, + "ACav": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Human\\DevotionAura\\DevotionAura.mdl", + "Targetattach": "origin" + }, + "ACvs": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNEnvenomedSpear.blp" + }, + "ACwb": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "web", + "Orderon": "webon", + "Orderoff": "weboff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWebOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNWebOff.blp", + "Missileart": "Abilities\\Spells\\Undead\\Web\\Webmissile.mdl" + }, + "Aarm": { + "skinType": "ability" + }, + "ACnr": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeal.blp" + }, + "ANre": { + "skinType": "ability", + "Effectsoundlooped": "FountainOfLifeLoop", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeal.blp" + }, + "SNdd": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "deathanddecay", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDeathAndDecay.blp", + "Animnames": "spell,looping" + }, + "Adsm": { + "Buttonpos": "0,2", + "Order": "dispel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDispelMagic.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "ACdm": { + "Requires": "Resi", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "ACd2": { + "Requires": "Resi", + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "SNeq": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "earthquake", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNEarthquake.blp", + "Animnames": "spell,looping" + }, + "SCae": { + "Buttonpos": "2,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "ACen": { + "Buttonpos": "0,2", + "Requires": "Roen", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "ensnare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Missileart": "Abilities\\Spells\\Orc\\Ensnare\\EnsnareMissile.mdl", + "Animnames": "spell,entangle" + }, + "ACcv": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Missileart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveMissile.mdl", + "Specialart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveDamage.mdl", + "Animnames": "attack,slam" + }, + "ACc2": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Missileart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveMissile.mdl", + "Specialart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveDamage.mdl", + "Animnames": "attack,slam" + }, + "ACc3": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1100", + "Order": "carrionswarm", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCrushingWave.blp", + "Missileart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveMissile.mdl", + "Specialart": "Abilities\\Spells\\Other\\CrushingWave\\CrushingWaveDamage.mdl", + "Animnames": "attack,slam" + }, + "ACwe": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "waterelemental", + "skinType": "ability", + "UnitSkinID": "nsel", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSeaElemental.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSeaElemental.blp" + }, + "Anei": { + "Buttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectUnit.blp" + }, + "Apmf": { + "Buttonpos": "0,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNImmolation.blp" + }, + "ACrk": { + "Buttonpos": "3,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThickFur.blp" + }, + "ACsk": { + "Buttonpos": "3,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNThickFur.blp" + }, + "ANfl": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "forkedlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Specialart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "FORK" + }, + "ACfl": { + "Buttonpos": "0,2", + "Order": "forkedlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsoon.blp", + "Specialart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "FORK" + }, + "Aamk": { + "Buttonpos": "1,1", + "Researchbuttonpos": "3,1", + "Order": "attributemodskill", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNStatUp.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStatUp.blp" + }, + "ACs7": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "osw1,osw2,osw3,osw3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "ACtn": { + "Buttonpos": "0,2", + "Order": "Serpentward", + "skinType": "ability", + "UnitSkinID": "nfgt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTentacle.blp" + }, + "ANav": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "avatar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAvatarOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAvatarOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNAvatar.blp", + "Effectsound": "HowlOfTerror" + }, + "ANha": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "ANsh": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "ACs8": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "nsw1,nsw2,nsw3,nsw3", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "ResearchArt": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "ANr2": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "Afbb": { + "Buttonpos": "1,2", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNFeedBack.blp", + "Specialart": "Abilities\\Spells\\Human\\Feedback\\SpellBreakerAttack.mdl" + }, + "AGbu": { + "Buttonpos": "0,2", + "Order": "nagabuild", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBasicStruct.blp" + }, + "Acny": { + "Buttonpos": "2,2", + "Requires": "Rnsw", + "Requiresamount": "2", + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "Asb1": { + "Requires": "Rnsb", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "submerge", + "Unorder": "unsubmerge", + "skinType": "ability", + "UnitSkinID": "nmys", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNagaUnBurrow.blp", + "Effectsound": "SubmergeSound" + }, + "Asb2": { + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "submerge", + "Unorder": "unsubmerge", + "skinType": "ability", + "UnitSkinID": "nnrs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNagaUnBurrow.blp", + "Effectsound": "SubmergeSound" + }, + "Asb3": { + "Requires": "Rnsb", + "Buttonpos": "3,2", + "Unbuttonpos": "3,2", + "Order": "submerge", + "Unorder": "unsubmerge", + "skinType": "ability", + "UnitSkinID": "nsbs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaBurrow.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNNagaUnBurrow.blp", + "Effectsound": "SubmergeSound" + }, + "ANen": { + "Buttonpos": "0,2", + "Requires": "Rnen", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "ensnare", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Missileart": "Abilities\\Spells\\Orc\\Ensnare\\EnsnareMissile.mdl" + }, + "Andm": { + "Requires": "Rnsi", + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "autodispel", + "Orderon": "autodispelon", + "Orderoff": "autodispeloff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagicOff.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "ACfu": { + "Requires": "Rnsw", + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Order": "frostarmor", + "Orderon": "frostarmoron", + "Orderoff": "frostarmoroff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNFrostArmorOff.blp" + }, + "ANpa": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Missilespeed": "1200", + "MissileHoming": "1", + "Orderon": "parasiteon", + "Orderoff": "parasiteoff", + "Order": "parasite", + "skinType": "ability", + "UnitSkinID": "ncfs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNParasiteOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNParasiteOff.blp", + "Missileart": "Abilities\\Spells\\Other\\Parasite\\ParasiteMissile.mdl", + "MissileArc": "0.0" + }, + "Ahnl": { + "Buttonpos": "3,2", + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAntiMagicShell.blp", + "Casterart": "Abilities\\Spells\\Other\\ANrm\\ANrmTarget.mdl", + "Animnames": "spell,slam" + }, + "ANcl": { + "Buttonpos": "2,0", + "Order": "channel", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Casterart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Targetattach": "origin", + "Effectart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Animnames": "spell,channel" + }, + "AOw2": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "stomp", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNWarStomp.blp", + "Casterart": "Abilities\\Spells\\Orc\\WarStomp\\WarStompCaster.mdl", + "Animnames": "spell,slam" + }, + "AOs2": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "shockwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNShockWave.blp", + "Missileart": "Abilities\\Spells\\Orc\\Shockwave\\ShockwaveMissile.mdl", + "Animnames": "attack,slam" + }, + "AOr2": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCommand.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "AOr3": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNReincarnation.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "ANhw": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "healingwave", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHealingWave.blp", + "Targetart": "Abilities\\Spells\\Orc\\HealingWave\\HealingWaveTarget.mdl", + "Animnames": "spell,throw", + "LightningEffect": "HWPB,HWSB" + }, + "ANhx": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "hex", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNHex.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl" + }, + "Arsw": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "Serpentward", + "skinType": "ability", + "UnitSkinID": "osp1,osp2,osp3,osp4", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSerpentWard.blp" + }, + "AOls": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "Locustswarm", + "skinType": "ability", + "UnitSkinID": "uloc,uloc,uloc,uloc", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNLocustSwarm.blp", + "Effectsoundlooped": "LocustSwarmLoop" + }, + "Arsq": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Order": "summonquillbeast", + "skinType": "ability", + "UnitSkinID": "nqb1,nqb2,nqb3,nqb4", + "Art": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNQuillBeast.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "Arsp": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "500", + "Order": "stampede", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStampede.blp", + "Specialart": "Abilities\\Spells\\Other\\Stampede\\MissileDeath.mdl", + "Missileart": "Abilities\\Spells\\Other\\Stampede\\StampedeMissile.mdl", + "Effectsoundlooped": "StampedeLoop", + "Effectsound": "StampedeCast", + "Animnames": "spell,looping" + }, + "ANbr": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Order": "battleroar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl", + "Animnames": "spell,slam" + }, + "Arsg": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "ngzc,ngzd,ngza,ngz4", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNMisha.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNGrizzlyBear.blp", + "Researchart:hd": "ReplaceableTextures\\CommandButtons\\BTNMisha.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl", + "Animnames": "spell,slam" + }, + "ANsb": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "Missilespeed": "1000", + "MissileHoming": "1", + "Order": "thunderbolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormBolt.blp", + "Missileart": "Abilities\\Spells\\Human\\StormBolt\\StormBoltMissile.mdl", + "Animnames": "spell,throw" + }, + "ANcf": { + "Buttonpos": "0,2", + "Researchbuttonpos": "0,0", + "Missilespeed": "1050", + "Order": "breathoffire", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNBreathOfFire.blp", + "Missileart": "Abilities\\Spells\\Other\\BreathOfFire\\BreathOfFireMissile.mdl", + "Animnames": "spell,slam" + }, + "Acdb": { + "Buttonpos": "2,2", + "Researchbuttonpos": "2,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrunkenDodge.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDrunkenDodge.blp" + }, + "Acdh": { + "Buttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "Order": "drunkenhaze", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStrongDrink.blp", + "Missileart": "Abilities\\Spells\\Other\\StrongDrink\\BrewmasterMissile.mdl", + "Missilearc": "0.15" + }, + "Acef": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Order": "elementalfury", + "Missilespeed": "150", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNStormEarth&Fire.blp", + "Specialart": "Abilities\\Spells\\Human\\Polymorph\\PolyMorphDoneGround.mdl", + "Missileart": "Units\\Creeps\\FirePandarenBrewmaster\\FirePandarenBrewmaster_Missile.mdl,Units\\Creeps\\StormPandarenBrewmaster\\StormPandarenBrewmaster_Missile.mdl,Units\\Creeps\\EarthPandarenBrewmaster\\EarthPandarenBrewmaster_Missile.mdl", + "Missilearc": "0.75", + "Effectsound": "StormEarthFireSound", + "Animnames": "spell,throw" + }, + "Apit": { + "skinType": "ability", + "Effectsound": "ReceiveGold" + }, + "Abdt": { + "skinType": "ability" + }, + "Amou": { + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "mount", + "Unorder": "dismount", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNTemp.blp" + }, + "AHer": { + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Other\\Levelup\\LevelupCaster.mdl" + }, + "Amov": { + "skinType": "ability", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialattach": "origin" + }, + "Ahar": { + "Buttonpos": "3,1", + "UnButtonpos": "3,1", + "Order": "harvest", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNReturnGoods.blp" + }, + "Aawa": { + "Order": "awaken", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Other\\Awaken\\Awaken.mdl" + }, + "Arev": { + "Order": "revive", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Human\\ReviveHuman\\ReviveHuman.mdl,Abilities\\Spells\\Orc\\ReviveOrc\\ReviveOrc.mdl,Abilities\\Spells\\Undead\\ReviveUndead\\ReviveUndead.mdl,Abilities\\Spells\\NightElf\\ReviveNightElf\\ReviveNightElf.mdl,Abilities\\Spells\\Demon\\ReviveDemon\\ReviveDemon.mdl" + }, + "Aque": { + "Order": "revive", + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Human\\ReviveHuman\\ReviveHuman.mdl,Abilities\\Spells\\Orc\\ReviveOrc\\ReviveOrc.mdl,Abilities\\Spells\\Undead\\ReviveUndead\\ReviveUndead.mdl,Abilities\\Spells\\NightElf\\ReviveNightElf\\ReviveNightElf.mdl,Abilities\\Spells\\Demon\\ReviveDemon\\ReviveDemon.mdl" + }, + "Adet": { + "Buttonpos": "0,2", + "skinType": "ability" + }, + "Adt1": { + "Buttonpos": "0,2", + "skinType": "ability" + }, + "Adta": { + "Buttonpos": "0,0", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReveal.blp" + }, + "Arep": { + "Buttonpos": "1,1", + "Unbuttonpos": "1,1", + "Order": "repair", + "Orderon": "repairon", + "Orderoff": "repairoff", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRepairOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNRepairOff.blp", + "Animnames": "stand,work" + }, + "ARal": { + "Buttonpos": "3,1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRallyPoint.blp,ReplaceableTextures\\CommandButtons\\BTNOrcRallyPoint.blp,ReplaceableTextures\\CommandButtons\\BTNRallyPointUndead.blp,ReplaceableTextures\\CommandButtons\\BTNRallyPointNightElf.blp" + }, + "AEpa": { + "Buttonpos": "1,2", + "Unbuttonpos": "1,2", + "Researchbuttonpos": "1,0", + "Missilespeed": "1500", + "MissileHoming": "1", + "Order": "poisonarrowstarg", + "Orderon": "poisonarrows", + "Orderoff": "unpoisonarrows", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrowsOff.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNSearingArrows.blp", + "Missileart": "Abilities\\Weapons\\SearingArrow\\SearingArrowMissile.mdl", + "Animnames": "attack" + }, + "APwt": { + "Buttonpos": "0,2", + "Order": "evileye", + "skinType": "ability", + "UnitSkinID": "nwad", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp", + "Effectsound": "PowerupSound" + }, + "AIbk": { + "Buttonpos": "1,2", + "Order": "blink", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlink.blp", + "Areaeffectart": "Abilities\\Spells\\NightElf\\Blink\\BlinkTarget.mdl", + "Specialart": "Abilities\\Spells\\NightElf\\Blink\\BlinkCaster.mdl" + }, + "AIsm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIsm\\AIsmTarget.mdl", + "Targetattach": "origin" + }, + "AInm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIsm\\AIsmTarget.mdl", + "Targetattach": "origin" + }, + "AIam": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIam\\AIamTarget.mdl", + "Targetattach": "origin" + }, + "AIgm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIam\\AIamTarget.mdl", + "Targetattach": "origin" + }, + "AIsp": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionRed.blp" + }, + "AIat": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIt6": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIt9": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItc": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItf": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIcy": { + "order": "cyclone", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCyclone.blp" + }, + "AIde": { + "skinType": "ability" + }, + "AId1": { + "skinType": "ability" + }, + "AId5": { + "skinType": "ability" + }, + "AId8": { + "skinType": "ability" + }, + "AId7": { + "skinType": "ability" + }, + "AId0": { + "skinType": "ability" + }, + "AIdm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinLandMine.blp" + }, + "AIem": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeBrown.blp", + "Casterart": "Abilities\\Spells\\Items\\AIem\\AIemTarget.mdl", + "Casterattach": "origin" + }, + "AIe2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManual3.blp", + "Casterart": "Abilities\\Spells\\Items\\AIem\\AIemTarget.mdl", + "Casterattach": "origin" + }, + "AIfg": { + "Order": "cloudoffog", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloudOfFog.blp" + }, + "AIfl": { + "skinType": "ability", + "Targetart": "UI\\Feedback\\RallyPoint\\RallyPoint.mdl", + "Targetattach": "hand,right" + }, + "AIfm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\HumanCaptureFlag\\HumanCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIfn": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\NightElfCaptureFlag\\NightElfCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIfo": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\OrcCaptureFlag\\OrcCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIfe": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadCaptureFlag.blp", + "Targetart": "Objects\\InventoryItems\\UndeadCaptureFlag\\UndeadCaptureFlag.mdl", + "Targetattach": "hand,right" + }, + "AIlm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AIim": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIim\\AIimTarget.mdl", + "Targetattach": "origin" + }, + "AItm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "Targetart": "Abilities\\Spells\\Items\\AIim\\AIimTarget.mdl", + "Targetattach": "origin" + }, + "AIxm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Targetart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Targetattach": "origin" + }, + "AIhe": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIha": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIhb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "APh1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "APh2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "APh3": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "AIvi": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIvi\\AIviTarget.mdl", + "Targetattach": "chest" + }, + "AIpi": { + "skinType": "ability" + }, + "AIvu": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterInvulneralbility.blp" + }, + "AIvl": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserInvulneralbility.blp" + }, + "AIvg": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfDivinity.blp" + }, + "AIma": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin" + }, + "AImr": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin" + }, + "APmr": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "APmg": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "Targetart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "AIre": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionRed.blp", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin" + }, + "AIra": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHealing.blp", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin" + }, + "APra": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHealing.blp", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin", + "Effectsound": "PowerupSound" + }, + "AIda": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScroll.blp", + "Casterart": "Abilities\\Spells\\Items\\AIda\\AIdaCaster.mdl" + }, + "AIdb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScroll.blp", + "Casterart": "Abilities\\Spells\\Items\\AIda\\AIdaCaster.mdl", + "Targetart": "Abilities\\Spells\\Items\\AIre\\AIreTarget.mdl", + "Targetattach": "origin" + }, + "AIta": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrystalBall.blp", + "Casterart": "Abilities\\Spells\\Items\\AIta\\CrystalBallCaster.mdl", + "Casterattach": "overhead" + }, + "AItb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDustOfAppearance.blp", + "Casterart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl" + }, + "AIrm": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSobiMask.blp" + }, + "AIfi": { + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl" + }, + "AIil": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWand.blp", + "Targetart": "Abilities\\Spells\\Items\\AIil\\AIilTarget.mdl", + "Targetattach": "origin" + }, + "APdi": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "Effectart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl", + "Effectsound": "PowerupSound" + }, + "AIdi": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandSkull.blp", + "Effectart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "AIds": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfNegation.blp", + "Effectart": "Abilities\\Spells\\Items\\AItb\\AItbTarget.mdl", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + }, + "AIfb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIf2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIll": { + "skinType": "ability", + "UnitSkinID": "AIpg", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIlb\\AIlbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIlb\\AIlbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIlb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIlb\\AIlbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIlb\\AIlbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIob": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFrost.blp", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\AIob\\AIobTarget.mdl", + "Missilehoming": "1", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIob\\AIobSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIpb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfVenom.blp", + "Missileart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenomMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenom.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\OrbVenom\\OrbVenomSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIcb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfCorruption.blp", + "Missileart": "Abilities\\Spells\\Items\\OrbCorruption\\OrbCorruptionMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\OrbCorruption\\OrbCorruption.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\OrbCorruption\\OrbCorruptionSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIdf": { + "skinType": "ability", + "UnitSkinID": "ANbs", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "Missileart": "Abilities\\Weapons\\AvengerMissile\\AvengerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\OrbDarkness\\OrbDarkness.mdl", + "Targetattach": "weapon" + }, + "AIsi": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTelescope.blp" + }, + "AIso": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSoulGem.blp", + "Effectart": "Abilities\\Spells\\Items\\AIso\\AIsoTarget.mdl" + }, + "Asou": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUsedSoulGem.blp" + }, + "AIto": { + "skinType": "ability" + }, + "AIga": { + "skinType": "ability", + "Effectart": "Abilities\\Spells\\NightElf\\NatureTouch\\NatureTouchTarget.mdl" + }, + "AIrc": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReincarnation.blp", + "Effectart": "Abilities\\Spells\\Orc\\Reincarnation\\ReincarnationTarget.mdl" + }, + "AIrt": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmulet.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "AIte": { + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl" + }, + "AItp": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollUber.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl" + }, + "AIco": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScepterOfMastery.blp", + "Targetart": "Abilities\\Spells\\Items\\AIco\\CrownOfCmndTarget.mdl", + "Targetattach": "overhead" + }, + "AIts": { + "Missilespeed": "700", + "MissileHoming": "1", + "order": "transmute", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "Missileart": "Abilities\\Spells\\Other\\Transmute\\GoldBottleMissile.mdl", + "Missilearc": "0.4" + }, + "AIfd": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRedDragon.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIbd": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAzureDragon.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAzureDrake.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIff": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolg.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIut": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolgTracker.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfr": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfu": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDoomGuard.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfh": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIfs": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonWarrior.blp", + "Targetart": "Abilities\\Spells\\Undead\\RaiseSkeletonWarrior\\RaiseSkeleton.mdl" + }, + "AIir": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceShard.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AIuw": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmuletOftheWild.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AIes": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNpurpleDragonSpawn.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDragonSpawnOverseer.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspirittarget.mdl" + }, + "AIin": { + "Order": "inferno", + "skinType": "ability", + "UnitSkinID": "ninf", + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernal.blp", + "Effectart": "Units\\Demon\\Infernal\\InfernalBirth.mdl" + }, + "AIpm": { + "skinType": "ability", + "UnitSkinID": "nglm", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinLandMine.blp" + }, + "AImn": { + "skinType": "ability" + }, + "AImm": { + "skinType": "ability" + }, + "AImb": { + "skinType": "ability" + }, + "AImz": { + "skinType": "ability" + }, + "AImv": { + "skinType": "ability" + }, + "AIvm": {}, + "AI2m": { + "skinType": "ability" + }, + "AIas": { + "skinType": "ability" + }, + "AIsx": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlove.blp" + }, + "AIbm": { + "skinType": "ability" + }, + "AIs2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGauntletsOfOgrePower.blp" + }, + "AIva": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMaskOfDeath.blp", + "Specialart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAuraTarget.mdl", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "AIcf": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloakOfFlames.blp" + }, + "Arel": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingSkull.blp" + }, + "Arll": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealthStone.blp" + }, + "AIs6": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBelt.blp" + }, + "AIa6": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBoots.blp" + }, + "AIaz": { + "skinType": "ability" + }, + "AIms": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBootsOfSpeed.blp" + }, + "AIi6": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRobeOfTheMagi.blp" + }, + "AIx2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCirclet.blp" + }, + "AIx5": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHelmutPurple.blp" + }, + "AIh1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionGreenSmall.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIh2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionGreen.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIhw": { + "Order": "healingward", + "skinType": "ability", + "UnitSkinID": "ohwd", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "AIsw": { + "Order": "evileye", + "skinType": "ability", + "UnitSkinID": "oeye", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp" + }, + "AIv1": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIvi\\AIviTarget.mdl", + "Targetattach": "chest", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserInvisibility.blp" + }, + "AIv2": { + "skinType": "ability", + "Targetart": "Abilities\\Spells\\Items\\AIvi\\AIviTarget.mdl", + "Targetattach": "chest", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterInvisibility.blp" + }, + "AIm1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionBlueSmall.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AIm2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionBlueBig.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AIuv": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTelescope.blp" + }, + "AIls": { + "Order": "lightningshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp" + }, + "AIrr": { + "Order": "roar", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBattleRoar.blp", + "Casterart": "Abilities\\Spells\\NightElf\\BattleRoar\\RoarCaster.mdl" + }, + "AIev": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEvasion.blp" + }, + "AImx": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecklace.blp" + }, + "AIa2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlippersOfAgility.blp" + }, + "AId2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp" + }, + "AId3": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp" + }, + "AId4": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp" + }, + "AIl2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPeriapt1.blp" + }, + "AIi2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMantleOfIntelligence.blp" + }, + "AIan": { + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimateDead.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "AIrs": { + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl" + }, + "APrl": { + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl", + "Effectsound": "PowerupSound" + }, + "APrr": { + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl", + "Effectsound": "PowerupSound" + }, + "AIrx": { + "Order": "resurrection", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNResurrection.blp", + "Casterart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\Resurrect\\ResurrectTarget.mdl" + }, + "AIaa": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AImi": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AImh": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNManual.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AIpx": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "Casterart": "Abilities\\Spells\\Items\\AIlm\\AIlmTarget.mdl", + "Casterattach": "origin" + }, + "AIa1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingPurple.blp" + }, + "AIx1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoldRing.blp" + }, + "AIs1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHammer.blp" + }, + "AIi1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowPact.blp" + }, + "AIfc": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRavenForm.blp" + }, + "AIba": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBrilliance.blp", + "Targetart": "Abilities\\Spells\\Human\\Brilliance\\Brilliance.mdl", + "Targetattach": "origin" + }, + "AIad": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDevotion.blp", + "Targetart": "Abilities\\Spells\\Human\\DevotionAura\\DevotionAura.mdl", + "Targetattach": "origin" + }, + "AIcd": { + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNGnollCommandAura.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "AIwd": { + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNDrum.blp", + "Targetart": "Abilities\\Spells\\Orc\\WarDrums\\DrumsCasterHeal.mdl", + "Targetattach": "origin" + }, + "AIar": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTrueShot.blp", + "Targetart": "Abilities\\Spells\\NightElf\\TrueshotAura\\TrueshotAura.mdl", + "Targetattach": "origin" + }, + "AIae": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCommand.blp", + "Targetart": "Abilities\\Spells\\Orc\\CommandAura\\CommandAura.mdl", + "Targetattach": "origin" + }, + "AIau": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\UnholyAura\\UnholyAura.mdl", + "Targetattach": "origin" + }, + "AIav": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNVampiricAura.blp", + "Targetart": "Abilities\\Spells\\Undead\\VampiricAura\\VampiricAura.mdl", + "Targetattach": "origin" + }, + "AIrl": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingSalve.blp", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin", + "Targetart": "Abilities\\Spells\\Items\\HealingSalve\\HealingSalveTarget.mdl", + "Targetattach": "origin" + }, + "AIpr": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfClarity.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AIpl": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserClarityPotion.blp", + "Casterart": "Abilities\\Spells\\Items\\AIma\\AImaTarget.mdl", + "Casterattach": "origin" + }, + "AIp1": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMinorRejuvPotion.blp" + }, + "AIp2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserRejuvPotion.blp" + }, + "AIp3": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvPotion.blp" + }, + "AIp4": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvPotion.blp" + }, + "AIp5": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserRejuvScroll.blp", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin" + }, + "AIp6": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvScroll.blp", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin" + }, + "AIsl": { + "skinType": "ability", + "Casterart": "Abilities\\Spells\\Human\\Heal\\HealTarget.mdl", + "Casterattach": "origin", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfRegenerationGreen.blp" + }, + "AIgo": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChestOfGold.blp", + "Casterart": "Abilities\\Spells\\Items\\ResourceItems\\ResourceEffectTarget.mdl", + "Casterattach": "origin", + "Effectsound": "ReceiveGold" + }, + "AIlu": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBundleOfLumber.blp", + "Targetart": "Abilities\\Spells\\Items\\ResourceItems\\ResourceEffectTarget.mdl", + "Targetattach": "origin", + "Effectsound": "ReceiveLumber" + }, + "AIfa": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlare.blp", + "Casterart": "Abilities\\Spells\\Human\\Flare\\FlareCaster.mdl" + }, + "AIrv": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfOmniscience.blp", + "Casterart": "Abilities\\Spells\\Items\\PotionOfOmniscience\\CrystalBallCaster.mdl", + "Casterattach": "overhead", + "Effectsound": "PowerupSound" + }, + "AIdc": { + "Missilespeed": "900", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfNeutralization.blp", + "Missileart": "Abilities\\Spells\\Items\\WandOfNeutralization\\NeutralizationMissile.mdl" + }, + "AIwb": { + "Missilespeed": "1500", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWebOn.blp", + "Missileart": "Abilities\\Spells\\Undead\\Web\\Webmissile.mdl" + }, + "AImo": { + "skinType": "ability", + "UnitSkinID": "nlur", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsterLure.blp" + }, + "AIri": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPhilosophersStone.blp" + }, + "Ablp": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialSkull.blp" + }, + "Aste": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfManaSteal.blp", + "Casterart": "Abilities\\Spells\\Other\\Drain\\ManaDrainCaster.mdl", + "Casterattach": "chest", + "Targetart": "Abilities\\Spells\\Other\\Drain\\ManaDrainTarget.mdl", + "Targetattach": "chest" + }, + "AIct": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMoonStone.blp" + }, + "AIpv": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfVampirism.blp", + "Casterart": "Abilities\\Spells\\Items\\VampiricPotion\\VampPotionCaster.mdl", + "Casterattach": "origin" + }, + "AIsr": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRunedBracers.blp" + }, + "AIbl": { + "skinType": "ability", + "UnitSkinID": "hcas,ofrt,unp2,etoe", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTinyCastle.blp" + }, + "AIbh": { + "skinType": "ability", + "UnitSkinID": "halt,halt,halt,halt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfKings.blp" + }, + "AIbg": { + "skinType": "ability", + "UnitSkinID": "htow,ogre,unpl,etol", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTownHall.blp" + }, + "AIbt": { + "skinType": "ability", + "UnitSkinID": "hwtw,hwtw,hwtw,hwtw", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanWatchTower.blp" + }, + "Ashs": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfShadowSight.blp" + }, + "Aret": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeOfRetraining.blp", + "Casterart": "Abilities\\Spells\\Items\\TomeOfRetraining\\TomeOfRetrainingCaster.mdl", + "Casterattach": "origin" + }, + "AImt": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfTeleportation.blp", + "Areaeffectart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTo.mdl", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "Amec": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMechanicalCritter.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "ANse": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellShieldAmulet.blp", + "Effectsound": "PowerupSound" + }, + "Bnss": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNSpellShieldAmulet.blp", + "Targetart": "Abilities\\Spells\\Items\\SpellShieldAmulet\\SpellShieldCaster.mdl", + "Targetattach": "origin" + }, + "Aspb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellBookBLS.blp" + }, + "AIrd": { + "skinType": "ability", + "UnitSkinID": "uske", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRaiseDead.blp" + }, + "ANsa": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSanctuary.blp", + "Casterart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportCaster.mdl", + "Targetart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl", + "Specialart": "Abilities\\Spells\\Human\\MassTeleport\\MassTeleportTarget.mdl" + }, + "AIsa": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHaste.blp" + }, + "APsa": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHaste.blp", + "Effectsound": "PowerupSound" + }, + "AIsb": { + "MissileHoming": "1", + "skinType": "ability", + "UnitSkinID": "AIos", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbofSlowness.blp", + "Missileart": "Abilities\\Weapons\\ProcMissile\\ProcMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\OrbSlow\\OrbSlowNew.mdl", + "Targetattach": "weapon", + "Missilehoming": "1" + }, + "AIos": { + "Order": "slow", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlow.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "ANbs": { + "Buttonpos": "1,2", + "Missilespeed": "1050", + "MissileHoming": "1", + "Order": "blackarrow", + "skinType": "ability", + "UnitSkinID": "ndr1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTheBlackArrow.blp", + "Missileart": "Abilities\\Spells\\Other\\BlackArrow\\BlackArrowMissile.mdl" + }, + "Aspp": { + "Buttonpos": "0,2", + "Unbuttonpos": "0,2", + "Order": "spiritlinkaoe", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritLink.blp", + "Effectsound": "PowerupSound", + "LightningEffect": "SPLK" + }, + "AIrb": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "Effectsound": "PowerupSound" + }, + "AUds": { + "Buttonpos": "3,2", + "Researchbuttonpos": "3,0", + "Missilespeed": "1500", + "Order": "darksummoning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkSummoning.blp", + "Researchart": "ReplaceableTextures\\CommandButtons\\BTNDarkSummoning.blp", + "Effectart": "Abilities\\Spells\\Undead\\Darksummoning\\DarkSummonTarget.mdl", + "Targetart": "Abilities\\Spells\\Undead\\Darksummoning\\DarkSummonTarget.mdl", + "Missileart": "Abilities\\Spells\\Undead\\DarkSummoning\\DarkSummonMissile.mdl" + }, + "AIxs": { + "Order": "antimagicshell", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnazzyPotion.blp" + }, + "Aami": { + "Order": "antimagicshell", + "skinType": "ability" + }, + "AIdv": { + "Order": "divineshield", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfDivinity.blp" + }, + "AIse": { + "Order": "silence", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSilence.blp" + }, + "AIpg": { + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp" + }, + "AIps": { + "Order": "purge", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp", + "Specialart": "Abilities\\Spells\\Orc\\Purge\\PurgeBuffTarget.mdl", + "Specialattach": "origin" + }, + "AItg": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIth": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIti": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItj": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItk": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItl": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItn": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AItx": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp" + }, + "AIh3": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeartOfAszune.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIhx": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealOn.blp", + "Targetart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Targetattach": "origin" + }, + "AIfx": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcBattleStandard.blp", + "Targetart": "Objects\\InventoryItems\\BattleStandard\\BattleStandard.mdl", + "Targetattach": "chest" + }, + "AIgd": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\IllidanMissile\\IllidanMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIbb": { + "skinType": "ability", + "UnitSkinID": "hbla,hbla,hbla,hbla", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlacksmith.blp" + }, + "AIbr": { + "skinType": "ability", + "UnitSkinID": "hlum,hlum,hlum,hlum", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanLumberMill.blp" + }, + "AIbf": { + "skinType": "ability", + "UnitSkinID": "hhou,hhou,hhou,hhou", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFarm.blp" + }, + "AIbs": { + "skinType": "ability", + "UnitSkinID": "hbar,hbar,hbar,hbar", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanBarracks.blp" + }, + "AIdn": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "Missileart": "Abilities\\Weapons\\VengeanceMissile\\VengeanceMissile.mdl", + "Targetart": "Abilities\\Spells\\Items\\OrbDarkness\\OrbDarkness.mdl", + "Targetattach": "weapon" + }, + "AInd": { + "Order": "animatedead", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandSkull.blp", + "Specialart": "Abilities\\Spells\\Undead\\AnimateDead\\AnimateDeadTarget.mdl" + }, + "AIuf": { + "Order": "unholyfrenzy", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyFrenzy.blp" + }, + "AIcm": { + "Order": "spellsteal", + "Missilespeed": "1000", + "MissileHoming": "1", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellSteal.blp", + "Targetart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealTarget.mdl", + "Targetattach": "overhead", + "Missileart": "Abilities\\Spells\\Human\\SpellSteal\\SpellStealMissile.mdl", + "Missilearc": "0.15" + }, + "AIfz": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorpseExplode.blp", + "Targetart": "Abilities\\Spells\\Demon\\DemonBoltImpact\\DemonBoltImpact.mdl", + "LightningEffect": "AFOD" + }, + "AIdp": { + "Order": "deathpact", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDeathPact.blp", + "Casterart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactCaster.mdl", + "Targetart": "Abilities\\Spells\\Undead\\DeathPact\\DeathPactTarget.mdl", + "Targetattach": "origin" + }, + "AIdd": { + "Order": "defend", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDefend.blp", + "Casterart": "Abilities\\Spells\\Human\\Defend\\DefendCaster.mdl" + }, + "AIbx": { + "Order": "bash", + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNBash.blp" + }, + "AIwm": { + "Order": "wateryminion", + "skinType": "ability", + "UnitSkinID": "nmrr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMurgulTideWarrior.blp", + "Targetart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AIsh": { + "Order": "spiritwolf", + "skinType": "ability", + "UnitSkinID": "otbk", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWolf.blp", + "Specialart": "Abilities\\Spells\\Orc\\FeralSpirit\\feralspiritdone.mdl" + }, + "AIgx": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp" + }, + "AIhl": { + "Order": "holybolt", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHolyBolt.blp", + "Targetart": "Abilities\\Spells\\Human\\HolyBolt\\HolyBoltSpecialArt.mdl" + }, + "AIsz": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNDaggerOfEscape.blp" + }, + "AIpz": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPenguin.blp", + "Effectsound": "PenguinSqueek" + }, + "AIfw": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "Missileart": "Abilities\\Weapons\\FireBallMissile\\FireBallMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIfb\\AIfbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIfb\\AIfbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIft": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFrost.blp", + "Missileart": "Abilities\\Weapons\\LichMissile\\LichMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIob\\AIobTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIob\\AIobSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIlx": { + "skinType": "ability", + "UnitSkinID": "AIpg", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "Missileart": "Abilities\\Weapons\\FarseerMissile\\FarseerMissile.mdl", + "Missilehoming": "1", + "Targetart": "Abilities\\Spells\\Items\\AIlb\\AIlbTarget.mdl", + "Targetattach": "weapon", + "Specialart": "Abilities\\Spells\\Items\\AIlb\\AIlbSpecialArt.mdl", + "Specialattach": "chest" + }, + "AIlp": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPurge.blp" + }, + "AIcs": { + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNCriticalStrike.blp" + }, + "AIcl": { + "Missilespeed": "1500", + "Order": "chainlightning", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNChainLightning.blp", + "Missileart": "Abilities\\Spells\\Orc\\LightningBolt\\LightningBoltMissile.mdl", + "Targetart": "Abilities\\Weapons\\Bolt\\BoltImpact.mdl", + "LightningEffect": "CLPB,CLSB" + }, + "AIxk": { + "order": "berserk", + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNBerserkForTrolls.blp", + "Casterart": "Abilities\\Spells\\Orc\\TrollBerserk\\TrollBeserkerTarget.mdl", + "Effectsound": "BerserkerRage" + }, + "AIdg": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialDagger.blp", + "Targetart": "Abilities\\Spells\\Items\\RitualDagger\\RitualDaggerTarget.mdl", + "Targetattach": "origin", + "Specialart": "Abilities\\Spells\\Items\\AIhe\\AIheTarget.mdl", + "Specialattach": "origin" + }, + "AIg2": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialDagger.blp", + "Targetart": "Abilities\\Spells\\Items\\RitualDagger\\RitualDaggerTarget.mdl", + "Targetattach": "origin" + }, + "AIno": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbofSlowness.blp", + "Casterart": "Abilities\\Spells\\Human\\Slow\\SlowCaster.mdl" + }, + "CmdMove": { + "Art": "CommandMove", + "Buttonpos": "0,0" + }, + "CmdAttack": { + "Art": "CommandAttack", + "Buttonpos": "3,0" + }, + "CmdAttackGround": { + "Art": "CommandAttackGround", + "Buttonpos": "3,1" + }, + "CmdBuild": { + "Art": "CommandBasicStruct", + "Buttonpos": "0,2" + }, + "CmdBuildHuman": { + "Art": "CommandBasicStructHuman", + "Buttonpos": "0,2" + }, + "CmdBuildOrc": { + "Art": "CommandBasicStructOrc", + "Buttonpos": "0,2" + }, + "CmdBuildNightElf": { + "Art": "CommandBasicStructNightElf", + "Buttonpos": "0,2" + }, + "CmdBuildUndead": { + "Art": "CommandBasicStructUndead", + "Buttonpos": "0,2" + }, + "CmdCancel": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdCancelBuild": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdCancelTrain": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdCancelRevive": { + "Art": "CommandCancel", + "ButtonPos": "3,2" + }, + "CmdHoldPos": { + "Art": "CommandHoldPosition", + "Buttonpos": "2,0" + }, + "CmdPatrol": { + "Art": "CommandPatrol", + "Buttonpos": "0,1" + }, + "CmdPurchase": { + "Art": "CommandPurchase", + "Buttonpos": "0,0" + }, + "CmdRally": { + "Art": "CommandRally", + "Buttonpos": "3,1", + "PlacementModel": "UI\\Feedback\\RallyPoint\\RallyPoint.mdl" + }, + "CmdSelectSkill": { + "Art": "CommandNewSkill", + "Buttonpos": "3,1" + }, + "CmdStop": { + "Art": "CommandStop", + "Buttonpos": "1,0" + }, + "Aimp": { + "skinType": "ability", + "Art": "ReplaceableTextures\\PassiveButtons\\PASBTNVorpalBlades.blp", + "skinnableID": "Aimp" + }, + "AEmf": { + "skinType": "ability", + "skinnableID": "AEme", + "UnitSkinID": "Edmf,Edmf,Edmf,Edmf" + }, + "Asa2": { + "skinType": "ability", + "Art:custom,V1": "ReplaceableTextures\\PassiveButtons\\PASBTNPillage.blp" + }, + "DummySec": {}, + "Argl": { + "skinType": "ability", + "skinnableID": "Argl" + }, + "Argd": { + "skinType": "ability", + "skinnableID": "Argd" + }, + "APai": { + "skinType": "ability", + "skinnableID": "APai" + }, + "AIzb": { + "skinType": "ability", + "skinnableID": "AIzb" + }, + "Arlm": { + "skinType": "ability", + "skinnableID": "Arlm" + }, + "AIl1": { + "skinType": "ability", + "skinnableID": "AIl1" + }, + "Attu": { + "skinType": "ability", + "skinnableID": "Attu" + }, + "AIlz": { + "skinType": "ability", + "skinnableID": "AIlz" + }, + "AIlf": { + "skinType": "ability", + "skinnableID": "AIlf" + }, + "Agld": { + "skinType": "ability", + "skinnableID": "Agld" + }, + "Amin": { + "skinType": "ability", + "skinnableID": "Amin" + }, + "Adda": { + "skinType": "ability", + "skinnableID": "Adda" + }, + "Agho": { + "skinType": "ability", + "skinnableID": "Agho" + }, + "Aalr": { + "skinType": "ability", + "skinnableID": "Aalr" + }, + "Advc": { + "skinType": "ability", + "skinnableID": "Advc" + }, + "Abds": { + "skinType": "ability", + "skinnableID": "Abds" + }, + "Abdl": { + "skinType": "ability", + "skinnableID": "Abdl" + }, + "AIrn": { + "skinType": "ability", + "skinnableID": "AIrn" + }, + "Apiv": { + "skinType": "ability", + "skinnableID": "Apiv" + }, + "AIi3": { + "skinType": "ability", + "skinnableID": "AIi3" + }, + "AIi4": { + "skinType": "ability", + "skinnableID": "AIi4" + }, + "AIi5": { + "skinType": "ability", + "skinnableID": "AIi5" + }, + "Avul": { + "skinType": "ability", + "skinnableID": "Avul" + }, + "Aatk": { + "skinType": "ability", + "skinnableID": "Aatk" + }, + "Aatp": { + "skinType": "ability", + "skinnableID": "Aatp", + "Art": "ReplaceableTextures\\CommandButtons\\BTNAirAttackOn.blp", + "Unart": "ReplaceableTextures\\CommandButtons\\BTNAirAttackOff.blp" + }, + "Batp": { + "skinType": "buff", + "Buffart": "ReplaceableTextures\\CommandButtons\\BTNAirAttackOn.blp" + }, + "Ansp": { + "skinType": "ability", + "skinnableID": "Ansp" + }, + "Afiu": { + "skinType": "ability", + "skinnableID": "Afiu" + }, + "Afir": { + "skinType": "ability", + "skinnableID": "Afir" + }, + "Afin": { + "skinType": "ability", + "skinnableID": "Afin" + }, + "Afio": { + "skinType": "ability", + "skinnableID": "Afio" + }, + "Afih": { + "skinType": "ability", + "skinnableID": "Afih" + }, + "Aloc": { + "skinType": "ability", + "skinnableID": "Aloc" + }, + "Srtt": { + "skinType": "ability", + "skinnableID": "Srtt" + }, + "Abgl": { + "skinType": "ability", + "skinnableID": "Abgl" + }, + "Atdp": { + "skinType": "ability", + "skinnableID": "Atdp" + }, + "Abgs": { + "skinType": "ability", + "skinnableID": "Abgs" + }, + "Awrp": { + "skinType": "ability", + "skinnableID": "Awrp" + }, + "Amnx": { + "skinType": "ability", + "skinnableID": "Amnx" + }, + "Amnz": { + "skinType": "ability", + "skinnableID": "Amnz" + }, + "AIx4": { + "skinType": "ability", + "skinnableID": "AIx4" + }, + "AIx3": { + "skinType": "ability", + "skinnableID": "AIx3" + }, + "AIs3": { + "skinType": "ability", + "skinnableID": "AIs3" + }, + "AIa3": { + "skinType": "ability", + "skinnableID": "AIa3" + }, + "AIs4": { + "skinType": "ability", + "skinnableID": "AIs4" + }, + "AIs5": { + "skinType": "ability", + "skinnableID": "AIs5" + }, + "AIa4": { + "skinType": "ability", + "skinnableID": "AIa4" + }, + "AIa5": { + "skinType": "ability", + "skinnableID": "AIa5" + }, + "AChv": { + "skinType": "ability", + "skinnableID": "AChv" + }, + "Awan": { + "skinType": "ability", + "skinnableID": "Awan" + }, + "Aegm": { + "skinType": "ability", + "skinnableID": "Aegm" + }, + "Aeth": { + "skinType": "ability", + "skinnableID": "Aeth" + }, + "Atlp": { + "skinType": "ability", + "skinnableID": "Atlp" + }, + "AIpw": { + "skinType": "ability", + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp", + "Targetart": "Abilities\\Spells\\Human\\DispelMagic\\DispelMagicTarget.mdl" + } + }, + "item": { + "ckng": { + "itemID": "ckng", + "comment": "Crown of Kings +5", + "scriptname": "CrownofKings5", + "version": 0, + "class": "Artifact", + "Level": 8, + "oldLevel": 10, + "abilList": "AIx5", + "cooldownID": "AIx5", + "ignoreCD": 0, + "uses": "-", + "prio": 126, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHelmutPurple.blp", + "skinType": "item", + "skinnableID": "ckng", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "modt": { + "itemID": "modt", + "comment": "mask of death", + "scriptname": "maskofdeath", + "version": 0, + "class": "Artifact", + "Level": 8, + "oldLevel": 10, + "abilList": "AIva", + "cooldownID": "AIva", + "ignoreCD": 0, + "uses": "-", + "prio": 138, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMaskOfDeath.blp", + "skinType": "item", + "skinnableID": "modt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tkno": { + "itemID": "tkno", + "comment": "Tome of Power", + "scriptname": "TomeofPower", + "version": 0, + "class": "Artifact", + "Level": 8, + "oldLevel": 9, + "abilList": "AIlm", + "cooldownID": "AIlm", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "skinType": "item", + "skinnableID": "tkno", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeBrown\\tomeBrown.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ratf": { + "itemID": "ratf", + "comment": "Claws of Attack +15", + "scriptname": "ClawsofAttack15", + "version": 0, + "class": "Artifact", + "Level": 7, + "oldLevel": 9, + "abilList": "AItf", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 53, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 800, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp", + "skinType": "item", + "skinnableID": "ratf", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ofro": { + "itemID": "ofro", + "comment": "Orb of Frost", + "scriptname": "OrbofFrost", + "version": 0, + "class": "Artifact", + "Level": 7, + "oldLevel": 7, + "abilList": "AIob", + "cooldownID": "AIob", + "ignoreCD": 0, + "uses": "-", + "prio": 97, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 800, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFrost.blp", + "skinType": "item", + "skinnableID": "ofro", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "infs": { + "itemID": "infs", + "comment": "Inferno Stone", + "scriptname": "InfernoStone", + "version": 0, + "class": "Artifact", + "Level": 7, + "oldLevel": 8, + "abilList": "AIin", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 146, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 800, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNInfernalStone.blp", + "skinType": "item", + "skinnableID": "infs", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "desc": { + "itemID": "desc", + "comment": "Dagger of Escape", + "scriptname": "DaggerofEscape", + "version": 1, + "class": "Artifact", + "Level": 7, + "oldLevel": 0, + "abilList": "AIbk", + "cooldownID": "AIbk", + "ignoreCD": 0, + "uses": "-", + "prio": 47, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 800, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDaggerOfEscape.blp", + "skinType": "item", + "skinnableID": "desc", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "fgdg": { + "itemID": "fgdg", + "comment": "Demonic Figurine", + "scriptname": "DemonicFigurine", + "version": 0, + "class": "Charged", + "Level": 6, + "oldLevel": 8, + "abilList": "AIfu", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 139, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDoomGuard.blp", + "skinType": "item", + "skinnableID": "fgdg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "engr": { + "itemID": "engr", + "comment": "Engraved Scale", + "scriptname": "EngravedScale", + "version": 0, + "class": "Charged", + "Level": 6, + "oldLevel": 8, + "abilList": "AIes", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 141, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNpurpleDragonSpawn.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNDragonSpawnOverseer.blp", + "skinType": "item", + "skinnableID": "engr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shar": { + "itemID": "shar", + "comment": "Ice Shard", + "scriptname": "IceShard", + "version": 1, + "class": "Charged", + "Level": 6, + "oldLevel": 0, + "abilList": "AIir", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 135, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNIceShard.blp", + "skinType": "item", + "skinnableID": "shar", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ccmd": { + "itemID": "ccmd", + "comment": "Scepter of Mastery", + "scriptname": "ScepterofMastery", + "version": 0, + "class": "Charged", + "Level": 6, + "oldLevel": 0, + "abilList": "AIco", + "cooldownID": "AIco", + "ignoreCD": 0, + "uses": 1, + "prio": 143, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNScepterOfMastery.blp", + "skinType": "item", + "skinnableID": "ccmd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wild": { + "itemID": "wild", + "comment": "Amulet of the Wild", + "scriptname": "AmuletoftheWild", + "version": 1, + "class": "Charged", + "Level": 6, + "oldLevel": 0, + "abilList": "AIuw", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 136, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmuletOftheWild.blp", + "skinType": "item", + "skinnableID": "wild", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "scav": { + "itemID": "scav", + "comment": "Scepter of Avarice", + "scriptname": "ScepterOfAvarice", + "version": 0, + "class": "Charged", + "Level": 6, + "oldLevel": 8, + "abilList": "AIts", + "cooldownID": "AIts", + "ignoreCD": 0, + "uses": 1, + "prio": 134, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTransmute.blp", + "skinType": "item", + "skinnableID": "scav", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "odef": { + "itemID": "odef", + "comment": "Orb of Darkness", + "scriptname": "OrbofDarkness", + "version": 1, + "class": "Permanent", + "Level": 6, + "oldLevel": 0, + "abilList": "AIdf", + "cooldownID": "AIdf", + "ignoreCD": 0, + "uses": "-", + "prio": 96, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "odef", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rde4": { + "itemID": "rde4", + "comment": "Ring of Protection +5", + "scriptname": "RingofProtection5", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 9, + "abilList": "AId5", + "cooldownID": "AIde", + "ignoreCD": 0, + "uses": "-", + "prio": 117, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp", + "skinType": "item", + "skinnableID": "rde4", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pmna": { + "itemID": "pmna", + "comment": "Pendant of Mana", + "scriptname": "PendantofMana", + "version": 0, + "class": "Permanent", + "Level": 6, + "oldLevel": 7, + "abilList": "AIbm", + "cooldownID": "AImm", + "ignoreCD": 0, + "uses": "-", + "prio": 61, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPendantOfMana.blp", + "skinType": "item", + "skinnableID": "pmna", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rhth": { + "itemID": "rhth", + "comment": "Khadgar's Gem of Health", + "scriptname": "KhadgarsGemofHealth", + "version": 0, + "class": "Permanent", + "Level": 6, + "oldLevel": 7, + "abilList": "AIl2", + "cooldownID": "AIml", + "ignoreCD": 0, + "uses": "-", + "prio": 128, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPeriapt1.blp", + "skinType": "item", + "skinnableID": "rhth", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ssil": { + "itemID": "ssil", + "comment": "Staff of Silence", + "scriptname": "StaffofSilence", + "version": 1, + "class": "Permanent", + "Level": 6, + "oldLevel": 0, + "abilList": "AIse", + "cooldownID": "ANsi", + "ignoreCD": 0, + "uses": "-", + "prio": 6, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSilence.blp", + "skinType": "item", + "skinnableID": "ssil", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "spsh": { + "itemID": "spsh", + "comment": "Amulet of Spell Shield", + "scriptname": "AmuletofSpellShield", + "version": 1, + "class": "Permanent", + "Level": 6, + "oldLevel": 5, + "abilList": "ANss", + "cooldownID": "ANss", + "ignoreCD": 0, + "uses": "-", + "prio": 113, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellShieldAmulet.blp", + "skinType": "item", + "skinnableID": "spsh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sres": { + "itemID": "sres", + "comment": "Scroll of Restoration", + "scriptname": "ScrollofRestoration", + "version": 0, + "class": "Charged", + "Level": 5, + "oldLevel": 7, + "abilList": "AIra", + "cooldownID": "AIra", + "ignoreCD": 0, + "uses": 1, + "prio": 144, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHealing.blp", + "skinType": "item", + "skinnableID": "sres", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pdi2": { + "itemID": "pdi2", + "comment": "Potion of Divinity (Invulnerability)", + "scriptname": "PotionofDivinity2", + "version": 1, + "class": "Charged", + "Level": 5, + "oldLevel": 0, + "abilList": "AIvg", + "cooldownID": "AIvu", + "ignoreCD": 0, + "uses": 1, + "prio": 125, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfDivinity.blp", + "skinType": "item", + "skinnableID": "pdi2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pres": { + "itemID": "pres", + "comment": "Potion of Restoration", + "scriptname": "PotionofRestoration", + "version": 0, + "class": "Charged", + "Level": 5, + "oldLevel": 6, + "abilList": "AIre", + "cooldownID": "AIre", + "ignoreCD": 0, + "uses": 1, + "prio": 132, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfRestoration.blp", + "skinType": "item", + "skinnableID": "pres", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "iotw": { + "itemID": "iotw", + "comment": "Idol of the wild", + "scriptname": "Idolofthewild", + "version": 0, + "class": "Charged", + "Level": 5, + "oldLevel": 6, + "abilList": "AIut", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 84, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFurbolgTracker.blp", + "skinType": "item", + "skinnableID": "iotw", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "fgfh": { + "itemID": "fgfh", + "comment": "Spiked Collar", + "scriptname": "SpikedCollar", + "version": 0, + "class": "Charged", + "Level": 5, + "oldLevel": 6, + "abilList": "AIfh", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 83, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFelHound.blp", + "skinType": "item", + "skinnableID": "fgfh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "fgbd": { + "itemID": "fgbd", + "comment": "Blue Drake Egg", + "scriptname": "BlueDrakeEgg", + "version": 0, + "class": "Charged", + "Level": 5, + "oldLevel": 6, + "abilList": "AIbd", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 77, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAzureDragon.blp", + "Art:hd": "ReplaceableTextures\\CommandButtons\\BTNAzureDrake.blp", + "skinType": "item", + "skinnableID": "fgbd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "fgrg": { + "itemID": "fgrg", + "comment": "Stone Token", + "scriptname": "StoneToken", + "version": 0, + "class": "Charged", + "Level": 5, + "oldLevel": 6, + "abilList": "AIfr", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 140, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRockGolem.blp", + "skinType": "item", + "skinnableID": "fgrg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "hcun": { + "itemID": "hcun", + "comment": "Hood of Cunning", + "scriptname": "HoodofCunning", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 9, + "abilList": "AIa5,AIi5", + "cooldownID": "AIa5", + "ignoreCD": 0, + "uses": "-", + "prio": 62, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHoodOfCunning.blp", + "skinType": "item", + "skinnableID": "hcun", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "hval": { + "itemID": "hval", + "comment": "Helm of Valor", + "scriptname": "HelmofValor", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 9, + "abilList": "AIs5,AIa5", + "cooldownID": "AIs5", + "ignoreCD": 0, + "uses": "-", + "prio": 108, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHelmOfValor.blp", + "skinType": "item", + "skinnableID": "hval", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "mcou": { + "itemID": "mcou", + "comment": "Medallion of Courage", + "scriptname": "MedallionofCourage", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 9, + "abilList": "AIs5,AIi5", + "cooldownID": "AIs5", + "ignoreCD": 0, + "uses": "-", + "prio": 87, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMedalionOfCourage.blp", + "skinType": "item", + "skinnableID": "mcou", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ajen": { + "itemID": "ajen", + "comment": "Ancient Janggo of Endurance", + "scriptname": "AncientJanggoofEndurance", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 7, + "abilList": "AIae", + "cooldownID": "AOae", + "ignoreCD": 0, + "uses": "-", + "prio": 118, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNJanggo.blp", + "skinType": "item", + "skinnableID": "ajen", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "clfm": { + "itemID": "clfm", + "comment": "Cloak of Flames", + "scriptname": "CloakofFlames", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 7, + "abilList": "AIcf", + "cooldownID": "AIcf", + "ignoreCD": 0, + "uses": "-", + "prio": 120, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloakOfFlames.blp", + "skinType": "item", + "skinnableID": "clfm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ratc": { + "itemID": "ratc", + "comment": "Claws of Attack +12", + "scriptname": "ClawsofAttack12", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 7, + "abilList": "AItc", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 49, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp", + "skinType": "item", + "skinnableID": "ratc", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "war2": { + "itemID": "war2", + "comment": "Warsong Battle Drums (Kodo)", + "scriptname": "WarsongBattleDrums2", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 7, + "abilList": "AIwd", + "cooldownID": "Aakb", + "ignoreCD": 0, + "uses": "-", + "prio": 38, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDrum.blp", + "skinType": "item", + "skinnableID": "war2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "kpin": { + "itemID": "kpin", + "comment": "Khadgar's Pipe of Insight", + "scriptname": "KhadgarsPipeofInsight", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 7, + "abilList": "AIba", + "cooldownID": "AHab", + "ignoreCD": 0, + "uses": "-", + "prio": 60, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPipeOfInsight.blp", + "skinType": "item", + "skinnableID": "kpin", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "lgdh": { + "itemID": "lgdh", + "comment": "Legion Doom-Horn", + "scriptname": "LegionDoomHorn", + "version": 0, + "class": "Permanent", + "Level": 5, + "oldLevel": 7, + "abilList": "AIau", + "cooldownID": "AUau", + "ignoreCD": 0, + "uses": "-", + "prio": 124, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHornOfDoom.blp", + "skinType": "item", + "skinnableID": "lgdh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ankh": { + "itemID": "ankh", + "comment": "Ankh of Reincarnation", + "scriptname": "AnkhofReincarnation", + "version": 0, + "class": "Charged", + "Level": 4, + "oldLevel": 6, + "abilList": "AIrc", + "cooldownID": "AIrc", + "ignoreCD": 0, + "uses": 1, + "prio": 142, + "usable": 0, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnkh.blp", + "skinType": "item", + "skinnableID": "ankh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "whwd": { + "itemID": "whwd", + "comment": "Healing Wards", + "scriptname": "HealingWards", + "version": 0, + "class": "Charged", + "Level": 4, + "oldLevel": 6, + "abilList": "AIhw", + "cooldownID": "Ahwd", + "ignoreCD": 0, + "uses": 2, + "prio": 85, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingWard.blp", + "skinType": "item", + "skinnableID": "whwd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "fgsk": { + "itemID": "fgsk", + "comment": "Book of the Dead", + "scriptname": "BookoftheDead", + "version": 0, + "class": "Charged", + "Level": 4, + "oldLevel": 6, + "abilList": "AIfs", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 55, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBookOfTheDead.blp", + "skinType": "item", + "skinnableID": "fgsk", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wcyc": { + "itemID": "wcyc", + "comment": "Wand of the Wind", + "scriptname": "WandoftheWind", + "version": 0, + "class": "Charged", + "Level": 4, + "oldLevel": 6, + "abilList": "AIcy", + "cooldownID": "Acyc", + "ignoreCD": 0, + "uses": 2, + "prio": 30, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfCyclone.blp", + "skinType": "item", + "skinnableID": "wcyc", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "hlst": { + "itemID": "hlst", + "comment": "Health Stone", + "scriptname": "HealthStone", + "version": 0, + "class": "Charged", + "Level": 4, + "oldLevel": 4, + "abilList": "AIh2,Arll", + "cooldownID": "AIhe", + "ignoreCD": 0, + "uses": 1, + "prio": 122, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealthStone.blp", + "skinType": "item", + "skinnableID": "hlst", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "mnst": { + "itemID": "mnst", + "comment": "Mana Stone", + "scriptname": "ManaStone", + "version": 0, + "class": "Charged", + "Level": 4, + "oldLevel": 4, + "abilList": "AIm2,AIrn", + "cooldownID": "AIma", + "ignoreCD": 0, + "uses": 1, + "prio": 90, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaStone.blp", + "skinType": "item", + "skinnableID": "mnst", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "belv": { + "itemID": "belv", + "comment": "Boots of Quel'Thalas +6", + "scriptname": "BootsofQuelThalas6", + "version": 0, + "class": "Permanent", + "Level": 4, + "oldLevel": 8, + "abilList": "AIa6", + "cooldownID": "AIa6", + "ignoreCD": 0, + "uses": "-", + "prio": 78, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBoots.blp", + "skinType": "item", + "skinnableID": "belv", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "bgst": { + "itemID": "bgst", + "comment": "Belt of Giant Strength +6", + "scriptname": "BeltofGiantStrength6", + "version": 0, + "class": "Permanent", + "Level": 4, + "oldLevel": 8, + "abilList": "AIs6", + "cooldownID": "AIs6", + "ignoreCD": 0, + "uses": "-", + "prio": 106, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBelt.blp", + "skinType": "item", + "skinnableID": "bgst", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ciri": { + "itemID": "ciri", + "comment": "Robe of the Magi +6", + "scriptname": "RobeoftheMagi6", + "version": 0, + "class": "Permanent", + "Level": 4, + "oldLevel": 8, + "abilList": "AIi6", + "cooldownID": "AIi6", + "ignoreCD": 0, + "uses": "-", + "prio": 43, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRobeOfTheMagi.blp", + "skinType": "item", + "skinnableID": "ciri", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "lhst": { + "itemID": "lhst", + "comment": "Lion Horn of Stormwind", + "scriptname": "LionHornofStormwind", + "version": 0, + "class": "Permanent", + "Level": 4, + "oldLevel": 7, + "abilList": "AIad", + "cooldownID": "AHad", + "ignoreCD": 0, + "uses": "-", + "prio": 76, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNLionHorn.blp", + "skinType": "item", + "skinnableID": "lhst", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "afac": { + "itemID": "afac", + "comment": "Alleria's Flute of Accuracy", + "scriptname": "AlleriasFluteofAccuracy", + "version": 0, + "class": "Permanent", + "Level": 4, + "oldLevel": 7, + "abilList": "AIar", + "cooldownID": "AEar", + "ignoreCD": 0, + "uses": "-", + "prio": 46, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAlleriaFlute.blp", + "skinType": "item", + "skinnableID": "afac", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sbch": { + "itemID": "sbch", + "comment": "Scourge Bone Chimes", + "scriptname": "ScourgeBoneChimes", + "version": 0, + "class": "Permanent", + "Level": 4, + "oldLevel": 7, + "abilList": "AIav", + "cooldownID": "AUav", + "ignoreCD": 0, + "uses": "-", + "prio": 71, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBoneChimes.blp", + "skinType": "item", + "skinnableID": "sbch", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "brac": { + "itemID": "brac", + "comment": "Runed Bracers", + "scriptname": "RunedBracers", + "version": 1, + "class": "Permanent", + "Level": 4, + "oldLevel": 4, + "abilList": "AIsr", + "cooldownID": "AIsr", + "ignoreCD": 0, + "uses": "-", + "prio": 114, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRunedBracers.blp", + "skinType": "item", + "skinnableID": "brac", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rwiz": { + "itemID": "rwiz", + "comment": "Sobi Mask", + "scriptname": "SobiMask", + "version": 0, + "class": "Permanent", + "Level": 4, + "oldLevel": 4, + "abilList": "AIrm", + "cooldownID": "AIrm", + "ignoreCD": 0, + "uses": "-", + "prio": 64, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "2,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSobiMask.blp", + "skinType": "item", + "skinnableID": "rwiz", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pghe": { + "itemID": "pghe", + "comment": "potion of greater healing", + "scriptname": "potionofgreaterhealing", + "version": 0, + "class": "Charged", + "Level": 3, + "oldLevel": 3, + "abilList": "AIh2", + "cooldownID": "AIhe", + "ignoreCD": 0, + "uses": 1, + "prio": 121, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionGreen.blp", + "skinType": "item", + "skinnableID": "pghe", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pgma": { + "itemID": "pgma", + "comment": "Potion of Greater Mana", + "scriptname": "PotionofGreaterMana", + "version": 0, + "class": "Charged", + "Level": 3, + "oldLevel": 3, + "abilList": "AIm2", + "cooldownID": "AIma", + "ignoreCD": 0, + "uses": 1, + "prio": 68, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionBlueBig.blp", + "skinType": "item", + "skinnableID": "pgma", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pnvu": { + "itemID": "pnvu", + "comment": "potion of invulnerability", + "scriptname": "potionofinvulnerability", + "version": 0, + "class": "Charged", + "Level": 3, + "oldLevel": 3, + "abilList": "AIvu", + "cooldownID": "AIvu", + "ignoreCD": 0, + "uses": 1, + "prio": 102, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterInvulneralbility.blp", + "skinType": "item", + "skinnableID": "pnvu", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sror": { + "itemID": "sror", + "comment": "Scroll of the Beast", + "scriptname": "ScrolloftheBeast", + "version": 0, + "class": "Charged", + "Level": 3, + "oldLevel": 3, + "abilList": "AIrr", + "cooldownID": "Aroa", + "ignoreCD": 0, + "uses": 1, + "prio": 63, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnazzyScrollGreen.blp", + "skinType": "item", + "skinnableID": "sror", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "woms": { + "itemID": "woms", + "comment": "Wand of Mana Stealing", + "scriptname": "WandofManaStealing", + "version": 1, + "class": "Charged", + "Level": 3, + "oldLevel": 3, + "abilList": "Aste", + "cooldownID": "Aste", + "ignoreCD": 0, + "uses": 2, + "prio": 69, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfManaSteal.blp", + "skinType": "item", + "skinnableID": "woms", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "crys": { + "itemID": "crys", + "comment": "Crystal Ball", + "scriptname": "CrystalBall", + "version": 0, + "class": "Charged", + "Level": 2, + "oldLevel": 3, + "abilList": "AIta", + "cooldownID": "AIta", + "ignoreCD": 0, + "uses": 3, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCrystalBall.blp", + "skinType": "item", + "skinnableID": "crys", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "evtl": { + "itemID": "evtl", + "comment": "Talisman of Evasion", + "scriptname": "TalismanofEvasion", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 7, + "abilList": "AIev", + "cooldownID": "AEev", + "ignoreCD": 0, + "uses": "-", + "prio": 99, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTalisman.blp", + "skinType": "item", + "skinnableID": "evtl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "penr": { + "itemID": "penr", + "comment": "Pendant of Energy", + "scriptname": "PendantofEnergy", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 4, + "abilList": "AImb", + "cooldownID": "AImm", + "ignoreCD": 0, + "uses": "-", + "prio": 50, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPendantOfEnergy.blp", + "skinType": "item", + "skinnableID": "penr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "prvt": { + "itemID": "prvt", + "comment": "Periapt of Vitality", + "scriptname": "PeriaptofVitality", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 4, + "abilList": "AIlf", + "cooldownID": "AIml", + "ignoreCD": 0, + "uses": "-", + "prio": 107, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "1,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPeriapt.blp", + "skinType": "item", + "skinnableID": "prvt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rat9": { + "itemID": "rat9", + "comment": "Claws of Attack +9", + "scriptname": "ClawsofAttack9", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 4, + "abilList": "AIt9", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 48, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp", + "skinType": "item", + "skinnableID": "rat9", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rde3": { + "itemID": "rde3", + "comment": "Ring of Protection +4", + "scriptname": "RingofProtection4", + "version": 0, + "class": "Permanent", + "Level": 2, + "oldLevel": 8, + "abilList": "AId4", + "cooldownID": "AIde", + "ignoreCD": 0, + "uses": "-", + "prio": 116, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp", + "skinType": "item", + "skinnableID": "rde3", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rlif": { + "itemID": "rlif", + "comment": "Ring of regeneration", + "scriptname": "Ringofregeneration", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 4, + "abilList": "Arel", + "cooldownID": "Arel", + "ignoreCD": 0, + "uses": "-", + "prio": 42, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingSkull.blp", + "skinType": "item", + "skinnableID": "rlif", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "bspd": { + "itemID": "bspd", + "comment": "Boots of Speed", + "scriptname": "BootsofSpeed", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 2, + "abilList": "AIms", + "cooldownID": "AIms", + "ignoreCD": 0, + "uses": "-", + "prio": 41, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 60, + "stockStart": 220, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 2, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBootsOfSpeed.blp", + "skinType": "item", + "skinnableID": "bspd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rej3": { + "itemID": "rej3", + "comment": "Replenishment Potion", + "scriptname": "ReplenishmentPotion", + "version": 1, + "class": "Charged", + "Level": 2, + "oldLevel": 0, + "abilList": "AIp3", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 1, + "prio": 75, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 0, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 1, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRejuvPotion.blp", + "skinType": "item", + "skinnableID": "rej3", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "will": { + "itemID": "will", + "comment": "Wand of Illusion", + "scriptname": "WandofIllusion", + "version": 0, + "class": "Charged", + "Level": 2, + "oldLevel": 3, + "abilList": "AIil", + "cooldownID": "AIil", + "ignoreCD": 0, + "uses": 2, + "prio": 14, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWand.blp", + "skinType": "item", + "skinnableID": "will", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wlsd": { + "itemID": "wlsd", + "comment": "Wand of Lightning Shield", + "scriptname": "WandofLightningShield", + "version": 0, + "class": "Charged", + "Level": 2, + "oldLevel": 3, + "abilList": "AIls", + "cooldownID": "AIls", + "ignoreCD": 0, + "uses": 2, + "prio": 8, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStarWand.blp", + "skinType": "item", + "skinnableID": "wlsd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wswd": { + "itemID": "wswd", + "comment": "Sentry Wards", + "scriptname": "SentryWards", + "version": 0, + "class": "Charged", + "Level": 2, + "oldLevel": 3, + "abilList": "AIsw", + "cooldownID": "Aeye", + "ignoreCD": 0, + "uses": 2, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentryWard.blp", + "skinType": "item", + "skinnableID": "wswd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "cnob": { + "itemID": "cnob", + "comment": "Circlet of Nobility", + "scriptname": "CircletofNobility", + "version": 0, + "class": "Permanent", + "Level": 3, + "oldLevel": 4, + "abilList": "AIx2", + "cooldownID": "AIx2", + "ignoreCD": 0, + "uses": "-", + "prio": 79, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNCirclet.blp", + "skinType": "item", + "skinnableID": "cnob", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gcel": { + "itemID": "gcel", + "comment": "Gloves of Haste", + "scriptname": "GlovesofHaste", + "version": 0, + "class": "Permanent", + "Level": 2, + "oldLevel": 2, + "abilList": "AIsx", + "cooldownID": "AIas", + "ignoreCD": 0, + "uses": "-", + "prio": 32, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlove.blp", + "skinType": "item", + "skinnableID": "gcel", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rat6": { + "itemID": "rat6", + "comment": "Claws of Attack +6", + "scriptname": "ClawsofAttack6", + "version": 0, + "class": "Permanent", + "Level": 2, + "oldLevel": 2, + "abilList": "AItj", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 44, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp", + "skinType": "item", + "skinnableID": "rat6", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rde2": { + "itemID": "rde2", + "comment": "Ring of Protection +3", + "scriptname": "RingofProtection3", + "version": 0, + "class": "Permanent", + "Level": 2, + "oldLevel": 0, + "abilList": "AId3", + "cooldownID": "AIde", + "ignoreCD": 0, + "uses": "-", + "prio": 105, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp", + "skinType": "item", + "skinnableID": "rde2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tdx2": { + "itemID": "tdx2", + "comment": "Tome of Agility +2", + "scriptname": "TomeofAgility2", + "version": 0, + "class": "PowerUp", + "Level": 2, + "oldLevel": 5, + "abilList": "AIgm", + "cooldownID": "AIgm", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "skinType": "item", + "skinnableID": "tdx2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeGreen\\tomeGreen.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tin2": { + "itemID": "tin2", + "comment": "Tome of Intelligence +2", + "scriptname": "TomeofIntelligence2", + "version": 0, + "class": "PowerUp", + "Level": 2, + "oldLevel": 5, + "abilList": "AItm", + "cooldownID": "AItm", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "skinType": "item", + "skinnableID": "tin2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeBlue\\tomeBlue.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tpow": { + "itemID": "tpow", + "comment": "Tome of Knowledge", + "scriptname": "TomeofKnowledge", + "version": 0, + "class": "PowerUp", + "Level": 2, + "oldLevel": 5, + "abilList": "AIxm", + "cooldownID": "AIxm", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeRed.blp", + "skinType": "item", + "skinnableID": "tpow", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tome\\tome.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tst2": { + "itemID": "tst2", + "comment": "Tome of Strength +2", + "scriptname": "TomeofStrength2", + "version": 0, + "class": "PowerUp", + "Level": 2, + "oldLevel": 5, + "abilList": "AInm", + "cooldownID": "AInm", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "skinType": "item", + "skinnableID": "tst2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeRed\\tomeRed.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pnvl": { + "itemID": "pnvl", + "comment": "Potion of Lesser Invulnerability", + "scriptname": "PotionofLesserInvulnerability", + "version": 1, + "class": "Purchasable", + "Level": 2, + "oldLevel": 0, + "abilList": "AIvl", + "cooldownID": "AIvu", + "ignoreCD": 0, + "uses": 1, + "prio": 40, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "2,2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserInvulneralbility.blp", + "skinType": "item", + "skinnableID": "pnvl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "clsd": { + "itemID": "clsd", + "comment": "Cloak of Shadows", + "scriptname": "CloakofShadows", + "version": 0, + "class": "Permanent", + "Level": 1, + "oldLevel": 2, + "abilList": "AIhm", + "cooldownID": "AIhm", + "ignoreCD": 0, + "uses": "-", + "prio": 2, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloak.blp", + "skinType": "item", + "skinnableID": "clsd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rag1": { + "itemID": "rag1", + "comment": "Slippers of Agility +3", + "scriptname": "SlippersofAgility3", + "version": 0, + "class": "Permanent", + "Level": 1, + "oldLevel": 2, + "abilList": "AIa3", + "cooldownID": "AIa3", + "ignoreCD": 0, + "uses": "-", + "prio": 104, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSlippersOfAgility.blp", + "skinType": "item", + "skinnableID": "rag1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rin1": { + "itemID": "rin1", + "comment": "Mantle of Intelligence +3", + "scriptname": "MantleofIntelligence3", + "version": 0, + "class": "Permanent", + "Level": 1, + "oldLevel": 2, + "abilList": "AIi3", + "cooldownID": "AIi3", + "ignoreCD": 0, + "uses": "-", + "prio": 23, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMantleOfIntelligence.blp", + "skinType": "item", + "skinnableID": "rin1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rst1": { + "itemID": "rst1", + "comment": "Gauntlets of Ogre Strength +3", + "scriptname": "GauntletsofOgreStrength3", + "version": 0, + "class": "Permanent", + "Level": 1, + "oldLevel": 2, + "abilList": "AIs3", + "cooldownID": "AIs3", + "ignoreCD": 0, + "uses": "-", + "prio": 58, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGauntletsOfOgrePower.blp", + "skinType": "item", + "skinnableID": "rst1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "manh": { + "itemID": "manh", + "comment": "Manual of Health", + "scriptname": "ManualofHealth", + "version": 0, + "class": "PowerUp", + "Level": 1, + "oldLevel": 1, + "abilList": "AImh", + "cooldownID": "AImi", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNManual.blp", + "skinType": "item", + "skinnableID": "manh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tome\\tome.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tdex": { + "itemID": "tdex", + "comment": "Tome of Agility +1", + "scriptname": "TomeofAgility1", + "version": 0, + "class": "PowerUp", + "Level": 1, + "oldLevel": 1, + "abilList": "AIam", + "cooldownID": "AIam", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "skinType": "item", + "skinnableID": "tdex", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeGreen\\tomeGreen.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tint": { + "itemID": "tint", + "comment": "Tome of Intelligence", + "scriptname": "TomeofIntelligence", + "version": 0, + "class": "PowerUp", + "Level": 1, + "oldLevel": 1, + "abilList": "AIim", + "cooldownID": "AIim", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "skinType": "item", + "skinnableID": "tint", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeBlue\\tomeBlue.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tstr": { + "itemID": "tstr", + "comment": "Tome of Strength +1", + "scriptname": "TomeofStrength1", + "version": 0, + "class": "PowerUp", + "Level": 1, + "oldLevel": 1, + "abilList": "AIsm", + "cooldownID": "AIsm", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTome.blp", + "skinType": "item", + "skinnableID": "tstr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeRed\\tomeRed.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pomn": { + "itemID": "pomn", + "comment": "Potion of Omniscience", + "scriptname": "PotionofOmniscience", + "version": 1, + "class": "Charged", + "Level": 0, + "oldLevel": 0, + "abilList": "AIrv", + "cooldownID": "AIrv", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfOmniscience.blp", + "skinType": "item", + "skinnableID": "pomn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wshs": { + "itemID": "wshs", + "comment": "Wand of Shadowsight", + "scriptname": "WandofShadowsight", + "version": 1, + "class": "Charged", + "Level": 0, + "oldLevel": 0, + "abilList": "Ashs", + "cooldownID": "Ashs", + "ignoreCD": 0, + "uses": 2, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfShadowSight.blp", + "skinType": "item", + "skinnableID": "wshs", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rej6": { + "itemID": "rej6", + "comment": "Greater Scroll of Replenishment", + "scriptname": "GreaterScrollofReplenishment", + "version": 1, + "class": "Miscellaneous", + "Level": 6, + "oldLevel": 0, + "abilList": "AIp6", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 1, + "prio": 130, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 0, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 1, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvScroll.blp", + "skinType": "item", + "skinnableID": "rej6", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rej5": { + "itemID": "rej5", + "comment": "Lesser Scroll of Replenishment", + "scriptname": "LesserScrollofReplenishment", + "version": 1, + "class": "Miscellaneous", + "Level": 5, + "oldLevel": 0, + "abilList": "AIp5", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 1, + "prio": 129, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 0, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 1, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserRejuvScroll.blp", + "skinType": "item", + "skinnableID": "rej5", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rej4": { + "itemID": "rej4", + "comment": "Greater Replenishment Potion", + "scriptname": "GreaterReplenishmentPotion", + "version": 1, + "class": "Miscellaneous", + "Level": 4, + "oldLevel": 0, + "abilList": "AIp4", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 1, + "prio": 119, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 0, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 1, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterRejuvPotion.blp", + "skinType": "item", + "skinnableID": "rej4", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ram4": { + "itemID": "ram4", + "comment": "Fourth Ring of the Archmagi", + "scriptname": "FourthRingoftheArchmagi", + "version": 1, + "class": "Miscellaneous", + "Level": 4, + "oldLevel": 2, + "abilList": "AIx3,AIba", + "cooldownID": "AHab", + "ignoreCD": 0, + "uses": "-", + "prio": 145, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 750, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingJadeFalcon.blp", + "skinType": "item", + "skinnableID": "ram4", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "dsum": { + "itemID": "dsum", + "comment": "Diamond of Summoning", + "scriptname": "DiamondofSummoning", + "version": 1, + "class": "Permanent", + "Level": 4, + "oldLevel": 0, + "abilList": "AUds", + "cooldownID": "AUds", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDarkSummoning.blp", + "skinType": "item", + "skinnableID": "dsum", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ofir": { + "itemID": "ofir", + "comment": "Orb of Fire", + "scriptname": "OrbofFire", + "version": 0, + "class": "Miscellaneous", + "Level": 3, + "oldLevel": 7, + "abilList": "AIfb", + "cooldownID": "AIfb", + "ignoreCD": 0, + "uses": "-", + "prio": 95, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,2", + "Requires": "hcas", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "skinType": "item", + "skinnableID": "ofir", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ocor": { + "itemID": "ocor", + "comment": "Orb of Corruption", + "scriptname": "OrbofCorruption", + "version": 1, + "class": "Miscellaneous", + "Level": 3, + "oldLevel": 7, + "abilList": "AIcb", + "cooldownID": "AIcb", + "ignoreCD": 0, + "uses": "-", + "prio": 93, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 375, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,2", + "Requires": "unp2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfCorruption.blp", + "skinType": "item", + "skinnableID": "ocor", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "oli2": { + "itemID": "oli2", + "comment": "Orb of Lightning", + "scriptname": "OrbofLightning", + "version": 1, + "class": "Miscellaneous", + "Level": 3, + "oldLevel": 0, + "abilList": "AIll", + "cooldownID": "AIll", + "ignoreCD": 0, + "uses": "-", + "prio": 91, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 375, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,2", + "Requires": "ofrt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "skinType": "item", + "skinnableID": "oli2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "oven": { + "itemID": "oven", + "comment": "Orb of Venom", + "scriptname": "OrbofVenom", + "version": 1, + "class": "Miscellaneous", + "Level": 3, + "oldLevel": 7, + "abilList": "AIpb,Apo2", + "cooldownID": "AIpb", + "ignoreCD": 0, + "uses": "-", + "prio": 94, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 325, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,2", + "Requires": "etoe", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfVenom.blp", + "skinType": "item", + "skinnableID": "oven", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ram3": { + "itemID": "ram3", + "comment": "Third Ring of the Archmagi", + "scriptname": "ThirdRingoftheArchmagi", + "version": 1, + "class": "Permanent", + "Level": 4, + "oldLevel": 2, + "abilList": "AIx3", + "cooldownID": "AIab", + "ignoreCD": 0, + "uses": "-", + "prio": 109, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingJadeFalcon.blp", + "skinType": "item", + "skinnableID": "ram3", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tret": { + "itemID": "tret", + "comment": "Tome of Retraining", + "scriptname": "TomeofRetraining", + "version": 1, + "class": "Purchasable", + "Level": 3, + "oldLevel": 0, + "abilList": "Aret", + "cooldownID": "Aret", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 2, + "stackMax": 0, + "Buttonpos": "0,2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeOfRetraining.blp", + "skinType": "item", + "skinnableID": "tret", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tgrh": { + "itemID": "tgrh", + "comment": "Tiny Great Hall", + "scriptname": "TinyGreatHall", + "version": 1, + "class": "Purchasable", + "Level": 3, + "oldLevel": 0, + "abilList": "AIbg", + "cooldownID": "AIbl", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 185, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "1,2", + "Requires": "ofrt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreathall.blp", + "skinType": "item", + "skinnableID": "tgrh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rej2": { + "itemID": "rej2", + "comment": "Lesser Replenishment Potion", + "scriptname": "LesserReplenishmentPotion", + "version": 1, + "class": "Miscellaneous", + "Level": 2, + "oldLevel": 0, + "abilList": "AIp2", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 1, + "prio": 72, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 0, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 1, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserRejuvPotion.blp", + "skinType": "item", + "skinnableID": "rej2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gemt": { + "itemID": "gemt", + "comment": "Gem of True Seeing", + "scriptname": "GemofTrueSeeing", + "version": 0, + "class": "Miscellaneous", + "Level": 2, + "oldLevel": 0, + "abilList": "Adt1", + "cooldownID": "Adet", + "ignoreCD": 0, + "uses": "-", + "prio": 35, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGem.blp", + "skinType": "item", + "skinnableID": "gemt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ram2": { + "itemID": "ram2", + "comment": "Second Ring of the Archmagi", + "scriptname": "SecondRingoftheArchmagi", + "version": 1, + "class": "Miscellaneous", + "Level": 2, + "oldLevel": 2, + "abilList": "AIx2", + "cooldownID": "AIab", + "ignoreCD": 0, + "uses": "-", + "prio": 52, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingJadeFalcon.blp", + "skinType": "item", + "skinnableID": "ram2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "stel": { + "itemID": "stel", + "comment": "Staff of Teleportation", + "scriptname": "StaffofTeleportation", + "version": 1, + "class": "Permanent", + "Level": 2, + "oldLevel": 0, + "abilList": "AImt", + "cooldownID": "AHmt", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 220, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 2, + "stackMax": 0, + "Buttonpos": "3,1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfTeleportation.blp", + "skinType": "item", + "skinnableID": "stel", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "stwp": { + "itemID": "stwp", + "comment": "Scroll of Town Portal", + "scriptname": "ScrollofTownPortal", + "version": 0, + "class": "Purchasable", + "Level": 2, + "oldLevel": 0, + "abilList": "AItp", + "cooldownID": "AItp", + "ignoreCD": 0, + "uses": 1, + "prio": 123, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 325, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Requires": "TWN2", + "Buttonpos": "2,1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollUber.blp", + "skinType": "item", + "skinnableID": "stwp", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wneg": { + "itemID": "wneg", + "comment": "Wand of Negation", + "scriptname": "WandofNegation", + "version": 0, + "class": "Purchasable", + "Level": 2, + "oldLevel": 0, + "abilList": "AIpw", + "cooldownID": "AIpw", + "ignoreCD": 0, + "uses": 3, + "prio": 110, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 120, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "ButtonPos": "3,1", + "Requires": "unp1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfNeutralization.blp", + "skinType": "item", + "skinnableID": "wneg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sneg": { + "itemID": "sneg", + "comment": "Staff of Negation", + "scriptname": "StaffofNegation", + "version": 1, + "class": "Purchasable", + "Level": 2, + "oldLevel": 3, + "abilList": "AIds", + "cooldownID": "AIds", + "ignoreCD": 0, + "uses": "-", + "prio": 112, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfNegation.blp", + "skinType": "item", + "skinnableID": "sneg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wneu": { + "itemID": "wneu", + "comment": "Wand of Neutralization", + "scriptname": "WandofNeutralization", + "version": 1, + "class": "Purchasable", + "Level": 2, + "oldLevel": 0, + "abilList": "AIdc", + "cooldownID": "AIdc", + "ignoreCD": 0, + "uses": 4, + "prio": 111, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandOfNeutralization.blp", + "skinType": "item", + "skinnableID": "wneu", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shea": { + "itemID": "shea", + "comment": "Scroll of Healing", + "scriptname": "ScrollofHealing", + "version": 0, + "class": "Purchasable", + "Level": 2, + "oldLevel": 0, + "abilList": "AIha", + "cooldownID": "AIha", + "ignoreCD": 0, + "uses": 1, + "prio": 73, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Requires": "unp2", + "Buttonpos": "1,2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfTownPortal.blp", + "skinType": "item", + "skinnableID": "shea", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sman": { + "itemID": "sman", + "comment": "Scroll of Mana", + "scriptname": "ScrollofMana", + "version": 0, + "class": "Purchasable", + "Level": 2, + "oldLevel": 0, + "abilList": "AImr", + "cooldownID": "AImr", + "ignoreCD": 0, + "uses": 1, + "prio": 65, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 5, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "skinType": "item", + "skinnableID": "sman", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rej1": { + "itemID": "rej1", + "comment": "Minor Replenishment Potion", + "scriptname": "MinorReplenishmentPotion", + "version": 1, + "class": "Miscellaneous", + "Level": 1, + "oldLevel": 0, + "abilList": "AIp1", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 1, + "prio": 31, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 0, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 1, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMinorRejuvPotion.blp", + "skinType": "item", + "skinnableID": "rej1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pspd": { + "itemID": "pspd", + "comment": "Potion of Speed", + "scriptname": "PotionofSpeed", + "version": 0, + "class": "Miscellaneous", + "Level": 1, + "oldLevel": 0, + "abilList": "AIsp", + "cooldownID": "AIsp", + "ignoreCD": 0, + "uses": 1, + "prio": 7, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 45, + "stockStart": 440, + "goldcost": 75, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionRed.blp", + "skinType": "item", + "skinnableID": "pspd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "dust": { + "itemID": "dust", + "comment": "Dust of Appearance", + "scriptname": "DustofAppearance", + "version": 1, + "class": "Miscellaneous", + "Level": 1, + "oldLevel": 0, + "abilList": "AItb", + "cooldownID": "AItb", + "ignoreCD": 0, + "uses": 2, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 75, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDustOfAppearance.blp", + "Buttonpos": "3,0", + "skinType": "item", + "skinnableID": "dust", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ram1": { + "itemID": "ram1", + "comment": "First Ring of the Archmagi", + "scriptname": "FirstRingoftheArchmagi", + "version": 1, + "class": "Miscellaneous", + "Level": 1, + "oldLevel": 2, + "abilList": "AIx1", + "cooldownID": "AIab", + "ignoreCD": 0, + "uses": "-", + "prio": 24, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingJadeFalcon.blp", + "skinType": "item", + "skinnableID": "ram1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pinv": { + "itemID": "pinv", + "comment": "potion of invisibility", + "scriptname": "potionofinvisibility", + "version": 0, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIv1", + "cooldownID": "AIvi", + "ignoreCD": 0, + "uses": 1, + "prio": 33, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserInvisibility.blp", + "skinType": "item", + "skinnableID": "pinv", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "phea": { + "itemID": "phea", + "comment": "potion of healing", + "scriptname": "potionofhealing", + "version": 0, + "class": "Purchasable", + "Level": 1, + "oldLevel": 3, + "abilList": "AIh1", + "cooldownID": "AIhe", + "ignoreCD": 0, + "uses": 1, + "prio": 74, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Requires": "TWN2", + "Buttonpos": "0,1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionGreenSmall.blp", + "skinType": "item", + "skinnableID": "phea", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pman": { + "itemID": "pman", + "comment": "Potion of Mana", + "scriptname": "PotionofMana", + "version": 0, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIm1", + "cooldownID": "AIma", + "ignoreCD": 0, + "uses": 1, + "prio": 66, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Requires": "TWN2", + "Buttonpos": "1,1", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionBlueSmall.blp", + "skinType": "item", + "skinnableID": "pman", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "spro": { + "itemID": "spro", + "comment": "Scroll of Protection", + "scriptname": "ScrollofProtection", + "version": 0, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIda", + "cooldownID": "AIda", + "ignoreCD": 0, + "uses": 1, + "prio": 103, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNScroll.blp", + "skinType": "item", + "skinnableID": "spro", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "hslv": { + "itemID": "hslv", + "comment": "Healing Salve", + "scriptname": "HealingSalve", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIrl", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 3, + "prio": 82, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHealingSalve.blp", + "skinType": "item", + "skinnableID": "hslv", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "moon": { + "itemID": "moon", + "comment": "Moonstone", + "scriptname": "Moonstone", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIct", + "cooldownID": "AIct", + "ignoreCD": 0, + "uses": 1, + "prio": 1, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMoonStone.blp", + "skinType": "item", + "skinnableID": "moon", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shas": { + "itemID": "shas", + "comment": "Scroll of Speed", + "scriptname": "ScrollofSpeed", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIsa", + "cooldownID": "AIsp", + "ignoreCD": 0, + "uses": 1, + "prio": 34, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 70, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "2,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfHaste.blp", + "skinType": "item", + "skinnableID": "shas", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "skul": { + "itemID": "skul", + "comment": "Sacrificial Skull", + "scriptname": "SacrificialSkull", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "Ablp", + "cooldownID": "Ablp", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 45, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "ButtonPos": "2,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialSkull.blp", + "skinType": "item", + "skinnableID": "skul", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "mcri": { + "itemID": "mcri", + "comment": "Mechanical Critter", + "scriptname": "MechanicalCritter", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "Amec", + "cooldownID": "Amec", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "ButtonPos": "2,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNMechanicalCritter.blp", + "skinType": "item", + "skinnableID": "mcri", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rnec": { + "itemID": "rnec", + "comment": "Rod of Necromancy", + "scriptname": "RodofNecromancy", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIrd", + "cooldownID": "AIrd", + "ignoreCD": 0, + "uses": 4, + "prio": 86, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRodOfNecromancy.blp", + "skinType": "item", + "skinnableID": "rnec", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ritd": { + "itemID": "ritd", + "comment": "Ritual Dagger", + "scriptname": "RitualDagger", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIg2", + "cooldownID": "AIg2", + "ignoreCD": 0, + "uses": 1, + "prio": 86, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 75, + "stockStart": 0, + "goldcost": 75, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "ButtonPos": "1,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSacrificialDagger.blp", + "skinType": "item", + "skinnableID": "ritd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tsct": { + "itemID": "tsct", + "comment": "Ivory Tower", + "scriptname": "IvoryTower", + "version": 1, + "class": "Purchasable", + "Level": 1, + "oldLevel": 0, + "abilList": "AIbt", + "cooldownID": "AIbl", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 30, + "stockStart": 0, + "goldcost": 40, + "lumbercost": 25, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "3,1", + "Requires": "hkee", + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanWatchTower.blp", + "skinType": "item", + "skinnableID": "tsct", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "azhr": { + "itemID": "azhr", + "comment": "Heart of Aszune", + "scriptname": "HeartofAszune", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeartOfAszune.blp", + "skinType": "item", + "skinnableID": "azhr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "bzbe": { + "itemID": "bzbe", + "comment": "Empty Vial", + "scriptname": "EmptyVial", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNVialEmpty.blp", + "skinType": "item", + "skinnableID": "bzbe", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "bzbf": { + "itemID": "bzbf", + "comment": "Full Vial", + "scriptname": "FullVial", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNVialFull.blp", + "skinType": "item", + "skinnableID": "bzbf", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ches": { + "itemID": "ches", + "comment": "Cheese", + "scriptname": "Cheese", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCheese.blp", + "skinType": "item", + "skinnableID": "ches", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "cnhn": { + "itemID": "cnhn", + "comment": "Horn of Cenarius", + "scriptname": "HornofCenarius", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "Arel,AIl1", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHornOfCenarius.blp", + "skinType": "item", + "skinnableID": "cnhn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "glsk": { + "itemID": "glsk", + "comment": "Guldan's Skull", + "scriptname": "GuldansSkull", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGuldanSkull.blp", + "skinType": "item", + "skinnableID": "glsk", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gopr": { + "itemID": "gopr", + "comment": "Glyph of Purification", + "scriptname": "GlyphofPurification", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlyph.blp", + "skinType": "item", + "skinnableID": "gopr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "k3m1": { + "itemID": "k3m1", + "comment": "Key of 3 Moons - 1", + "scriptname": "Keyof3Moons1", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTN3M1.blp", + "skinType": "item", + "skinnableID": "k3m1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "k3m2": { + "itemID": "k3m2", + "comment": "Key of 3 Moons - 2", + "scriptname": "Keyof3Moons2", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTN3M2.blp", + "skinType": "item", + "skinnableID": "k3m2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "k3m3": { + "itemID": "k3m3", + "comment": "Key of 3 Moons - 3", + "scriptname": "Keyof3Moons3", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTN3M3.blp", + "skinType": "item", + "skinnableID": "k3m3", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ktrm": { + "itemID": "ktrm", + "comment": "Urn of Kel'Thuzad", + "scriptname": "UrnofKelThuzad", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUrnOfKelThuzad.blp", + "skinType": "item", + "skinnableID": "ktrm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "kybl": { + "itemID": "kybl", + "comment": "bloody key", + "scriptname": "bloodykey", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBloodKey.blp", + "skinType": "item", + "skinnableID": "kybl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "kygh": { + "itemID": "kygh", + "comment": "ghost key", + "scriptname": "ghostkey", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhostKey.blp", + "skinType": "item", + "skinnableID": "kygh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "kymn": { + "itemID": "kymn", + "comment": "moon key", + "scriptname": "moonkey", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMoonKey.blp", + "skinType": "item", + "skinnableID": "kymn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "kysn": { + "itemID": "kysn", + "comment": "sun key", + "scriptname": "sunkey", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSunKey.blp", + "skinType": "item", + "skinnableID": "kysn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ledg": { + "itemID": "ledg", + "comment": "Gerard's Lost Ledger", + "scriptname": "GerardsLostLedger", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSorceressMaster.blp", + "skinType": "item", + "skinnableID": "ledg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "phlt": { + "itemID": "phlt", + "comment": "Phat Lewt", + "scriptname": "PhatLewt", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 999, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadShrine.blp", + "skinType": "item", + "skinnableID": "phlt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sehr": { + "itemID": "sehr", + "comment": "Searinox's Heart", + "scriptname": "SearinoxsHeart", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeartOfSearinox.blp", + "skinType": "item", + "skinnableID": "sehr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "engs": { + "itemID": "engs", + "comment": "Enchanted Gemstone", + "scriptname": "EnchantedGemstone", + "version": 0, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnchantedGemstone.blp", + "skinType": "item", + "skinnableID": "engs", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sorf": { + "itemID": "sorf", + "comment": "Shadow Orb Fragment", + "scriptname": "ShadowOrbFragment", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 200, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sorf", + "armor": "Wood", + "file": "Objects\\InventoryItems\\CrystalShard\\CrystalShard.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gmfr": { + "itemID": "gmfr", + "comment": "Gem Fragment", + "scriptname": "GemFragment", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGem.blp", + "skinType": "item", + "skinnableID": "gmfr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "jpnt": { + "itemID": "jpnt", + "comment": "note to jaina proudmoore", + "scriptname": "notetojainaproudmoore", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfProtection.blp", + "skinType": "item", + "skinnableID": "jpnt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shwd": { + "itemID": "shwd", + "comment": "shimmerweed", + "scriptname": "shimmerweed", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 200, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNShimmerWeed.blp", + "skinType": "item", + "skinnableID": "shwd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\Shimmerweed\\Shimmerweed.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "skrt": { + "itemID": "skrt", + "comment": "Skeletal Artifact", + "scriptname": "SkeletalArtifact", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfCorruption.blp", + "skinType": "item", + "skinnableID": "skrt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "thle": { + "itemID": "thle", + "comment": "thunder lizard egg", + "scriptname": "thunderlizardegg", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 200, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNThunderLizardEgg.blp", + "skinType": "item", + "skinnableID": "thle", + "armor": "Wood", + "file": "Objects\\InventoryItems\\ThunderLizardEgg\\ThunderLizardEgg.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sclp": { + "itemID": "sclp", + "comment": "secret level powerup", + "scriptname": "secretlevelpowerup", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 0, + "perishable": 1, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 75, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSelectHeroOn.blp", + "skinType": "item", + "skinnableID": "sclp", + "armor": "Wood", + "file": "Objects\\InventoryItems\\QuestionMark\\QuestionMark.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wtlg": { + "itemID": "wtlg", + "comment": "Wirt's Leg", + "scriptname": "WirtsLeg", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWirtsLeg.blp", + "skinType": "item", + "skinnableID": "wtlg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "wolg": { + "itemID": "wolg", + "comment": "Wirt's Other Leg", + "scriptname": "WirtsOtherLeg", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWirtsOtherLeg.blp", + "skinType": "item", + "skinnableID": "wolg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "mgtk": { + "itemID": "mgtk", + "comment": "Magtheridon's Keys", + "scriptname": "MagtheridonsKeys", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlood&GhostKey.blp", + "skinType": "item", + "skinnableID": "mgtk", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "mort": { + "itemID": "mort", + "comment": "Mogrin's Report", + "scriptname": "MogrinsReport", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpy.blp", + "skinType": "item", + "skinnableID": "mort", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "dphe": { + "itemID": "dphe", + "comment": "Thunder Hawk Egg", + "scriptname": "ThunderHawkEgg", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 200, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNThunderLizardEgg.blp", + "skinType": "item", + "skinnableID": "dphe", + "armor": "Wood", + "file": "Units\\Human\\Phoenix\\PhoenixEgg.mdl", + "scale": "1", + "selSize": "0", + "colorR": "100", + "colorG": "100", + "colorB": "255", + "colorR:hd": "255", + "colorG:hd": "255", + "addon": "Units" + }, + "dkfw": { + "itemID": "dkfw", + "comment": "Keg of Thunderwater", + "scriptname": "KegofThunderwater", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 200, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBarrel.blp", + "skinType": "item", + "skinnableID": "dkfw", + "armor": "Wood", + "file": "Buildings\\Other\\BarrelsUnit0\\BarrelsUnit0.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "dthb": { + "itemID": "dthb", + "comment": "Thunderbloom Bulb", + "scriptname": "ThunderbloomBulb", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 200, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNManaFlareOff.blp", + "skinType": "item", + "skinnableID": "dthb", + "armor": "Wood", + "file": "Objects\\InventoryItems\\Shimmerweed\\Shimmerweed.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "140", + "colorB": "140", + "addon": "Units" + }, + "fgun": { + "itemID": "fgun", + "comment": "Flare Gun", + "scriptname": "FlareGun", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 3, + "abilList": "AIfa", + "cooldownID": "AIfa", + "ignoreCD": 0, + "uses": 3, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 45, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlare.blp", + "skinType": "item", + "skinnableID": "fgun", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "lure": { + "itemID": "lure", + "comment": "Monster Lure", + "scriptname": "MonsterLure", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 3, + "abilList": "AImo", + "cooldownID": "AImo", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsterLure.blp", + "skinType": "item", + "skinnableID": "lure", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "olig": { + "itemID": "olig", + "comment": "Orb of Lightning(old)", + "scriptname": "OrbofLightningold", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 10, + "abilList": "AIlb,AIlp", + "cooldownID": "AIlb", + "ignoreCD": 0, + "uses": "-", + "prio": 92, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "2,2", + "Requires": "ofrt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfLightning.blp", + "skinType": "item", + "skinnableID": "olig", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "amrc": { + "itemID": "amrc", + "comment": "Amulet of Recall", + "scriptname": "AmuletofRecall", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIrt", + "cooldownID": "AIrt", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAmulet.blp", + "skinType": "item", + "skinnableID": "amrc", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "flag": { + "itemID": "flag", + "comment": "human flag", + "scriptname": "humanflag", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfm", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 1, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanCaptureFlag.blp", + "skinType": "item", + "skinnableID": "flag", + "armor": "Wood", + "file": "Objects\\InventoryItems\\HumanCaptureFlag\\HumanCaptureFlag.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gobm": { + "itemID": "gobm", + "comment": "Goblin Land Mine", + "scriptname": "GoblinLandMine", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIpm", + "cooldownID": "AIpm", + "ignoreCD": 0, + "uses": 3, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 225, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoblinLandMine.blp", + "skinType": "item", + "skinnableID": "gobm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gsou": { + "itemID": "gsou", + "comment": "Soul Gem", + "scriptname": "SoulGem", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIso", + "cooldownID": "AIso", + "ignoreCD": 0, + "uses": 1, + "prio": 137, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSoulGem.blp", + "skinType": "item", + "skinnableID": "gsou", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "nflg": { + "itemID": "nflg", + "comment": "NightElf flag", + "scriptname": "NightElfflag", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfn", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 1, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNightElfCaptureFlag.blp", + "skinType": "item", + "skinnableID": "nflg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\NightElfCaptureFlag\\NightElfCaptureFlag.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "nspi": { + "itemID": "nspi", + "comment": "Necklace of Spell Immunity", + "scriptname": "NecklaceofSpellImmunity", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AImx", + "cooldownID": "AImx", + "ignoreCD": 0, + "uses": "-", + "prio": 131, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecklace.blp", + "skinType": "item", + "skinnableID": "nspi", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "oflg": { + "itemID": "oflg", + "comment": "Orc flag", + "scriptname": "Orcflag", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfo", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 1, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcCaptureFlag.blp", + "skinType": "item", + "skinnableID": "oflg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\OrcCaptureFlag\\OrcCaptureFlag.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pams": { + "itemID": "pams", + "comment": "Anti-Magic Potion", + "scriptname": "AntiMagicPotion", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIxs", + "cooldownID": "Aami", + "ignoreCD": 0, + "uses": 1, + "prio": 56, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Requires": "etoe", + "Buttonpos": "1,2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnazzyPotion.blp", + "skinType": "item", + "skinnableID": "pams", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pgin": { + "itemID": "pgin", + "comment": "potion of greater invisibility", + "scriptname": "potionofgreaterinvisibility", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIv2", + "cooldownID": "AIvi", + "ignoreCD": 0, + "uses": 1, + "prio": 36, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGreaterInvisibility.blp", + "skinType": "item", + "skinnableID": "pgin", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rat3": { + "itemID": "rat3", + "comment": "Claws of Attack +3", + "scriptname": "ClawsofAttack3", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIat", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 18, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNClawsOfAttack.blp", + "skinType": "item", + "skinnableID": "rat3", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rde0": { + "itemID": "rde0", + "comment": "Ring of Protection +1", + "scriptname": "RingofProtection1", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId1", + "cooldownID": "AIde", + "ignoreCD": 0, + "uses": "-", + "prio": 45, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp", + "skinType": "item", + "skinnableID": "rde0", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rde1": { + "itemID": "rde1", + "comment": "Ring of Protection +2", + "scriptname": "RingofProtection2", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 2, + "abilList": "AId2", + "cooldownID": "AIde", + "ignoreCD": 0, + "uses": "-", + "prio": 80, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingGreen.blp", + "skinType": "item", + "skinnableID": "rde1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rnsp": { + "itemID": "rnsp", + "comment": "Ring of Superiority", + "scriptname": "RingofSuperiority", + "version": 0, + "class": "Permanent", + "Level": 1, + "oldLevel": 1, + "abilList": "AIx1", + "cooldownID": "AIx1", + "ignoreCD": 0, + "uses": "-", + "prio": 35, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGoldRing.blp", + "skinType": "item", + "skinnableID": "rnsp", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "soul": { + "itemID": "soul", + "comment": "Soul", + "scriptname": "Soul", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 0, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUsedSoulGem.blp", + "skinType": "item", + "skinnableID": "soul", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tels": { + "itemID": "tels", + "comment": "Goblin Night Scope", + "scriptname": "GoblinNightScope", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIuv", + "cooldownID": "Ault", + "ignoreCD": 0, + "uses": "-", + "prio": 5, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTelescope.blp", + "skinType": "item", + "skinnableID": "tels", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tgxp": { + "itemID": "tgxp", + "comment": "Tome of Greater Experience", + "scriptname": "TomeofGreaterExperience", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIe2", + "cooldownID": "AIe2", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNManual3.blp", + "skinType": "item", + "skinnableID": "tgxp", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeBrown\\tomeBrown.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "uflg": { + "itemID": "uflg", + "comment": "Undead flag", + "scriptname": "Undeadflag", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfe", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 1, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUndeadCaptureFlag.blp", + "skinType": "item", + "skinnableID": "uflg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\UndeadCaptureFlag\\UndeadCaptureFlag.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "anfg": { + "itemID": "anfg", + "comment": "Ancient Figurine", + "scriptname": "AncientFigurine", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIi1", + "cooldownID": "AIi1", + "ignoreCD": 0, + "uses": "-", + "prio": 11, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNClayFigurine.blp", + "skinType": "item", + "skinnableID": "anfg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "brag": { + "itemID": "brag", + "comment": "Bracer of Agility", + "scriptname": "BracerofAgility", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIa1", + "cooldownID": "AIa1", + "ignoreCD": 0, + "uses": "-", + "prio": 20, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingPurple.blp", + "skinType": "item", + "skinnableID": "brag", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "drph": { + "itemID": "drph", + "comment": "Druid Pouch", + "scriptname": "DruidPouch", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIi1", + "cooldownID": "AIi1", + "ignoreCD": 0, + "uses": "-", + "prio": 10, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDust.blp", + "skinType": "item", + "skinnableID": "drph", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "iwbr": { + "itemID": "iwbr", + "comment": "Ironwood Branch", + "scriptname": "IronwoodBranch", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIs1", + "cooldownID": "AIs1", + "ignoreCD": 0, + "uses": "-", + "prio": 27, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNatureTouchGrow.blp", + "skinType": "item", + "skinnableID": "iwbr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "jdrn": { + "itemID": "jdrn", + "comment": "Jade Ring", + "scriptname": "JadeRing", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIa1", + "cooldownID": "AIa1", + "ignoreCD": 0, + "uses": "-", + "prio": 21, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingJadeFalcon.blp", + "skinType": "item", + "skinnableID": "jdrn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "lnrn": { + "itemID": "lnrn", + "comment": "Lion's Ring", + "scriptname": "LionsRing", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIa1", + "cooldownID": "AIa1", + "ignoreCD": 0, + "uses": "-", + "prio": 22, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingLionHead.blp", + "skinType": "item", + "skinnableID": "lnrn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "mlst": { + "itemID": "mlst", + "comment": "Maul of Strength", + "scriptname": "MaulofStrength", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIs1", + "cooldownID": "AIs1", + "ignoreCD": 0, + "uses": "-", + "prio": 29, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHammer.blp", + "skinType": "item", + "skinnableID": "mlst", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "oslo": { + "itemID": "oslo", + "comment": "Orb of Slow", + "scriptname": "OrbofSlow", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIsb", + "cooldownID": "AIsb", + "ignoreCD": 0, + "uses": "-", + "prio": 98, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 325, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,2", + "Requires": "hcas", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbofSlowness.blp", + "skinType": "item", + "skinnableID": "oslo", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sbok": { + "itemID": "sbok", + "comment": "Spell Book", + "scriptname": "SpellBook", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "Aspb", + "cooldownID": "Aspb", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 325, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellBookBLS.blp", + "skinType": "item", + "skinnableID": "sbok", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sksh": { + "itemID": "sksh", + "comment": "Skull Shield", + "scriptname": "SkullShield", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIs1", + "cooldownID": "AIs1", + "ignoreCD": 0, + "uses": "-", + "prio": 26, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrimWard.blp", + "skinType": "item", + "skinnableID": "sksh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sprn": { + "itemID": "sprn", + "comment": "Spider Ring", + "scriptname": "SpiderRing", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIa1", + "cooldownID": "AIa1", + "ignoreCD": 0, + "uses": "-", + "prio": 19, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRingVioletSpider.blp", + "skinType": "item", + "skinnableID": "sprn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tmmt": { + "itemID": "tmmt", + "comment": "Totem of Might", + "scriptname": "TotemofMight", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIs1", + "cooldownID": "AIs1", + "ignoreCD": 0, + "uses": "-", + "prio": 28, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp", + "skinType": "item", + "skinnableID": "tmmt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "vddl": { + "itemID": "vddl", + "comment": "Voodoo Doll", + "scriptname": "VoodooDoll", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIi1", + "cooldownID": "AIi1", + "ignoreCD": 0, + "uses": "-", + "prio": 16, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNShadowPact.blp", + "skinType": "item", + "skinnableID": "vddl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "spre": { + "itemID": "spre", + "comment": "Staff of Preservation", + "scriptname": "StaffofPreservation", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "ANpr", + "cooldownID": "ANpr", + "ignoreCD": 0, + "uses": "-", + "prio": 4, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "3,1", + "Requires": "etoa", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfPreservation.blp", + "skinType": "item", + "skinnableID": "spre", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sfog": { + "itemID": "sfog", + "comment": "Horn of the Clouds", + "scriptname": "HornoftheClouds", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfg", + "cooldownID": "Aclf", + "ignoreCD": 0, + "uses": "-", + "prio": 13, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHornOfFog.blp", + "skinType": "item", + "skinnableID": "sfog", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor1": { + "itemID": "sor1", + "comment": "Shadow Orb +1", + "scriptname": "ShadowOrb1", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItg,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 9, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor2": { + "itemID": "sor2", + "comment": "Shadow Orb +2", + "scriptname": "ShadowOrb2", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIth,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 15, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor3": { + "itemID": "sor3", + "comment": "Shadow Orb +3", + "scriptname": "ShadowOrb3", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIat,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 17, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor3", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor4": { + "itemID": "sor4", + "comment": "Shadow Orb +4", + "scriptname": "ShadowOrb4", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIti,AId1,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 51, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor4", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor5": { + "itemID": "sor5", + "comment": "Shadow Orb +5", + "scriptname": "ShadowOrb5", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItj,AId1,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 54, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 350, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor5", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor6": { + "itemID": "sor6", + "comment": "Shadow Orb +6", + "scriptname": "ShadowOrb6", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIt6,AId1,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 59, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor6", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor7": { + "itemID": "sor7", + "comment": "Shadow Orb +7", + "scriptname": "ShadowOrb7", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItk,AId2,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 88, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor7", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor8": { + "itemID": "sor8", + "comment": "Shadow Orb +8", + "scriptname": "ShadowOrb8", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItl,AId2,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 100, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor8", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sor9": { + "itemID": "sor9", + "comment": "Shadow Orb +9", + "scriptname": "ShadowOrb9", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIt9,AId2,Arel,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 101, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 900, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sor9", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sora": { + "itemID": "sora", + "comment": "Shadow Orb +10", + "scriptname": "ShadowOrb10", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItn,AId3,Arel,AIdn", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 115, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfDarkness.blp", + "skinType": "item", + "skinnableID": "sora", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "fwss": { + "itemID": "fwss", + "comment": "Frostwyrm Skull Shield", + "scriptname": "FrostwyrmSkullShield", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId2,AIsr", + "cooldownID": "AIsr", + "ignoreCD": 0, + "uses": "-", + "prio": 127, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 750, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGrimWard.blp", + "skinType": "item", + "skinnableID": "fwss", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shtm": { + "itemID": "shtm", + "comment": "Shamanic Totem", + "scriptname": "ShamanicTotem", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIps", + "cooldownID": "Aprg", + "ignoreCD": 0, + "uses": "-", + "prio": 37, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEntrapmentWard.blp", + "skinType": "item", + "skinnableID": "shtm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "esaz": { + "itemID": "esaz", + "comment": "Essence of Aszune", + "scriptname": "EssenceofAszune", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIh3", + "cooldownID": "AIhe", + "ignoreCD": 0, + "uses": "-", + "prio": 89, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeartOfAszune.blp", + "skinType": "item", + "skinnableID": "esaz", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "btst": { + "itemID": "btst", + "comment": "orcish battle standard", + "scriptname": "orcishbattlestandard", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfx", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 1, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcBattleStandard.blp", + "skinType": "item", + "skinnableID": "btst", + "armor": "Wood", + "file": "Objects\\InventoryItems\\BattleStandard\\BattleStandard.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tbsm": { + "itemID": "tbsm", + "comment": "Tiny Blacksmith", + "scriptname": "TinyBlacksmith", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIbb", + "cooldownID": "AIbl", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 50, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBlacksmith.blp", + "skinType": "item", + "skinnableID": "tbsm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tfar": { + "itemID": "tfar", + "comment": "Tiny Farm", + "scriptname": "TinyFarm", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIbf", + "cooldownID": "AIbl", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 75, + "lumbercost": 20, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFarm.blp", + "skinType": "item", + "skinnableID": "tfar", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tlum": { + "itemID": "tlum", + "comment": "Tiny Lumber Mill", + "scriptname": "TinyLumberMill", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIbr", + "cooldownID": "AIbl", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanLumberMill.blp", + "skinType": "item", + "skinnableID": "tlum", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tbar": { + "itemID": "tbar", + "comment": "Tiny Barracks", + "scriptname": "TinyBarracks", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIbs", + "cooldownID": "AIbl", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 160, + "lumbercost": 50, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanBarracks.blp", + "skinType": "item", + "skinnableID": "tbar", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tbak": { + "itemID": "tbak", + "comment": "Tiny Altar of Kings", + "scriptname": "TinyAltarofKings", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIbh", + "cooldownID": "AIbh", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 180, + "lumbercost": 50, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAltarOfKings.blp", + "skinType": "item", + "skinnableID": "tbak", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gldo": { + "itemID": "gldo", + "comment": "Orb of Kil'jaeden", + "scriptname": "OrbofKiljaeden", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIgd", + "cooldownID": "AIfb", + "ignoreCD": 0, + "uses": "-", + "prio": 95, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUsedSoulGem.blp", + "skinType": "item", + "skinnableID": "gldo", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "stre": { + "itemID": "stre", + "comment": "Staff of Reanimation", + "scriptname": "StaffofReanimation", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AInd", + "cooldownID": "AUan", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWandSkull.blp", + "skinType": "item", + "skinnableID": "stre", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "horl": { + "itemID": "horl", + "comment": "Holy Relic", + "scriptname": "HolyRelic", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIae", + "cooldownID": "AOae", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 950, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlyph.blp", + "skinType": "item", + "skinnableID": "horl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "hbth": { + "itemID": "hbth", + "comment": "Helm of Battlethirst", + "scriptname": "HelmofBattlethirst", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIxk,AIa4,AIs4", + "cooldownID": "Absk", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 4200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyAura.blp", + "skinType": "item", + "skinnableID": "hbth", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "blba": { + "itemID": "blba", + "comment": "Bladebane Armor", + "scriptname": "BladebaneArmor", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId7,AIad", + "cooldownID": "AHad", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 3500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNArmorGolem.blp", + "skinType": "item", + "skinnableID": "blba", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rugt": { + "itemID": "rugt", + "comment": "Runed Gauntlets", + "scriptname": "RunedGauntlets", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId3,AIs3", + "cooldownID": "AIab", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 725, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNImprovedUnholyStrength.blp", + "skinType": "item", + "skinnableID": "rugt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "frhg": { + "itemID": "frhg", + "comment": "Firehand Gauntlets", + "scriptname": "FirehandGauntlets", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId5,AIs2", + "cooldownID": "AIas", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 3500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAdvancedUnholyStrength.blp", + "skinType": "item", + "skinnableID": "frhg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gvsm": { + "itemID": "gvsm", + "comment": "Gloves of Spell Mastery", + "scriptname": "GlovesofSpellMastery", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIcm,AIi6", + "cooldownID": "Acmg", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpellSteal.blp", + "skinType": "item", + "skinnableID": "gvsm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "crdt": { + "itemID": "crdt", + "comment": "Crown of the Deathlord", + "scriptname": "CrownoftheDeathlord", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfz,AIlf,AImz", + "cooldownID": "ANfd", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 6400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRevenant.blp", + "skinType": "item", + "skinnableID": "crdt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "arsc": { + "itemID": "arsc", + "comment": "Arcane Scroll", + "scriptname": "ArcaneScroll", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIdb", + "cooldownID": "AIdb", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBansheeAdept.blp", + "skinType": "item", + "skinnableID": "arsc", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "scul": { + "itemID": "scul", + "comment": "Scroll of the Unholy Legion", + "scriptname": "ScrolloftheUnholyLegion", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIan", + "cooldownID": "AIan", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 950, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBansheeMaster.blp", + "skinType": "item", + "skinnableID": "scul", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tmsc": { + "itemID": "tmsc", + "comment": "Tome of Sacrifices", + "scriptname": "TomeofSacrifices", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIdp,AImz", + "cooldownID": "AUdp", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecromancerAdept.blp", + "skinType": "item", + "skinnableID": "tmsc", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "dtsb": { + "itemID": "dtsb", + "comment": "Drek'thar's Spellbook", + "scriptname": "DrektharsSpellbook", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItp,AImv,AIsr", + "cooldownID": "AItp", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 3350, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSorceressMaster.blp", + "skinType": "item", + "skinnableID": "dtsb", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "grsl": { + "itemID": "grsl", + "comment": "Grimoire of Souls", + "scriptname": "GrimoireofSouls", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIpx", + "cooldownID": "AImi", + "ignoreCD": 0, + "uses": 10, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1350, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecromancerMaster.blp", + "skinType": "item", + "skinnableID": "grsl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "arsh": { + "itemID": "arsh", + "comment": "Arcanite Shield", + "scriptname": "ArcaniteShield", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId5,AIdd", + "cooldownID": "Adef", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 3500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcaniteArmor.blp", + "skinType": "item", + "skinnableID": "arsh", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shdt": { + "itemID": "shdt", + "comment": "Shield of the Deathlord", + "scriptname": "ShieldoftheDeathlord", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIlf,AImz,AId0,AIcf", + "cooldownID": "AIcf", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 9000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNLightningShield.blp", + "skinType": "item", + "skinnableID": "shdt", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shhn": { + "itemID": "shhn", + "comment": "Shield of Honor", + "scriptname": "ShieldofHonor", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId8,AIcd", + "cooldownID": "AOac", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 3350, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanArmorUpThree.blp", + "skinType": "item", + "skinnableID": "shhn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shen": { + "itemID": "shen", + "comment": "Enchanted Shield", + "scriptname": "EnchantedShield", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AId2,AIlz", + "cooldownID": "AIml", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 650, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNThoriumArmor.blp", + "skinType": "item", + "skinnableID": "shen", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "thdm": { + "itemID": "thdm", + "comment": "Thunderlizard Diamond", + "scriptname": "ThunderlizardDiamond", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIcl", + "cooldownID": "AOcl", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1190, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnchantedGemstone.blp", + "skinType": "item", + "skinnableID": "thdm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "stpg": { + "itemID": "stpg", + "comment": "Stuffed Penguin", + "scriptname": "StuffedPenguin", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIpz", + "cooldownID": "AIha", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPenguin.blp", + "skinType": "item", + "skinnableID": "stpg", + "armor": "Wood", + "file": "Units\\Critters\\Penguin\\Penguin.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shrs": { + "itemID": "shrs", + "comment": "Shimmerglaze Roast", + "scriptname": "ShimmerglazeRoast", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIhx", + "cooldownID": "AIhe", + "ignoreCD": 0, + "uses": 6, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMonsterLure.blp", + "skinType": "item", + "skinnableID": "shrs", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "bfhr": { + "itemID": "bfhr", + "comment": "Bloodfeather's Heart", + "scriptname": "BloodfeathersHeart", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIaz", + "cooldownID": "AIab", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 2500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPhilosophersStone.blp", + "skinType": "item", + "skinnableID": "bfhr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "cosl": { + "itemID": "cosl", + "comment": "Celestial Orb of Souls", + "scriptname": "CelestialOrbofSouls", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIrx", + "cooldownID": "AHre", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 10000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUsedSoulGem.blp", + "skinType": "item", + "skinnableID": "cosl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "shcw": { + "itemID": "shcw", + "comment": "Shaman Claws", + "scriptname": "ShamanClaws", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIlx", + "cooldownID": "AIll", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 950, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNShamanMaster.blp", + "skinType": "item", + "skinnableID": "shcw", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "srbd": { + "itemID": "srbd", + "comment": "Searing Blade", + "scriptname": "SearingBlade", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIfw,AIcs", + "cooldownID": "AOcr", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1650, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNArcaniteMelee.blp", + "skinType": "item", + "skinnableID": "srbd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "frgd": { + "itemID": "frgd", + "comment": "Frostguard", + "scriptname": "Frostguard", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIft,AId5", + "cooldownID": "AIob", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1400, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNThoriumMelee.blp", + "skinType": "item", + "skinnableID": "frgd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "envl": { + "itemID": "envl", + "comment": "Enchanted Vial", + "scriptname": "EnchantedVial", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIp3", + "cooldownID": "AIrg", + "ignoreCD": 0, + "uses": 5, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 450, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNVialFull.blp", + "skinType": "item", + "skinnableID": "envl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rump": { + "itemID": "rump", + "comment": "Rusty Mining Pick", + "scriptname": "RustyMiningPick", + "version": 1, + "class": "Miscellaneous", + "Level": 3, + "oldLevel": 0, + "abilList": "AItg,AIbx", + "cooldownID": "AHbh", + "ignoreCD": 0, + "uses": "-", + "prio": 100, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGatherGold.blp", + "skinType": "item", + "skinnableID": "rump", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "srtl": { + "itemID": "srtl", + "comment": "Serathil", + "scriptname": "Serathil", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIsx,AItf", + "cooldownID": "AIas", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 5500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcMeleeUpThree.blp", + "skinType": "item", + "skinnableID": "srtl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "stwa": { + "itemID": "stwa", + "comment": "Sturdy War Axe", + "scriptname": "SturdyWarAxe", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItj", + "cooldownID": "AIat", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 600, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcMeleeUpOne.blp", + "skinType": "item", + "skinnableID": "stwa", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "klmm": { + "itemID": "klmm", + "comment": "Killmaim", + "scriptname": "Killmaim", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AItx,AIva", + "cooldownID": "AIva", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 7500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWalkerAdeptTraining.blp", + "skinType": "item", + "skinnableID": "klmm", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rots": { + "itemID": "rots", + "comment": "Rod of the Sea", + "scriptname": "RodoftheSea", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIwm,AIx2", + "cooldownID": "ANwm", + "ignoreCD": 0, + "uses": 5, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWitchDoctorAdept.blp", + "skinType": "item", + "skinnableID": "rots", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "axas": { + "itemID": "axas", + "comment": "Ancestral Staff", + "scriptname": "AncestralStaff", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIsh,AIae", + "cooldownID": "AOsf", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 3000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWitchDoctorMaster.blp", + "skinType": "item", + "skinnableID": "axas", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "mnsf": { + "itemID": "mnsf", + "comment": "Mindstaff", + "scriptname": "Mindstaff", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AI2m,AIba", + "cooldownID": "AHab", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 1800, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBrilliance.blp", + "skinType": "item", + "skinnableID": "mnsf", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "schl": { + "itemID": "schl", + "comment": "Scepter of Healing", + "scriptname": "ScepterofHealing", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIhl,AIgx", + "cooldownID": "AHhb", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 4200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPriestAdept.blp", + "skinType": "item", + "skinnableID": "schl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "asbl": { + "itemID": "asbl", + "comment": "Assassin's Blade", + "scriptname": "AssassinsBlade", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIsz,AItj", + "cooldownID": "Aspo", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 2000, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDaggerOfEscape.blp", + "skinType": "item", + "skinnableID": "asbl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "kgal": { + "itemID": "kgal", + "comment": "Keg of Ale", + "scriptname": "KegofAle", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIrm,Arel", + "cooldownID": "Arel", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 850, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBarrel.blp", + "skinType": "item", + "skinnableID": "kgal", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ward": { + "itemID": "ward", + "comment": "Warsong Battle Drums", + "scriptname": "WarsongBattleDrums", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 7, + "abilList": "AIcd", + "cooldownID": "AOac", + "ignoreCD": 0, + "uses": "-", + "prio": 38, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDrum.blp", + "skinType": "item", + "skinnableID": "ward", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gold": { + "itemID": "gold", + "comment": "Chest of Gold", + "scriptname": "ChestofGold", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "AIgo", + "cooldownID": "AIgo", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNChestOfGold.blp", + "skinType": "item", + "skinnableID": "gold", + "armor": "Wood", + "file": "Objects\\InventoryItems\\PotofGold\\PotofGold.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "lmbr": { + "itemID": "lmbr", + "comment": "Bundle of Lumber", + "scriptname": "BundleofLumber", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "AIlu", + "cooldownID": "AIlu", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 3, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBundleOfLumber.blp", + "skinType": "item", + "skinnableID": "lmbr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\BundleofLumber\\BundleofLumber.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gfor": { + "itemID": "gfor", + "comment": "Glyph of Fortification", + "scriptname": "GlyphofFortification", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "AIgf", + "cooldownID": "AIgl", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlyph.blp", + "skinType": "item", + "skinnableID": "gfor", + "armor": "Wood", + "file": "Objects\\InventoryItems\\Glyph\\Glyph.mdl", + "scale": "1", + "selSize": "120", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "guvi": { + "itemID": "guvi", + "comment": "Glyph of UltraVision", + "scriptname": "GlyphofUltraVision", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "AIgu", + "cooldownID": "AIgl", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 125, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlyph.blp", + "skinType": "item", + "skinnableID": "guvi", + "armor": "Wood", + "file": "Objects\\InventoryItems\\Glyph\\Glyph.mdl", + "scale": "1", + "selSize": "120", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rspl": { + "itemID": "rspl", + "comment": "Rune of Spirit Link", + "scriptname": "RuneofSpiritLink", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "Aspp", + "cooldownID": "Aspp", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rspl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rre1": { + "itemID": "rre1", + "comment": "Rune of Lesser Resurrection", + "scriptname": "RuneofLesserResurrection", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APrl", + "cooldownID": "AIrs", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rre1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rre2": { + "itemID": "rre2", + "comment": "Rune of Greater Resurrection", + "scriptname": "RuneofGreaterResurrection", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APrr", + "cooldownID": "AIrs", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rre2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "gomn": { + "itemID": "gomn", + "comment": "Glyph of Omniscience", + "scriptname": "GlyphofOmniscience", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "AIrv", + "cooldownID": "AIrv", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 240, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlyph.blp", + "skinType": "item", + "skinnableID": "gomn", + "armor": "Wood", + "file": "Objects\\InventoryItems\\Glyph\\Glyph.mdl", + "scale": "1", + "selSize": "120", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rsps": { + "itemID": "rsps", + "comment": "Rune of Shielding", + "scriptname": "RuneofShielding", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "ANse", + "cooldownID": "ANse", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 180, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rsps", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rspd": { + "itemID": "rspd", + "comment": "Rune of Speed", + "scriptname": "RuneofSpeed", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APsa", + "cooldownID": "AIsp", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rspd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rman": { + "itemID": "rman", + "comment": "Rune of Mana(Lesser)", + "scriptname": "RuneofManaLesser", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APmr", + "cooldownID": "AImr", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rman", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rma2": { + "itemID": "rma2", + "comment": "Rune of Mana(Greater)", + "scriptname": "RuneofManaGreater", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APmg", + "cooldownID": "AImr", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rma2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rres": { + "itemID": "rres", + "comment": "Rune of Restoration", + "scriptname": "RuneofRestoration", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APra", + "cooldownID": "AIra", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rres", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rreb": { + "itemID": "rreb", + "comment": "Rune of Rebirth", + "scriptname": "RuneofRebirth", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "AIrb", + "cooldownID": "AIrb", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rreb", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rhe1": { + "itemID": "rhe1", + "comment": "Rune of Lesser Healing", + "scriptname": "RuneofLesserHealing", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APh1", + "cooldownID": "AIha", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 1, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rhe1", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rhe2": { + "itemID": "rhe2", + "comment": "Rune of Healing", + "scriptname": "RuneofHealing", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APh2", + "cooldownID": "AIha", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rhe2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rhe3": { + "itemID": "rhe3", + "comment": "Rune of Greater Healing", + "scriptname": "RuneofGreaterHealing", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APh3", + "cooldownID": "AIha", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 300, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rhe3", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rdis": { + "itemID": "rdis", + "comment": "Rune of Dispel Magic", + "scriptname": "RuneofDispelMagic", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APdi", + "cooldownID": "APdi", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 75, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rdis", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "texp": { + "itemID": "texp", + "comment": "Tome of Experience", + "scriptname": "TomeofExperience", + "version": 0, + "class": "PowerUp", + "Level": 2, + "oldLevel": 5, + "abilList": "AIem", + "cooldownID": "AIem", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 500, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTomeBrown.blp", + "skinType": "item", + "skinnableID": "texp", + "armor": "Wood", + "file": "Objects\\InventoryItems\\tomeBrown\\tomeBrown.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "rwat": { + "itemID": "rwat", + "comment": "Rune of the Watcher", + "scriptname": "RuneoftheWatcher", + "version": 1, + "class": "PowerUp", + "Level": 0, + "oldLevel": 0, + "abilList": "APwt", + "cooldownID": "APwt", + "ignoreCD": 0, + "uses": 1, + "prio": 200, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 0, + "pickRandom": 0, + "powerup": 1, + "drop": 0, + "stockMax": 1, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 75, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRune.blp", + "skinType": "item", + "skinnableID": "rwat", + "armor": "Wood", + "file": "Objects\\InventoryItems\\runicobject\\runicobject.mdl", + "scale": "1", + "selSize": "80", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pclr": { + "itemID": "pclr", + "comment": "Clarity Potion", + "scriptname": "ClarityPotion", + "version": 1, + "class": "Purchasable", + "Level": 0, + "oldLevel": 0, + "abilList": "AIpr", + "cooldownID": "AIpr", + "ignoreCD": 0, + "uses": 1, + "prio": 67, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 45, + "stockStart": 0, + "goldcost": 160, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "1,2", + "Requires": "etoe", + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfClarity.blp", + "skinType": "item", + "skinnableID": "pclr", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "plcl": { + "itemID": "plcl", + "comment": "Lesser Clarity Potion", + "scriptname": "LesserClarityPotion", + "version": 1, + "class": "Purchasable", + "Level": 0, + "oldLevel": 0, + "abilList": "AIpl", + "cooldownID": "AIpr", + "ignoreCD": 0, + "uses": 1, + "prio": 57, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 30, + "stockStart": 0, + "goldcost": 70, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "1,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNLesserClarityPotion.blp", + "skinType": "item", + "skinnableID": "plcl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "silk": { + "itemID": "silk", + "comment": "Spider Silk", + "scriptname": "SpiderSilk", + "version": 1, + "class": "Purchasable", + "Level": 0, + "oldLevel": 0, + "abilList": "AIwb", + "cooldownID": "AIwb", + "ignoreCD": 0, + "uses": 4, + "prio": 81, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 60, + "stockStart": 0, + "goldcost": 50, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiderSilkBroach.blp", + "skinType": "item", + "skinnableID": "silk", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "vamp": { + "itemID": "vamp", + "comment": "Potion of Vampirism", + "scriptname": "PotionofVampirism", + "version": 1, + "class": "Charged", + "Level": 0, + "oldLevel": 0, + "abilList": "AIpv", + "cooldownID": "AIpv", + "ignoreCD": 0, + "uses": 1, + "prio": 39, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 1, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 45, + "stockStart": 0, + "goldcost": 150, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfVampirism.blp", + "skinType": "item", + "skinnableID": "vamp", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sreg": { + "itemID": "sreg", + "comment": "Scroll of Regeneration", + "scriptname": "ScrollofRegeneration", + "version": 1, + "class": "Purchasable", + "Level": 0, + "oldLevel": 0, + "abilList": "AIsl", + "cooldownID": "AIsl", + "ignoreCD": 0, + "uses": 1, + "prio": 70, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 2, + "stockRegen": 90, + "stockStart": 0, + "goldcost": 100, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,0", + "Art": "ReplaceableTextures\\CommandButtons\\BTNScrollOfRegenerationGreen.blp", + "skinType": "item", + "skinnableID": "sreg", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "tcas": { + "itemID": "tcas", + "comment": "Tiny Castle", + "scriptname": "TinyCastle", + "version": 1, + "class": "Purchasable", + "Level": 0, + "oldLevel": 0, + "abilList": "AIbl", + "cooldownID": "AIbl", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 800, + "lumbercost": 300, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Requires": "hcas", + "Art": "ReplaceableTextures\\CommandButtons\\BTNTinyCastle.blp", + "skinType": "item", + "skinnableID": "tcas", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ssan": { + "itemID": "ssan", + "comment": "Staff of Sanctuary", + "scriptname": "StaffofSanctuary", + "version": 1, + "class": "Purchasable", + "Level": 0, + "oldLevel": 0, + "abilList": "ANsa", + "cooldownID": "ANsa", + "ignoreCD": 0, + "uses": "-", + "prio": 3, + "usable": 1, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStaffOfSanctuary.blp", + "Requires": "hcas", + "Buttonpos": "1,2", + "skinType": "item", + "skinnableID": "ssan", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "ofr2": { + "itemID": "ofr2", + "comment": "Orb of Fire v2", + "scriptname": "OrbofFirev2", + "version": 0, + "class": "Miscellaneous", + "Level": 3, + "oldLevel": 7, + "abilList": "AIf2", + "cooldownID": "AIf2", + "ignoreCD": 0, + "uses": "-", + "prio": 95, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 250, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Buttonpos": "0,2", + "Requires": "hcas", + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrbOfFire.blp", + "skinType": "item", + "skinnableID": "ofr2", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sxpl": { + "itemID": "sxpl", + "comment": "Seed of Expulsion", + "scriptname": "SeedofExpulsion", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAcorn.blp", + "skinType": "item", + "skinnableID": "sxpl", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "vpur": { + "itemID": "vpur", + "comment": "Vine of Purification", + "scriptname": "VineofPurification", + "version": 1, + "class": "Campaign", + "Level": 0, + "oldLevel": 0, + "abilList": "_", + "ignoreCD": 0, + "uses": "-", + "prio": 0, + "usable": 0, + "perishable": 0, + "droppable": 1, + "pawnable": 0, + "sellable": 0, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 200, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 0, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNatureTouchGrow.blp", + "skinType": "item", + "skinnableID": "vpur", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "pdiv": { + "itemID": "pdiv", + "comment": "Potion of Divinity (Divine Shield)", + "scriptname": "PotionofDivinity", + "version": 1, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 0, + "abilList": "AIdv", + "cooldownID": "AHds", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPotionOfDivinity.blp", + "skinType": "item", + "skinnableID": "pdiv", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "fgrd": { + "itemID": "fgrd", + "comment": "Red Drake Egg", + "scriptname": "RedDrakeEgg", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 6, + "abilList": "AIfd", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRedDragon.blp", + "skinType": "item", + "skinnableID": "fgrd", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "totw": { + "itemID": "totw", + "comment": "talisman of the wild", + "scriptname": "talismanofthewild", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 7, + "abilList": "AIff", + "cooldownID": "AIfs", + "ignoreCD": 0, + "uses": 3, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 0, + "goldcost": 550, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStone.blp", + "skinType": "item", + "skinnableID": "totw", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "sand": { + "itemID": "sand", + "comment": "Scroll of Animate Dead", + "scriptname": "ScrollofAnimateDead", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 8, + "abilList": "AIan", + "cooldownID": "AIan", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnazzyScrollPurple.blp", + "skinType": "item", + "skinnableID": "sand", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "srrc": { + "itemID": "srrc", + "comment": "Scroll of Resurrection", + "scriptname": "ScrollofResurrection", + "version": 0, + "class": "Miscellaneous", + "Level": 0, + "oldLevel": 8, + "abilList": "AIrs", + "cooldownID": "AIrs", + "ignoreCD": 0, + "uses": 1, + "prio": 0, + "usable": 1, + "perishable": 1, + "droppable": 1, + "pawnable": 1, + "sellable": 1, + "pickRandom": 0, + "powerup": 0, + "drop": 0, + "stockMax": 1, + "stockRegen": 120, + "stockStart": 440, + "goldcost": 700, + "lumbercost": 0, + "HP": 75, + "morph": 0, + "InBeta": 1, + "stockInitial": 1, + "stackMax": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSnazzyScroll.blp", + "skinType": "item", + "skinnableID": "srrc", + "armor": "Wood", + "file": "Objects\\InventoryItems\\TreasureChest\\treasurechest.mdl", + "scale": "1", + "selSize": "0", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Units" + }, + "TWN1": { + "DependencyOr": "htow,ogre,etol,unpl", + "XPFactor": "0" + }, + "TWN2": { + "DependencyOr": "hkee,ostr,etoa,unp1", + "XPFactor": "0.15,0" + }, + "TWN3": { + "DependencyOr": "hcas,ofrt,etoe,unp2", + "XPFactor": "0.30,0" + }, + "TALT": { + "DependencyOr": "halt,oalt,eate,uaod" + }, + "mdpb": { + "Art": "ReplaceableTextures\\CommandButtons\\BTNPebble.blp" + } + }, + "destructable": { + "ATtr": { + "DestructableID": "ATtr", + "category": "D", + "tilesets": "A", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_ASHENVALE_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 326.2803, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 0, + "MMGreen": 54, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ATtr", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\AshenvaleTree\\AshenTree", + "file": "Doodads\\Terrain\\AshenTree\\AshenTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "BTtw": { + "DestructableID": "BTtw", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_BARRENS_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 304.1974, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 155, + "MMGreen": 110, + "MMBlue": 30, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "BTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "33", + "texFile": "ReplaceableTextures\\BarrensTree\\BarrensTree", + "file": "Doodads\\Terrain\\BarrensTree\\BarrensTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "CTtr": { + "DestructableID": "CTtr", + "category": "D", + "tilesets": "C", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_FELWOOD_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 305.284, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 45, + "MMGreen": 54, + "MMBlue": 20, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "CTtr", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\AshenvaleTree\\FelwoodTree", + "file": "Doodads\\Terrain\\AshenTree\\AshenTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "FTtw": { + "DestructableID": "FTtw", + "category": "D", + "tilesets": "F,Q", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_FALL_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 250.33625, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 110, + "MMGreen": 60, + "MMBlue": 10, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "FTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronFallTree", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "LOcg": { + "DestructableID": "LOcg", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Cage", + "Name": "WESTRING_DEST_CAGE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.935375, + "targType": "debris", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LOcg", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1.2", + "portraitmodel": "Doodads\\LordaeronSummer\\Props\\Cage\\Cage", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\Cage_Portrait\\Cage_Portrait", + "selcircsize": "80", + "file": "Doodads\\LordaeronSummer\\Props\\Cage\\Cage", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.8", + "shadow": "ShadowCage", + "addon": "Environment" + }, + "LTba": { + "DestructableID": "LTba", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Barricade", + "Name": "WESTRING_DOOD_LOBA", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 19.7984999999999, + "targType": "debris", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "LTba", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1.2", + "portraitmodel": "Doodads\\LordaeronSummer\\Terrain\\Barricade\\Barricade0", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\Barricade_Portrait\\Barricade_Portrait", + "selcircsize": "80", + "file": "Doodads\\LordaeronSummer\\Terrain\\Barricade\\Barricade", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.8", + "shadow": "ShadowCrates", + "addon": "Environment" + }, + "LTcr": { + "DestructableID": "LTcr", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Crates", + "Name": "WESTRING_DOOD_LOCS", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 37.7566666666666, + "targType": "debris", + "HP": 20, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "LTcr", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "CrateDeath", + "maxScale": "1.2", + "portraitmodel": "Buildings\\Other\\CratesUnit\\CratesUnit", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\CratesUnit_Portrait\\CratesUnit_Portrait", + "selcircsize": "60", + "file": "Doodads\\LordaeronSummer\\Terrain\\Crates\\Crates", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.8", + "shadow": "ShadowCrates", + "addon": "Environment" + }, + "LTbr": { + "DestructableID": "LTbr", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Barrel", + "Name": "WESTRING_DEST_BARREL", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 52.249, + "targType": "debris", + "HP": 20, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTbr", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "CrateDeath", + "maxScale": "1.5", + "portraitmodel": "Buildings\\Other\\BarrelsUnit0\\BarrelsUnit0", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\BarrelsUnit_Portrait\\BarrelsUnit0_Portrait", + "selcircsize": "80", + "file": "Buildings\\Other\\BarrelsUnit0\\BarrelsUnit0", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1.1", + "shadow": "ShadowCrates", + "addon": "Environment" + }, + "LTbx": { + "DestructableID": "LTbx", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Barrel", + "Name": "WESTRING_DEST_BARREL", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 58.452, + "targType": "debris", + "HP": 20, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTbx", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "CrateDeath", + "maxScale": "1.5", + "portraitmodel": "Buildings\\Other\\BarrelsUnit1\\BarrelsUnit1", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\BarrelsUnit_Portrait\\BarrelsUnit1_Portrait", + "selcircsize": "80", + "file": "Buildings\\Other\\BarrelsUnit1\\BarrelsUnit1", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1.1", + "shadow": "ShadowCrates", + "addon": "Environment" + }, + "LTbs": { + "DestructableID": "LTbs", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Barrel", + "Name": "WESTRING_DEST_BARREL", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 43.704, + "targType": "debris", + "HP": 20, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTbs", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "CrateDeath", + "maxScale": "1.5", + "portraitmodel": "Buildings\\Other\\BarrelsUnit\\BarrelsUnit", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\BarrelsUnit_Portrait\\BarrelsUnit_Portrait", + "selcircsize": "80", + "file": "Buildings\\Other\\BarrelsUnit\\BarrelsUnit", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1.1", + "shadow": "ShadowCrates", + "addon": "Environment" + }, + "LTex": { + "DestructableID": "LTex", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Barrel", + "Name": "WESTRING_DEST_BARREL_EXPLOSIVES", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 59.891, + "targType": "debris", + "HP": 20, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTex", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "ExplodingBarrelDeath", + "maxScale": "1.5", + "portraitmodel": "Units\\Other\\TNTBarrel\\TNTBarrel", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\TNTBarrel_Portrait\\TNTBarrel_Portrait", + "selcircsize": "90", + "file": "Units\\Other\\TNTBarrel\\TNTBarrel", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1.1", + "shadow": "ShadowCrates", + "addon": "Environment" + }, + "LTg1": { + "DestructableID": "LTg1", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_GATE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTg1", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\Gate\\Gate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "minScale:hd": "1", + "maxScale:hd": "1", + "addon": "Environment" + }, + "LTg2": { + "DestructableID": "LTg2", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_GATE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 279.658, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTg2", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\Gate45\\Gate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "LTg3": { + "DestructableID": "LTg3", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_GATE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTg3", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\Gate\\Gate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "minScale:hd": "1", + "maxScale:hd": "1", + "addon": "Environment" + }, + "LTg4": { + "DestructableID": "LTg4", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_GATE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 279.658, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTg4", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\Gate45\\Gate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "LTe1": { + "DestructableID": "LTe1", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Elven Gate", + "Name": "WESTRING_DEST_ELVEN_GATE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTe1", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\ElfGate\\ElfGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\ElfGate_Portrait\\ElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "LTe2": { + "DestructableID": "LTe2", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Elven Gate", + "Name": "WESTRING_DEST_ELVEN_GATE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 281.055, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTe2", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\ElfGate45\\ElfGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\ElfGate_Portrait\\ElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "LTe3": { + "DestructableID": "LTe3", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Elven Gate", + "Name": "WESTRING_DEST_ELVEN_GATE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTe3", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\ElfGate\\ElfGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\ElfGate_Portrait\\ElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "LTe4": { + "DestructableID": "LTe4", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Elven Gate", + "Name": "WESTRING_DEST_ELVEN_GATE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 281.055, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTe4", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\ElfGate45\\ElfGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\ElfGate_Portrait\\ElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "ATg1": { + "DestructableID": "ATg1", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_DEMON_GATE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ATg1", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\BigElfGate\\BigElfGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ATg2": { + "DestructableID": "ATg2", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_DEMON_GATE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 287.113, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ATg2", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\BigElfGate45\\BigElfGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ATg3": { + "DestructableID": "ATg3", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_DEMON_GATE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ATg3", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\BigElfGate\\BigElfGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "ATg4": { + "DestructableID": "ATg4", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_DEMON_GATE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 287.113, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ATg4", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\BigElfGate45\\BigElfGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\BigElfGate_Portrait\\BigElfGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "DTg5": { + "DestructableID": "DTg5", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_IRON_GATE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 328.512, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg5", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\IronGate\\IronGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IronGate_Portrait\\IronGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "DTg6": { + "DestructableID": "DTg6", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_IRON_GATE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 328.511, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg6", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\IronGate45\\IronGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IronGate_Portrait\\IronGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "DTg7": { + "DestructableID": "DTg7", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_IRON_GATE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 328.512, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg7", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\IronGate\\IronGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IronGate_Portrait\\IronGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "DTg8": { + "DestructableID": "DTg8", + "category": "D", + "tilesets": "L,F,W,B,A,C,Y,X,V,Q,D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Iron Gate", + "Name": "WESTRING_DEST_IRON_GATE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 328.511, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg8", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\LordaeronSummer\\Terrain\\IronGate45\\IronGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IronGate_Portrait\\IronGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "DTg1": { + "DestructableID": "DTg1", + "category": "D", + "tilesets": "D,G,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "DungeonGate", + "Name": "WESTRING_DEST_DTG1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 100, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg1", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Dungeon\\Terrain\\DungeonPorticulisGate\\DungeonPorticulisGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "DTg2": { + "DestructableID": "DTg2", + "category": "D", + "tilesets": "D,G,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "DungeonGate", + "Name": "WESTRING_DEST_DTG2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 280.826, + "targType": "debris", + "HP": 100, + "occH": 0, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg2", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Dungeon\\Terrain\\DungeonPorticulisGate45\\DungeonPorticulisGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "DTg3": { + "DestructableID": "DTg3", + "category": "D", + "tilesets": "D,G,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "DungeonGate", + "Name": "WESTRING_DEST_DTG3", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 100, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg3", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Dungeon\\Terrain\\DungeonPorticulisGate\\DungeonPorticulisGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "DTg4": { + "DestructableID": "DTg4", + "category": "D", + "tilesets": "D,G,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "DungeonGate", + "Name": "WESTRING_DEST_DTG4", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 280.826, + "targType": "debris", + "HP": 100, + "occH": 0, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTg4", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Dungeon\\Terrain\\DungeonPorticulisGate45\\DungeonPorticulisGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\DungeonPorticulisGate_Portrait\\DungeonPorticulisGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "LTlt": { + "DestructableID": "LTlt", + "category": "D", + "tilesets": "L", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_SUMMER_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 251.549911764705, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 32, + "MMGreen": 90, + "MMBlue": 32, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "LTlt", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "NTtw": { + "DestructableID": "NTtw", + "category": "D", + "tilesets": "N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_NORTHREND_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 211.039, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 32, + "MMGreen": 48, + "MMBlue": 32, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "NTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "34", + "texFile": "ReplaceableTextures\\NorthrendTree\\NorthTree", + "file": "Doodads\\Terrain\\NorthrendTree\\NorthrendTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "WTtw": { + "DestructableID": "WTtw", + "category": "D", + "tilesets": "W", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_WINTER_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 250.336, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 80, + "MMGreen": 160, + "MMBlue": 185, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "WTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronWinterTree", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "WTst": { + "DestructableID": "WTst", + "category": "D", + "tilesets": "W,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_SNOWY_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 250.336333333333, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 110, + "MMGreen": 170, + "MMBlue": 180, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "WTst", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSnowTree", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "YTct": { + "DestructableID": "YTct", + "category": "D", + "tilesets": "Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_CITYSCAPE_SUMMER_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 368.521, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 32, + "MMGreen": 90, + "MMBlue": 32, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "YTct", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "file": "Doodads\\Terrain\\CityscapeTree\\CityscapeTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "ShadowCityTree", + "addon": "Environment" + }, + "YTwt": { + "DestructableID": "YTwt", + "category": "D", + "tilesets": "Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_CITYSCAPE_WINTER_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 368.522, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 80, + "MMGreen": 160, + "MMBlue": 185, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "YTwt", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronWinterTree", + "file": "Doodads\\Terrain\\CityscapeTree\\CityscapeTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "ShadowCityTree", + "addon": "Environment" + }, + "YTst": { + "DestructableID": "YTst", + "category": "D", + "tilesets": "Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_CITYSCAPE_SNOWY_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 368.521, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 110, + "MMGreen": 170, + "MMBlue": 180, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "YTst", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSnowTree", + "file": "Doodads\\Terrain\\CityscapeTree\\CityscapeTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "ShadowCityTree", + "addon": "Environment" + }, + "YTft": { + "DestructableID": "YTft", + "category": "D", + "tilesets": "Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_CITYSCAPE_FALL_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 368.521, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 75, + "MMGreen": 50, + "MMBlue": 30, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "YTft", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronFallTree", + "file": "Doodads\\Terrain\\CityscapeTree\\CityscapeTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "ShadowCityTree", + "addon": "Environment" + }, + "VTlt": { + "DestructableID": "VTlt", + "category": "D", + "tilesets": "V", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_VILLAGE_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 250.336, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 32, + "MMGreen": 90, + "MMBlue": 32, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "VTlt", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "LTw0": { + "DestructableID": "LTw0", + "category": "D", + "tilesets": "L,F,W,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 0", + "Name": "WESTRING_DEST_STONE_WALL_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 108.361666666666, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall1Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "LTw0", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\LordaeronSummer\\Terrain\\StoneWall0\\StoneWall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall1", + "addon": "Environment" + }, + "LTw1": { + "DestructableID": "LTw1", + "category": "D", + "tilesets": "L,F,W,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 45", + "Name": "WESTRING_DEST_STONE_WALL_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 94.168, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall2Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "LTw1", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\LordaeronSummer\\Terrain\\StoneWall45\\StoneWall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall2", + "addon": "Environment" + }, + "LTw2": { + "DestructableID": "LTw2", + "category": "D", + "tilesets": "L,F,W,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 90", + "Name": "WESTRING_DEST_STONE_WALL_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 119.587, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall3Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "LTw2", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\LordaeronSummer\\Terrain\\StoneWall90\\StoneWall90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall3", + "addon": "Environment" + }, + "LTw3": { + "DestructableID": "LTw3", + "category": "D", + "tilesets": "L,F,W,Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 135", + "Name": "WESTRING_DEST_STONE_WALL_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 94.168, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall4Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "LTw3", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\LordaeronSummer\\Terrain\\StoneWall135\\StoneWall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall4", + "addon": "Environment" + }, + "YT00": { + "DestructableID": "YT00", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 0", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT00", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall0\\RockBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT01": { + "DestructableID": "YT01", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 0", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT01", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall45\\RockBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT02": { + "DestructableID": "YT02", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 0", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT02", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall0\\RockBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT03": { + "DestructableID": "YT03", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 0", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT03", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall45\\RockBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT04": { + "DestructableID": "YT04", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT04", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge0\\RockBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT05": { + "DestructableID": "YT05", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 0", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT05", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge45\\RockBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT06": { + "DestructableID": "YT06", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT06", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge0\\RockBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT07": { + "DestructableID": "YT07", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 0", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT07", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge45\\RockBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT08": { + "DestructableID": "YT08", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 0", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT08", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge0\\RockBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT09": { + "DestructableID": "YT09", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 0", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT09", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge45\\RockBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT10": { + "DestructableID": "YT10", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 0", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT10", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge0\\RockBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT11": { + "DestructableID": "YT11", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 0", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT11", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge0.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge45\\RockBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT12": { + "DestructableID": "YT12", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 1", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT12", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall0\\CityBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT13": { + "DestructableID": "YT13", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 1", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT13", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall45\\CityBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT14": { + "DestructableID": "YT14", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 1", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall90.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT14", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall90\\CityBridgeSmall90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT15": { + "DestructableID": "YT15", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 1", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall135.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT15", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall135\\CityBridgeSmall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT16": { + "DestructableID": "YT16", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 1", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT16", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge0\\CityBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT17": { + "DestructableID": "YT17", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 1", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT17", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge45\\CityBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT18": { + "DestructableID": "YT18", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 1", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge90.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT18", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge90\\CityBridgeLarge90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT19": { + "DestructableID": "YT19", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 1", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge135.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT19", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge135\\CityBridgeLarge135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT20": { + "DestructableID": "YT20", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 1", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT20", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge0\\CityBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT21": { + "DestructableID": "YT21", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 1", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT21", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge45\\CityBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT22": { + "DestructableID": "YT22", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 1", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge90.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT22", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge90\\CityBridgeExtraLarge90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT23": { + "DestructableID": "YT23", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 1", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge135.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT23", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge135\\CityBridgeExtraLarge135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT00": { + "DestructableID": "LT00", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 0", + "Name": "WESTRING_DEST_SHORT_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT00", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeSmall0\\WoodBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT01": { + "DestructableID": "LT01", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 0", + "Name": "WESTRING_DEST_SHORT_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT01", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeSmall45\\WoodBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT02": { + "DestructableID": "LT02", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 0", + "Name": "WESTRING_DEST_SHORT_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT02", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeSmall0\\WoodBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT03": { + "DestructableID": "LT03", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 0", + "Name": "WESTRING_DEST_SHORT_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT03", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeSmall45\\WoodBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT04": { + "DestructableID": "LT04", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_LONG_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT04", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeLarge0\\WoodBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT05": { + "DestructableID": "LT05", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 0", + "Name": "WESTRING_DEST_LONG_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT05", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeLarge45\\WoodBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT06": { + "DestructableID": "LT06", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_LONG_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT06", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeLarge0\\WoodBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT07": { + "DestructableID": "LT07", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 0", + "Name": "WESTRING_DEST_LONG_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT07", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeLarge45\\WoodBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT08": { + "DestructableID": "LT08", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 0", + "Name": "WESTRING_DEST_WIDE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT08", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeExtraLarge0\\WoodBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT09": { + "DestructableID": "LT09", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 0", + "Name": "WESTRING_DEST_WIDE_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT09", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeExtraLarge45\\WoodBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT10": { + "DestructableID": "LT10", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 0", + "Name": "WESTRING_DEST_WIDE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT10", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeExtraLarge0\\WoodBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LT11": { + "DestructableID": "LT11", + "category": "B", + "tilesets": "A,B,Y,X,J,D,C,I,F,L,W,N,Z,G,V,Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 0", + "Name": "WESTRING_DEST_WIDE_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LT11", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Terrain\\WoodBridgeExtraLarge45\\WoodBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "XTbd": { + "DestructableID": "XTbd", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Building", + "Name": "WESTRING_DEST_BUILDING", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\8x8Unflyable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "XTbd", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Dalaran\\Terrain\\DalaranBuilding\\DalaranBuilding", + "selSize": "384", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "ShadowDalaranBuilding", + "addon": "Environment" + }, + "XTvt": { + "DestructableID": "XTvt", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_LARGE_BUILDING", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTex": "PathTextures\\12x12Unflyable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTvt", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Dalaran\\Structures\\DalaranVioletCitadel\\DalaranVioletCitadel", + "selSize": "512", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "ShadowDalaranBuilding", + "addon": "Environment" + }, + "LTr1": { + "DestructableID": "LTr1", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 135", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_LEFT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMLEFT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp45.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr1", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall135\\BridgeRampSmall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTr2": { + "DestructableID": "LTr2", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 225", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_LEFT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPLEFT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp135.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr2", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall225\\BridgeRampSmall225", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTr3": { + "DestructableID": "LTr3", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 315", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_RIGHT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPRIGHT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp45.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr3", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall315\\BridgeRampSmall315", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTr4": { + "DestructableID": "LTr4", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 45", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_RIGHT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMRIGHT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp135.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr4", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall45\\BridgeRampSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTr5": { + "DestructableID": "LTr5", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 135", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_LEFT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMLEFT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp45.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr5", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall135\\BridgeRampSmall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTr6": { + "DestructableID": "LTr6", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 225", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_LEFT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPLEFT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp135.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr6", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall225\\BridgeRampSmall225", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTr7": { + "DestructableID": "LTr7", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 315", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_RIGHT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPRIGHT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp45.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr7", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall315\\BridgeRampSmall315", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTr8": { + "DestructableID": "LTr8", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 45", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_RIGHT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMRIGHT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneCliffRamp135.tga", + "pathTexDeath": "PathTextures\\StoneCliffRamp135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTr8", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall45\\BridgeRampSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "NTbd": { + "DestructableID": "NTbd", + "category": "D", + "tilesets": "N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Ship", + "Name": "WESTRING_DOOD_NOSP", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 222.739, + "targType": "debris", + "HP": 200, + "occH": 0, + "radius": 0, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 100, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NTbd", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Northrend\\Water\\Battleship\\Battleship", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "DTes": { + "DestructableID": "DTes", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Egg Sack", + "Name": "WESTRING_DEST_EGGSACK", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 66.345, + "targType": "debris", + "HP": 15, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "DTes", + "colorB": "255", + "colorG": "255", + "deathSnd": "EggSackDeath", + "armor": "Wood", + "colorR": "255", + "maxScale": "1.2", + "portraitmodel": "Doodads\\Terrain\\Portraits\\EggSack_portrait\\EggSack_portrait", + "selcircsize": "112", + "file": "Doodads\\Dungeon\\Terrain\\EggSack\\EggSack", + "selSize": "60", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.8", + "shadow": "ShadowCrates.blp", + "addon": "Environment" + }, + "DTsh": { + "DestructableID": "DTsh", + "category": "D", + "tilesets": "D", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_DUNGEON_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 24.141, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 155, + "MMGreen": 70, + "MMBlue": 60, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "8", + "skinnableID": "DTsh", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "35", + "texFile": "ReplaceableTextures\\Mushroom\\MushroomTree.blp", + "file": "Doodads\\Terrain\\Shrooms\\Shrooms", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "YSdb": { + "DestructableID": "YSdb", + "category": "B", + "tilesets": "Y", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "destroyed bridge 45", + "Name": "WESTRING_DOOD_YSDB", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CitybridgeDestroyed.tga", + "pathTexDeath": "PathTextures\\CitybridgeDestroyed.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YSdb", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Cityscape\\Structures\\CityBridgeLarge45Destroyed\\CityBridgeLarge45Destroyed", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YSdc": { + "DestructableID": "YSdc", + "category": "B", + "tilesets": "Y", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "destroyed bridge 135", + "Name": "WESTRING_DOOD_YSDC", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CitybridgeDestroyed.tga", + "pathTexDeath": "PathTextures\\CitybridgeDestroyed.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YSdc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Cityscape\\Structures\\CityBridgeLarge45Destroyed\\CityBridgeLarge45Destroyed", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "XOkt": { + "DestructableID": "XOkt", + "category": "D", + "tilesets": "X,Y", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "_", + "Name": "WESTRING_DOOD_XOkt", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 56.885, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\throne.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XOkt", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Dalaran\\Props\\KingThrone\\KingThrone", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "XOk1": { + "DestructableID": "XOk1", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "_", + "Name": "WESTRING_DOOD_XOk1", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 56.798, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\throne135.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XOk1", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Dalaran\\Props\\KingThrone45\\KingThrone45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "XOk2": { + "DestructableID": "XOk2", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "_", + "Name": "WESTRING_DOOD_XOk2", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 56.476, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\throne45.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XOk2", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Dalaran\\Props\\KingThrone135\\KingThrone135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "DTc1": { + "DestructableID": "DTc1", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "CaveGate1", + "Name": "WESTRING_DEST_DTC1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_ONE", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\CaveGate1Path.tga", + "pathTexDeath": "PathTextures\\CaveGate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTc1", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "160", + "file": "Doodads\\Dungeon\\Terrain\\CaveGate\\CaveGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\CaveGate_Portrait\\CaveGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTc2": { + "DestructableID": "DTc2", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "CaveGate2", + "Name": "WESTRING_DEST_DTC2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TWO", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\CaveGate2Path.tga", + "pathTexDeath": "PathTextures\\CaveGate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTc2", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "160", + "file": "Doodads\\Dungeon\\Terrain\\CaveGate2\\CaveGate2", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\CaveGate_Portrait\\CaveGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTsp": { + "DestructableID": "DTsp", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Spikes", + "Name": "WESTRING_DEST_SPIKES", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 200, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTsp", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "maxRoll": "45", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Abilities\\Spells\\Orc\\SpikeBarrier\\SpikeBarrier", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.6", + "maxPitch": "45", + "shadow": "none", + "addon": "Environment" + }, + "DTrc": { + "DestructableID": "DTrc", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "rock chunks", + "Name": "WESTRING_DEST_ROCK_CHUNKS", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 76.097, + "targType": "debris", + "HP": 250, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 1, + "flyH": 100, + "skinType": "destructable", + "numVar": "6", + "skinnableID": "DTrc", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "RockChunkDeath", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RockChunks_Portrait\\RockChunks_Portrait", + "selcircsize": "200", + "file": "Doodads\\Terrain\\RockChunks\\RockChunks", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTs0": { + "DestructableID": "DTs0", + "category": "B", + "tilesets": "D,G", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Force Bridge 0", + "Name": "WESTRING_DEST_FORCE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 274, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTs0", + "colorB": "255", + "soundLoop": "ForceWallLoop", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\ForceBridgeLarge0\\ForceBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTs1": { + "DestructableID": "DTs1", + "category": "B", + "tilesets": "D,G", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Force Bridge 45", + "Name": "WESTRING_DEST_FORCE_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 274.594, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTs1", + "colorB": "255", + "soundLoop": "ForceWallLoop", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\ForceBridgeLarge45\\ForceBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTs2": { + "DestructableID": "DTs2", + "category": "B", + "tilesets": "D,G", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Force Bridge 90", + "Name": "WESTRING_DEST_FORCE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 274.556, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTs2", + "colorB": "255", + "soundLoop": "ForceWallLoop", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\ForceBridgeLarge0\\ForceBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTs3": { + "DestructableID": "DTs3", + "category": "B", + "tilesets": "D,G", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Force Bridge 135", + "Name": "WESTRING_DEST_FORCE_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 274.594, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTs3", + "colorB": "255", + "soundLoop": "ForceWallLoop", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\ForceBridgeLarge45\\ForceBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "Dofw": { + "DestructableID": "Dofw", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Forcewall", + "Name": "WESTRING_DEST_DOFW", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\ForceWall.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "Dofw", + "colorB": "255", + "soundLoop": "ForceWallLoop", + "deathSnd": "ForceWallDeath", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Dungeon\\Props\\Forcewall\\Forcewall", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "Dofv": { + "DestructableID": "Dofv", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Forcewall45", + "Name": "WESTRING_DEST_DOFV", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\ForceWall45.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "Dofv", + "colorB": "255", + "colorG": "255", + "soundLoop": "ForceWallLoop", + "deathSnd": "ForceWallDeath", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Dungeon\\Props\\Forcewall45\\Forcewall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT24": { + "DestructableID": "YT24", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 1", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT24", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall0\\RockBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT25": { + "DestructableID": "YT25", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 1", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT25", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall45\\RockBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT26": { + "DestructableID": "YT26", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 1", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT26", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall0\\RockBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT27": { + "DestructableID": "YT27", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 1", + "Name": "WESTRING_DEST_SHORT_NATURAL_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT27", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeSmall45\\RockBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT28": { + "DestructableID": "YT28", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 1", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT28", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge0\\RockBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT29": { + "DestructableID": "YT29", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 1", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT29", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge45\\RockBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT30": { + "DestructableID": "YT30", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 1", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT30", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge0\\RockBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT31": { + "DestructableID": "YT31", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 1", + "Name": "WESTRING_DEST_LONG_NATURAL_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT31", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeLarge45\\RockBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT32": { + "DestructableID": "YT32", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT32", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge0\\RockBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT33": { + "DestructableID": "YT33", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT33", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge45\\RockBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT34": { + "DestructableID": "YT34", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT34", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge0\\RockBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT35": { + "DestructableID": "YT35", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT35", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge45\\RockBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT36": { + "DestructableID": "YT36", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 0", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT36", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall0\\CityBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT37": { + "DestructableID": "YT37", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 0", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT37", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall45\\CityBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT38": { + "DestructableID": "YT38", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 0", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall90.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT38", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall90\\CityBridgeSmall90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT39": { + "DestructableID": "YT39", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 0", + "Name": "WESTRING_DEST_SHORT_STONE_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall135.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT39", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeSmall135\\CityBridgeSmall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT40": { + "DestructableID": "YT40", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT40", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge0\\CityBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT41": { + "DestructableID": "YT41", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 0", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT41", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge45\\CityBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT42": { + "DestructableID": "YT42", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge90.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT42", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge90\\CityBridgeLarge90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT43": { + "DestructableID": "YT43", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 0", + "Name": "WESTRING_DEST_LONG_STONE_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge135.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT43", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeLarge135\\CityBridgeLarge135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT44": { + "DestructableID": "YT44", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 0", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT44", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge0\\CityBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT45": { + "DestructableID": "YT45", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 0", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT45", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge45\\CityBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT46": { + "DestructableID": "YT46", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 0", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge90.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT46", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge90\\CityBridgeExtraLarge90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT47": { + "DestructableID": "YT47", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 0", + "Name": "WESTRING_DEST_WIDE_STONE_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge135.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT47", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StoneBridge.blp", + "file": "Doodads\\Terrain\\CityBridgeExtraLarge135\\CityBridgeExtraLarge135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ZTr0": { + "DestructableID": "ZTr0", + "category": "B", + "tilesets": "Z", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "NagaRampSmall0", + "Name": "WESTRING_DOOD_ZCR0", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 78.613, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\NagaStairsSmall0.tga", + "pathTexDeath": "PathTextures\\NagaStairsSmall0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTr0", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\CliffDoodad\\NagaStairsSmall0\\NagaStairsSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ZTr1": { + "DestructableID": "ZTr1", + "category": "B", + "tilesets": "Z", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "NagaRampSmall90", + "Name": "WESTRING_DOOD_ZCR1", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 78.613, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\NagaStairsSmall90.tga", + "pathTexDeath": "PathTextures\\NagaStairsSmall90.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTr1", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\CliffDoodad\\NagaStairsSmall90\\NagaStairsSmall90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ZTr2": { + "DestructableID": "ZTr2", + "category": "B", + "tilesets": "Z", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "NagaRampSmall180", + "Name": "WESTRING_DOOD_ZCR2", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 78.613, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\NagaStairsSmall180.tga", + "pathTexDeath": "PathTextures\\NagaStairsSmall180.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTr2", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\CliffDoodad\\NagaStairsSmall180\\NagaStairsSmall180", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ZTr3": { + "DestructableID": "ZTr3", + "category": "B", + "tilesets": "Z", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "NagaRampSmall270", + "Name": "WESTRING_DOOD_ZCR3", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 78.612, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\NagaStairsSmall270.tga", + "pathTexDeath": "PathTextures\\NagaStairsSmall270.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTr3", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Terrain\\CliffDoodad\\NagaStairsSmall270\\NagaStairsSmall270", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ZTtw": { + "DestructableID": "ZTtw", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_RUINS_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 268.829142857142, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 88, + "MMGreen": 124, + "MMBlue": 36, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "ZTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.05", + "texID": "36", + "texFile": "ReplaceableTextures\\RuinsTree\\RuinsTree", + "file": "Doodads\\Terrain\\RuinsTree\\RuinsTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.65", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "ZTw0": { + "DestructableID": "ZTw0", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 0", + "Name": "WESTRING_DEST_STONE_WALL_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.093, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall1Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ZTw0", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Ruins\\Terrain\\RuinsWall0\\RuinsWall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall1", + "addon": "Environment" + }, + "ZTw1": { + "DestructableID": "ZTw1", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 45", + "Name": "WESTRING_DEST_STONE_WALL_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.589, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall2Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ZTw1", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Ruins\\Terrain\\RuinsWall45\\RuinsWall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall2", + "addon": "Environment" + }, + "ZTw2": { + "DestructableID": "ZTw2", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 90", + "Name": "WESTRING_DEST_STONE_WALL_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.093, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall3Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ZTw2", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Ruins\\Terrain\\RuinsWall90\\RuinsWall90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall3", + "addon": "Environment" + }, + "ZTw3": { + "DestructableID": "ZTw3", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 135", + "Name": "WESTRING_DEST_STONE_WALL_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.589, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall4Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ZTw3", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Ruins\\Terrain\\RuinsWall135\\RuinsWall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall4", + "addon": "Environment" + }, + "ZTg1": { + "DestructableID": "ZTg1", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_RUINS_GATE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTg1", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Ruins\\Terrain\\RuinsGate\\RuinsGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\RuinsGate_Portrait\\RuinsGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ZTg2": { + "DestructableID": "ZTg2", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_RUINS_GATE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 291.999, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTg2", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Ruins\\Terrain\\RuinsGate45\\RuinsGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\RuinsGate_Portrait\\RuinsGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ZTg3": { + "DestructableID": "ZTg3", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_RUINS_GATE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTg3", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Ruins\\Terrain\\RuinsGate\\RuinsGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\RuinsGate_Portrait\\RuinsGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "ZTg4": { + "DestructableID": "ZTg4", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_RUINS_GATE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 291.999, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTg4", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Ruins\\Terrain\\RuinsGate45\\RuinsGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\RuinsGate_Portrait\\RuinsGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "ITtw": { + "DestructableID": "ITtw", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_ICECROWN_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 19.203, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 42, + "MMGreen": 85, + "MMBlue": 112, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "ITtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1", + "texID": "32", + "texFile": "ReplaceableTextures\\AshenvaleTree\\Ice_Tree", + "file": "Doodads\\Terrain\\AshenTree\\AshenTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "ZTd1": { + "DestructableID": "ZTd1", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_HORIZONTAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd1", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ZTd2": { + "DestructableID": "ZTd2", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_VERTICAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor1Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd2", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ZTd3": { + "DestructableID": "ZTd3", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_HORIZONTAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd3", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "0.9", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ZTd4": { + "DestructableID": "ZTd4", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_VERTICAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd4", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "0.9", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ZTd5": { + "DestructableID": "ZTd5", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_HORIZONTAL_3", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL3", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd5", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ZTd6": { + "DestructableID": "ZTd6", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_VERTICAL_3", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL3", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor1Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd6", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ZTd7": { + "DestructableID": "ZTd7", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_HORIZONTAL_4", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL4", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd7", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "0.9", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ZTd8": { + "DestructableID": "ZTd8", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_VERTICAL_4", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL4", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTd8", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "0.9", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ITib": { + "DestructableID": "ITib", + "category": "B", + "tilesets": "I,N", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Ice Bridge", + "Name": "WESTRING_DEST_ICE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 71.024, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITib", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\IceBridge.blp", + "file": "Doodads\\Terrain\\IceBridge\\IceBridge", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITi2": { + "DestructableID": "ITi2", + "category": "B", + "tilesets": "I,N", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Ice Bridge 45", + "Name": "WESTRING_DEST_ICE_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 71.172, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITi2", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\IceBridge.blp", + "file": "Doodads\\Terrain\\IceBridge45\\IceBridge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITi3": { + "DestructableID": "ITi3", + "category": "B", + "tilesets": "I,N", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Ice Bridge", + "Name": "WESTRING_DEST_ICE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 71.024, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITi3", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\IceBridge.blp", + "file": "Doodads\\Terrain\\IceBridge\\IceBridge", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITi4": { + "DestructableID": "ITi4", + "category": "B", + "tilesets": "I,N", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Ice Bridge 45", + "Name": "WESTRING_DEST_ICE_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 71.172, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITi4", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\IceBridge.blp", + "file": "Doodads\\Terrain\\IceBridge45\\IceBridge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITg1": { + "DestructableID": "ITg1", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICECROWN_GATE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITg1", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownGate\\IceCrownGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownGate_Portrait\\IceCrownGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ITg2": { + "DestructableID": "ITg2", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICECROWN_GATE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 291.999, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITg2", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownGate45\\IceCrownGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownGate_Portrait\\IceCrownGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ITg3": { + "DestructableID": "ITg3", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICECROWN_GATE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 267.388, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITg3", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownGate\\IceCrownGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownGate_Portrait\\IceCrownGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "ITg4": { + "DestructableID": "ITg4", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICECROWN_GATE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 291.999, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITg4", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownGate45\\IceCrownGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownGate_Portrait\\IceCrownGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "ITw0": { + "DestructableID": "ITw0", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 0", + "Name": "WESTRING_DEST_STONE_WALL_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.093, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall1Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ITw0", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownWall0\\IceCrownWall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall1", + "addon": "Environment" + }, + "ITw1": { + "DestructableID": "ITw1", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 45", + "Name": "WESTRING_DEST_STONE_WALL_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.589, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall2Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ITw1", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownWall45\\IceCrownWall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall2", + "addon": "Environment" + }, + "ITw2": { + "DestructableID": "ITw2", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 90", + "Name": "WESTRING_DEST_STONE_WALL_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.093, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall3Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ITw2", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownWall90\\IceCrownWall90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall3", + "addon": "Environment" + }, + "ITw3": { + "DestructableID": "ITw3", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Stone Wall 135", + "Name": "WESTRING_DEST_STONE_WALL_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 116.589, + "targType": "wall", + "HP": 200, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\StoneWall4Path.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "5", + "skinnableID": "ITw3", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownWall135\\IceCrownWall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowStoneWall4", + "addon": "Environment" + }, + "LTt0": { + "DestructableID": "LTt0", + "category": "B", + "tilesets": "L", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTt0", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\LS_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "shadow": "none", + "addon": "Environment" + }, + "LTt1": { + "DestructableID": "LTt1", + "category": "B", + "tilesets": "L", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTt1", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\LS_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "shadow": "none", + "addon": "Environment" + }, + "LTt2": { + "DestructableID": "LTt2", + "category": "B", + "tilesets": "F,Q", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTt2", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronFallTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\LF_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "shadow": "none", + "addon": "Environment" + }, + "LTt3": { + "DestructableID": "LTt3", + "category": "B", + "tilesets": "F,Q", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTt3", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronFallTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\LF_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "shadow": "none", + "addon": "Environment" + }, + "LTt4": { + "DestructableID": "LTt4", + "category": "B", + "tilesets": "W,N,I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTt4", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronWinterTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\LW_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "shadow": "none", + "addon": "Environment" + }, + "ATt0": { + "DestructableID": "ATt0", + "category": "B", + "tilesets": "W,N,I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ATt0", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronWinterTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\LW_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "shadow": "none", + "addon": "Environment" + }, + "ATt1": { + "DestructableID": "ATt1", + "category": "B", + "tilesets": "A", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ATt1", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\AshenvaleTree\\AshenTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\AV_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "shadow": "none", + "addon": "Environment" + }, + "LTt5": { + "DestructableID": "LTt5", + "category": "B", + "tilesets": "A", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Bridge", + "Name": "WESTRING_DEST_TREE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 1, + "modelHeight": 2.441, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\TreeBridge0Death.tga", + "pathTexDeath": "PathTextures\\TreeBridge0.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTt5", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.8", + "texID": "31", + "texFile": "ReplaceableTextures\\AshenvaleTree\\AshenTree", + "texFile:hd": "ReplaceableTextures\\Treebridge\\AV_BridgesRamps_TreeBridge.blp", + "file": "Doodads\\Terrain\\TreeBridge0\\TreeBridge0", + "minScale": "1", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "shadow": "none", + "addon": "Environment" + }, + "ZTnc": { + "DestructableID": "ZTnc", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Ruins Naga Circle", + "Name": "WESTRING_DOOD_ZONC", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 9.844, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTnc", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Ruins\\Props\\Ruins_NagaCircle\\Ruins_NagaCircle", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITf1": { + "DestructableID": "ITf1", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Ice Floe", + "Name": "WESTRING_DOOD_NWF1", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 28.854, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITf1", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Northrend\\Water\\North_IceFloe\\North_IceFloe", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITf2": { + "DestructableID": "ITf2", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Ice Floe", + "Name": "WESTRING_DOOD_NWF1", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 22.327, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITf2", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Northrend\\Water\\North_IceFloe2\\North_IceFloe2", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITf3": { + "DestructableID": "ITf3", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Ice Floe", + "Name": "WESTRING_DOOD_NWF1", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 28.961, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITf3", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Northrend\\Water\\North_IceFloe3\\North_IceFloe3", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITf4": { + "DestructableID": "ITf4", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Ice Floe", + "Name": "WESTRING_DOOD_NWF1", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 17.694, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITf4", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Northrend\\Water\\North_IceFloe4\\North_IceFloe4", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITx1": { + "DestructableID": "ITx1", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICE_GATE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 362.129, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITx1", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceGate\\IceGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceGate_Portrait\\IceGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ITx2": { + "DestructableID": "ITx2", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICE_GATE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 356.26, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITx2", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceGate45\\IceGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceGate_Portrait\\IceGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ITx3": { + "DestructableID": "ITx3", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICE_GATE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 362.13, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\Gate1Path.tga", + "pathTexDeath": "PathTextures\\Gate1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITx3", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceGate\\IceGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceGate_Portrait\\IceGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "ITx4": { + "DestructableID": "ITx4", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate", + "Name": "WESTRING_DEST_ICE_GATE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 356.26, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\Gate2Path.tga", + "pathTexDeath": "PathTextures\\Gate2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITx4", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceGate45\\IceGate45", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceGate_Portrait\\IceGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate4", + "addon": "Environment" + }, + "ATtc": { + "DestructableID": "ATtc", + "category": "D", + "tilesets": "A", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Canopy Tree", + "Name": "WESTRING_DOOD_APTC", + "EditorSuffix": "_", + "doodClass": "B", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 64.859, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 30, + "MMGreen": 94, + "MMBlue": 70, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 435, + "skinType": "destructable", + "numVar": "3", + "skinnableID": "ATtc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\AshenvaleTree\\AshenCanopyTree", + "file": "Doodads\\Ashenvale\\Plants\\AshenCanopyTree\\AshenCanopyTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "selSize:hd": "340", + "addon": "Environment" + }, + "OTtw": { + "DestructableID": "OTtw", + "category": "D", + "tilesets": "O", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_OUTLAND_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 278.144, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 170, + "MMGreen": 92, + "MMBlue": 90, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "OTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "0.85", + "texID": "37", + "texFile": "ReplaceableTextures\\OutlandMushroomTree\\MushroomTree", + "file": "Doodads\\Terrain\\OutlandMushroomTree\\OutlandMushroomTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.65", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "KTtw": { + "DestructableID": "KTtw", + "category": "D", + "tilesets": "K", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_BLACK_CITADEL_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 278.145, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 135, + "MMGreen": 75, + "MMBlue": 70, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "KTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "0.85", + "texID": "37", + "texFile": "ReplaceableTextures\\OutlandMushroomTree\\MushroomTree", + "file": "Doodads\\Terrain\\OutlandMushroomTree\\OutlandMushroomTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.65", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "ITig": { + "DestructableID": "ITig", + "category": "D", + "tilesets": "I,N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Igloo", + "Name": "WESTRING_DOOD_ISIG", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 250, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 100, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITig", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "RockChunkDeath", + "maxScale": "1", + "portraitmodel": "Doodads\\Icecrown\\Structures\\Igloo\\Igloo", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\Igloo_Portrait\\Igloo_Portrait", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Structures\\Igloo\\Igloo", + "selSize": "200", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "DTrf": { + "DestructableID": "DTrf", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 1, + "comment": "Elevator", + "Name": "WESTRING_DOOD_ZZEZ", + "EditorSuffix": "WESTRING_EDITORSUFFIX_ONE", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 149.179, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Unbuildable.tga", + "pathTexDeath": "PathTextures\\8x8Unbuildable.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTrf", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Cinematic\\ElevatorPuzzle\\ElevatorPuzzle", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTrx": { + "DestructableID": "DTrx", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 1, + "comment": "Elevator", + "Name": "WESTRING_DOOD_ZZEZ", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TWO", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 149.179, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Unbuildable.tga", + "pathTexDeath": "PathTextures\\8x8Unbuildable.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTrx", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\Cinematic\\ElevatorPuzzle\\ElevatorPuzzle", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "XTmp": { + "DestructableID": "XTmp", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "magical pen", + "Name": "WESTRING_DEST_MAGICAL_PEN", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\8x8PenPath.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTmp", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "MagicalCellDeathSound", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DalaranMagicalPen_portrait\\DalaranMagicalPen_portrait", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\DalaranMagicalPen_portrait\\DalaranMagicalPen_portrait", + "selcircsize": "288", + "file": "Doodads\\Terrain\\DalaranMagicalPen\\DalaranMagicalPen", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "XTm5": { + "DestructableID": "XTm5", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "angled magical pen", + "Name": "WESTRING_DEST_ANGLED_MAGICAL_PEN", + "EditorSuffix": "WESTRING_EDITORSUFFIX_ANGLED", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\12x10Pen45Path.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTm5", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "MagicalCellDeathSound", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DalaranMagicalPen_portrait\\DalaranMagicalPen_portrait", + "selcircsize": "288", + "file": "Doodads\\Terrain\\DalaranMagicalPen45\\DalaranMagicalPen45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "XTmx": { + "DestructableID": "XTmx", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "magical pen wall", + "Name": "WESTRING_DEST_MAGICAL_PEN_WALL", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 59.411, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\8x2Default.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTmx", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "MagicalCellDeathSound", + "maxScale": "0.85", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DalaranMagicalPen_portrait\\DalaranMagicalPen_portrait", + "selcircsize": "128", + "file": "Doodads\\Terrain\\DalaranMagicalPenWall\\DalaranMagicalPenWall", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.85", + "shadow": "none", + "maxScale:hd": "1.05", + "minScale:hd": "1.05", + "addon": "Environment" + }, + "XTx5": { + "DestructableID": "XTx5", + "category": "D", + "tilesets": "X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "angled magical pen wall", + "Name": "WESTRING_DEST_ANGLED_MAGICAL_PEN_WALL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_ANGLED", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 59.409, + "targType": "debris", + "HP": 250, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\Fence45.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTx5", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "MagicalCellDeathSound", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\DalaranMagicalPen_portrait\\DalaranMagicalPen_portrait", + "selcircsize": "128", + "file": "Doodads\\Terrain\\DalaranMagicalPenWall45\\DalaranMagicalPenWall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITcr": { + "DestructableID": "ITcr", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Icey Rock", + "Name": "WESTRING_DEST_ICEY_ROCK", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 339.014, + "targType": "debris", + "HP": 500, + "occH": 230, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 100, + "skinType": "destructable", + "numVar": "6", + "skinnableID": "ITcr", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "RockChunkDeath", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\ClearIceRock\\ClearIceRock", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.8", + "shadow": "none", + "addon": "Environment" + }, + "DTep": { + "DestructableID": "DTep", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "elevator pathing block", + "Name": "WESTRING_DEST_ELEVATOR_PATHBLOCKER", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 9999, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\16x4ElevatorBlockPath.tga", + "pathTexDeath": "PathTextures\\16x4ElevatorBlockPathDeath.tga", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTep", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ATwf": { + "DestructableID": "ATwf", + "category": "B", + "tilesets": "A", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Wharf", + "Name": "WESTRING_DEST_WHARF", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "_", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ATwf", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\Wharf\\Wharf", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YTfb": { + "DestructableID": "YTfb", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "pathing blocker both", + "Name": "WESTRING_DEST_PATHBLOCKER_BOTH", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 9999, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Unflyable.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTfb", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YTfc": { + "DestructableID": "YTfc", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "large pathing blocker both", + "Name": "WESTRING_DEST_PATHBLOCKER_LARGE_BOTH", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 9999, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Unflyable.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTfc", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "160", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YTlb": { + "DestructableID": "YTlb", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "line of sight blocker", + "Name": "WESTRING_DEST_LOSBLOCKER", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 9999, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": " ", + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTlb", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "Ytlc": { + "DestructableID": "Ytlc", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "large line of sight blocker", + "Name": "WESTRING_DEST_LOSBLOCKER_LARGE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 9999, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "Ytlc", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "160", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YTpb": { + "DestructableID": "YTpb", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "pathing blocker ground", + "Name": "WESTRING_DEST_PATHBLOCKER", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 4.57553846153846, + "targType": "decoration", + "HP": 9999, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTpb", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YTpc": { + "DestructableID": "YTpc", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "large pathing blocker ground", + "Name": "WESTRING_DEST_PATHBLOCKER_LARGE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 31.1185999999999, + "targType": "decoration", + "HP": 9999, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTpc", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "160", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YTab": { + "DestructableID": "YTab", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "pathing blocker air", + "Name": "WESTRING_DEST_PATHBLOCKER_FLIER", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 9999, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Cyan.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTab", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YTac": { + "DestructableID": "YTac", + "category": "P", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "large pathing blocker air", + "Name": "WESTRING_DEST_PATHBLOCKER_LARGE_FLIER", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 9999, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Cyan.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTac", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1", + "selcircsize": "256", + "file": "Doodads\\Terrain\\LOSBlocker\\LOSBlocker", + "selSize": "160", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ZTsg": { + "DestructableID": "ZTsg", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate to the Tomb of Sargeras", + "Name": "WESTRING_DEST_SARGERAS_GATE", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 475.7525, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\GateLarge1Path.tga", + "pathTexDeath": "PathTextures\\GateLarge1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 0, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTsg", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Cinematic\\SargerasGate\\SargerasGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\SargerasGate_Portrait\\SargerasGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "ZTsx": { + "DestructableID": "ZTsx", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Gate to the Tomb of Sargeras", + "Name": "WESTRING_DEST_SARGERAS_GATE", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 475.7525, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\GateLarge1Path.tga", + "pathTexDeath": "PathTextures\\GateLarge1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ZTsx", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Cinematic\\SargerasGate\\SargerasGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\SargerasGate_Portrait\\SargerasGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "DTfp": { + "DestructableID": "DTfp", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Small Elevator", + "Name": "WESTRING_DEST_SMALL_ELEVATOR", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 47.228, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "PathTextures\\4x4Unbuildable.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTfp", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Cinematic\\FootSwitch\\FootSwitch", + "selSize": "175", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTfx": { + "DestructableID": "DTfx", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Small Elevator", + "Name": "WESTRING_DEST_SMALL_ELEVATOR", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 47.227, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "PathTextures\\4x4Unbuildable.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTfx", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\Cinematic\\FootSwitch\\FootSwitch", + "selSize": "175", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "DTlv": { + "DestructableID": "DTlv", + "category": "D", + "tilesets": "D,G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Lever", + "Name": "WESTRING_DEST_LEVER", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 5, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "PathTextures\\2x2Default.tga", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "DTlv", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "maxScale": "1.1", + "portraitmodel": "Doodads\\Cinematic\\DungeonLever\\DungeonLever", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\DungeonLever_Portrait\\DungeonLever_Portrait", + "selcircsize": "96", + "file": "Doodads\\Cinematic\\DungeonLever\\DungeonLever", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "0.9", + "shadow": "none", + "addon": "Environment" + }, + "YTce": { + "DestructableID": "YTce", + "category": "D", + "tilesets": "Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "City Entrance", + "Name": "WESTRING_DEST_CITY_ENTRANCE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 281.399, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\GateLarge1Path.tga", + "pathTexDeath": "PathTextures\\GateLarge1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTce", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\CityEnteranceGate_Portrait\\CityEnteranceGate_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Cityscape\\Terrain\\CityEnteranceGate\\CityEnteranceGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\CityEnteranceGate_Portrait\\CityEnteranceGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "YTcx": { + "DestructableID": "YTcx", + "category": "D", + "tilesets": "Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "City Entrance", + "Name": "WESTRING_DEST_CITY_ENTRANCE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 262.19925, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\GateLarge1Path.tga", + "pathTexDeath": "PathTextures\\GateLarge1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTcx", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\CityEnteranceGate_Portrait\\CityEnteranceGate_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\Cityscape\\Terrain\\CityEnteranceGate\\CityEnteranceGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\CityEnteranceGate_Portrait\\CityEnteranceGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "LTtc": { + "DestructableID": "LTtc", + "category": "B", + "tilesets": "Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_TYRANDE_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTtc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Cinematic\\TyrandeWoodBridgeLarge\\TyrandeWoodBridgeLarge", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LTtx": { + "DestructableID": "LTtx", + "category": "B", + "tilesets": "Q", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_TYRANDE_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTtx", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\WoodenBridge.blp", + "file": "Doodads\\Cinematic\\TyrandeWoodBridgeLarge\\TyrandeWoodBridgeLarge", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "JTct": { + "DestructableID": "JTct", + "category": "D", + "tilesets": "J", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_CITYSCAPE_RUINED_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 368.521, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 32, + "MMGreen": 90, + "MMBlue": 32, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "2", + "skinnableID": "JTct", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\DalaranRuinsTree\\DalaranRuinsTree", + "file": "Doodads\\Terrain\\CityscapeTree\\CityscapeTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "ShadowCityTree", + "addon": "Environment" + }, + "JTtw": { + "DestructableID": "JTtw", + "category": "D", + "tilesets": "J", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_DALARAN_RUINS_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 250.336, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 32, + "MMGreen": 90, + "MMBlue": 32, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "JTtw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\DalaranRuinsTree\\DalaranRuinsTree", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "ITtg": { + "DestructableID": "ITtg", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Frozen Throne Gate", + "Name": "WESTRING_DEST_FROZEN_THRONE_GATE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\GateLarge1Path.tga", + "pathTexDeath": "PathTextures\\GateLarge1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITtg", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\Gate_Portrait\\Gate_Portrait", + "selcircsize": "512", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownThroneGate\\IceCrownThroneGate", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownThroneGate_Portrait\\IceCrownThroneGate_Portrait", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "1", + "shadow": "ShadowGate3", + "addon": "Environment" + }, + "GTsh": { + "DestructableID": "GTsh", + "category": "D", + "tilesets": "G", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_UNDERGROUND_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 24.14, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 60, + "MMGreen": 124, + "MMBlue": 150, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "8", + "skinnableID": "GTsh", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "35", + "texFile:sd": "ReplaceableTextures\\UndergroundTree\\UnderMushroomTree", + "texFile:hd": "ReplaceableTextures\\Mushroom\\G_MushroomTree", + "file": "Doodads\\Terrain\\Shrooms\\Shrooms", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "BTrs": { + "DestructableID": "BTrs", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Res Stone", + "Name": "WESTRING_DEST_RES_STONE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 288.51, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTrs", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "RockChunkDeath", + "maxScale": "1", + "portraitmodel": "Doodads\\Cinematic\\RessurectionStoneSW\\RessurectionStoneSW", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\RessurectionStoneSW_Portrait\\RessurectionStoneSW_Portrait", + "selcircsize": "256", + "file": "Doodads\\Cinematic\\RessurectionStoneSW\\RessurectionStoneSW", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "BTrx": { + "DestructableID": "BTrx", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Res Stone", + "Name": "WESTRING_DEST_RES_STONE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 288.51, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTrx", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "RockChunkDeath", + "maxScale": "1", + "portraitmodel": "Doodads\\Cinematic\\RessurectionStoneSE\\RessurectionStoneSE", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\RessurectionStoneSE_Portrait\\RessurectionStoneSE_Portrait", + "selcircsize": "256", + "file": "Doodads\\Cinematic\\RessurectionStoneSE\\RessurectionStoneSE", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "1", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "OTsp": { + "DestructableID": "OTsp", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Shimmering Portal", + "Name": "WESTRING_DOOD_OZSP", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "_", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OTsp", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "ShimmeringPortalDeath2", + "maxScale": "1", + "portraitmodel": "Doodads\\Cinematic\\ShimmeringPortal\\ShimmeringPortal", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\ShimmeringPortal_Portrait\\ShimmeringPortal_Portrait", + "selcircsize": "256", + "file": "Doodads\\Cinematic\\ShimmeringPortal\\ShimmeringPortal", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OTip": { + "DestructableID": "OTip", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Invisible Platform", + "Name": "WESTRING_DEST_INVISIBLE_PLATFORM", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 2.948, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OTip", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "80", + "file": "Doodads\\Terrain\\InvisiblePlatform\\InvisiblePlatform", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OTis": { + "DestructableID": "OTis", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Invisible Platform Small", + "Name": "WESTRING_DEST_INVISIBLE_PLATFORM_SMALL", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 1.948, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Unbuildable.tga", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OTis", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "80", + "file": "Doodads\\Terrain\\InvisiblePlatformSmall\\InvisiblePlatformSmall", + "selSize": "60", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "BTtc": { + "DestructableID": "BTtc", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Canopy Tree", + "Name": "WESTRING_DOOD_BTTC", + "EditorSuffix": "_", + "doodClass": "B", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 64.858, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 155, + "MMGreen": 110, + "MMBlue": 30, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 435, + "skinType": "destructable", + "numVar": "3", + "numVar:hd": "0", + "skinnableID": "BTtc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\BarrensTree\\BarrensTree", + "file": "Doodads\\Ashenvale\\Plants\\AshenCanopyTree\\AshenCanopyTree", + "file:hd": "Doodads\\Barrens\\Plants\\BarrensCanopyTree\\BarrensCanopyTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "selSize:hd": "460", + "addon": "Environment" + }, + "CTtc": { + "DestructableID": "CTtc", + "category": "D", + "tilesets": "C", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Canopy Tree", + "Name": "WESTRING_DOOD_CTTC", + "EditorSuffix": "_", + "doodClass": "B", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 64.858, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 75, + "MMGreen": 78, + "MMBlue": 26, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 435, + "skinType": "destructable", + "numVar": "3", + "skinnableID": "CTtc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\AshenvaleTree\\FelwoodTree", + "file": "Doodads\\Ashenvale\\Plants\\AshenCanopyTree\\AshenCanopyTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "selSize:hd": "385", + "addon": "Environment" + }, + "NTtc": { + "DestructableID": "NTtc", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Canopy Tree", + "Name": "WESTRING_DOOD_NTTC", + "EditorSuffix": "_", + "doodClass": "B", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 64.859, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 54, + "MMGreen": 54, + "MMBlue": 54, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 435, + "skinType": "destructable", + "numVar": "3", + "numVar:hd": "0", + "skinnableID": "NTtc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\NorthrendTree\\NorthTree", + "file": "Doodads\\Ashenvale\\Plants\\AshenCanopyTree\\AshenCanopyTree", + "file:hd": "Doodads\\Northrend\\Plants\\NorthrendCanopyTree\\NorthrendCanopyTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "selSize:hd": "310", + "addon": "Environment" + }, + "ZTtc": { + "DestructableID": "ZTtc", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Canopy Tree", + "Name": "WESTRING_DOOD_ZTTC", + "EditorSuffix": "_", + "doodClass": "B", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 64.859, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 135, + "MMGreen": 116, + "MMBlue": 32, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 435, + "skinType": "destructable", + "numVar": "3", + "numVar:hd": "0", + "skinnableID": "ZTtc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\RuinsTree\\RuinsTree", + "file": "Doodads\\Ashenvale\\Plants\\AshenCanopyTree\\AshenCanopyTree", + "file:hd": "Doodads\\Ruins\\Plants\\RuinsCanopyTree\\RuinsCanopyTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "selSize:hd": "430", + "addon": "Environment" + }, + "ITtc": { + "DestructableID": "ITtc", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Canopy Tree", + "Name": "WESTRING_DOOD_ITTC", + "EditorSuffix": "_", + "doodClass": "B", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 64.859, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 157, + "MMGreen": 163, + "MMBlue": 172, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 435, + "skinType": "destructable", + "numVar": "3", + "numVar:hd": "0", + "skinnableID": "ITtc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "32", + "texFile": "ReplaceableTextures\\AshenvaleTree\\Ice_Tree", + "file": "Doodads\\Ashenvale\\Plants\\AshenCanopyTree\\AshenCanopyTree", + "file:hd": "Doodads\\Icecrown\\Plants\\IcecrownCanopyTree\\IcecrownCanopyTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "selSize:hd": "260", + "addon": "Environment" + }, + "IOt0": { + "DestructableID": "IOt0", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "_", + "Name": "WESTRING_DOOD_IOT0", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 56.885, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\throne.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "IOt0", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownThrone\\IceCrownThrone", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "IOt1": { + "DestructableID": "IOt1", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "_", + "Name": "WESTRING_DOOD_IOT1", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 56.798, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\throne135.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "IOt1", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownThrone45\\IceCrownThrone45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "IOt2": { + "DestructableID": "IOt2", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "_", + "Name": "WESTRING_DOOD_IOT2", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 56.476, + "targType": "decoration", + "HP": 500, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\throne45.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "IOt2", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.2", + "selcircsize": "256", + "file": "Doodads\\Icecrown\\Terrain\\IceCrownThrone135\\IceCrownThrone135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "LTrc": { + "DestructableID": "LTrc", + "category": "D", + "tilesets": "L,W,F,V,Q,X,Y,J", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "rock chunks", + "Name": "WESTRING_DEST_ROCK_CHUNKS", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 76.097, + "targType": "debris", + "HP": 250, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 100, + "skinType": "destructable", + "numVar": "6", + "skinnableID": "LTrc", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "RockChunkDeath", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RockChunks_Portrait\\RockChunks_Portrait", + "selcircsize": "144", + "file": "Doodads\\LordaeronSummer\\Terrain\\LoardaeronRockChunks\\LoardaeronRockChunks", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "LTrt": { + "DestructableID": "LTrt", + "category": "D", + "tilesets": "L,W,F,V,Q,X,Y,J", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "rock chunks", + "Name": "WESTRING_DEST_ROCK_CHUNKS", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 130, + "targType": "debris", + "HP": 250, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "6", + "skinnableID": "LTrt", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "deathSnd": "RockChunkDeath", + "maxScale": "1", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RockChunks_Portrait\\RockChunks_Portrait", + "selcircsize": "144", + "file": "Doodads\\LordaeronSummer\\Terrain\\LoardaeronRockChunks\\LoardaeronRockChunks", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "maxRoll": "20", + "maxPitch": "20", + "shadow": "none", + "addon": "Environment" + }, + "YT48": { + "DestructableID": "YT48", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_VERTICAL_EXTRA", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT48", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge0\\RockBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT49": { + "DestructableID": "YT49", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_DIAGONAL_1_EXTRA", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT49", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge45\\RockBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT50": { + "DestructableID": "YT50", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_HORIZONTAL_EXTRA", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT50", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge0\\RockBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YT51": { + "DestructableID": "YT51", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 1", + "Name": "WESTRING_DEST_WIDE_NATURAL_CLIFF_1_DIAGONAL_2_EXTRA", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT51", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\NaturalBridge1.blp", + "file": "Doodads\\Terrain\\RockBridgeExtraLarge45\\RockBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1.1", + "shadow": "none", + "addon": "Environment" + }, + "OTds": { + "DestructableID": "OTds", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Demon Storm", + "Name": "WESTRING_DOOD_OZDS", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "_", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OTds", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "portraitmodel": "Doodads\\Cinematic\\DemonStorm\\DemonStorm", + "selcircsize": "80", + "file": "Doodads\\Cinematic\\DemonStorm\\DemonStorm", + "selSize": "80", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "ITag": { + "DestructableID": "ITag", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Rockin' Arthas", + "Name": "WESTRING_DEST_ROCKIN_ARTHAS", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 50, + "occH": 0, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "_", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITag", + "colorB": "255", + "colorG": "255", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "selcircsize": "80", + "file": "Doodads\\Cinematic\\RockinArthas\\RockinArthas", + "selSize": "256", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "BTsc": { + "DestructableID": "BTsc", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Support Column", + "Name": "WESTRING_DEST_SUPPORT_COLUMN", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 297.565, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\2x2Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTsc", + "colorB": "255", + "colorG": "255", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1", + "portraitmodel": "doodads\\underground\\terrain\\SupportBeam\\SupportBeam", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\SupportBeam_Portrait\\SupportBeam_Portrait", + "selcircsize": "256", + "file": "doodads\\underground\\terrain\\SupportBeam\\SupportBeam", + "selSize": "256", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "BuildingShadowSmall", + "maxScale:hd": "0.9", + "minScale:hd": "0.9", + "addon": "Environment" + }, + "LTs1": { + "DestructableID": "LTs1", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 135", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_LEFT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMLEFT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight90.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs1", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall135\\BridgeRampSmall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTs2": { + "DestructableID": "LTs2", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 225", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_LEFT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPLEFT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight180.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight180Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs2", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall45\\BridgeRampSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTs3": { + "DestructableID": "LTs3", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 315", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_RIGHT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPRIGHT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight270.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight270Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs3", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall315\\BridgeRampSmall315", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTs4": { + "DestructableID": "LTs4", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 45", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_RIGHT", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMRIGHT", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight0.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs4", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall225\\BridgeRampSmall225", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTs5": { + "DestructableID": "LTs5", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 135", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_LEFT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMLEFT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight90.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs5", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall135\\BridgeRampSmall135", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTs6": { + "DestructableID": "LTs6", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 225", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_LEFT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPLEFT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight180.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight180Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs6", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall45\\BridgeRampSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTs7": { + "DestructableID": "LTs7", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 315", + "Name": "WESTRING_DEST_STONE_RAMP_TOP_RIGHT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_TOPRIGHT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight270.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight270Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs7", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall315\\BridgeRampSmall315", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "LTs8": { + "DestructableID": "LTs8", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge Ramp 45", + "Name": "WESTRING_DEST_STONE_RAMP_BOTTOM_RIGHT_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_BOTTOMRIGHT2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "PathTextures\\CliffRampStraight0.tga", + "pathTexDeath": "PathTextures\\CliffRampStraight0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 0, + "version": 1, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "LTs8", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1.33", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall225\\BridgeRampSmall225", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "225", + "minScale": "1.33", + "shadow": "none", + "addon": "Environment" + }, + "Volc": { + "DestructableID": "Volc", + "category": "D", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Volcano", + "Name": "WESTRING_DEST_VOLCANO", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "decoration", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTex": "_", + "pathTexDeath": "_", + "showInMM": 0, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 1, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "Volc", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "file": "Abilities\\Spells\\Other\\Volcano\\Volcano", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "Yts1": { + "DestructableID": "Yts1", + "category": "D", + "tilesets": "Y", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_SILVER_MOON_TREE", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 368.522, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 125, + "MMGreen": 108, + "MMBlue": 18, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 256, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "Yts1", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "file:hd": "Doodads\\Terrain\\SilvermoonTree\\SilvermoonTree", + "armor": "Wood", + "lightweight": "1", + "lightweight:hd": "0", + "texID": "31", + "texFile:sd": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "texFile:hd": "ReplaceableTextures\\SilvermoonTree\\SilverMoonTree", + "fixedRot": "270", + "selSize": "0", + "minScale": "0.8", + "maxScale": "1.2", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "ShadowCityTree", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "selcircsize": "128", + "addon": "Environment" + }, + "YTc1": { + "DestructableID": "YTc1", + "category": "D", + "tilesets": "I", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "City Entrance", + "Name": "WESTRING_DEST_ICECROWN_CITADEL_ENTRANCE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTc1", + "file": "Doodads\\Cityscape\\Terrain\\CityEnteranceGate\\CityEnteranceGate", + "file:hd": "Doodads\\Icecrown\\Terrain\\IcecrownCitadelEntrance\\IcecrownCitadelEntrance", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "11", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "_", + "fixedRot": "270", + "selSize": "0", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowGate1", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "YTc2": { + "DestructableID": "YTc2", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "City Entrance", + "Name": "WESTRING_DEST_LORDAERON_CITY_MAIN_GATE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTc2", + "file": "Doodads\\Cityscape\\Terrain\\CityEnteranceGate\\CityEnteranceGate", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityMainGate\\LordaeronCityMainGate", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "11", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "_", + "fixedRot": "270", + "selSize": "0", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowGate1", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "BTsk": { + "DestructableID": "BTsk", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Support Column", + "Name": "WESTRING_DEST_LORDAERON_CITY_MAIN_GATE_COLUMN", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 281.399, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "PathTextures\\8x8Default.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTsk", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "-1", + "selSize": "256", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "BuildingShadowSmall", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "YTc4": { + "DestructableID": "YTc4", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "City Entrance", + "Name": "WESTRING_DEST_LORDAERON_CITY_MAIN_GATE_DESTROYED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTc4", + "file": "Doodads\\Cityscape\\Terrain\\CityEnteranceGate\\CityEnteranceGate", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityMainGate_Destroyed\\LordaeronCityMainGate_Destroyed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "11", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "_", + "fixedRot": "270", + "selSize": "0", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowGate1", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "BTs1": { + "DestructableID": "BTs1", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Support Column", + "Name": "WESTRING_DEST_LORDAERON_CITY_MAIN_GATE_COLUMN_DESTROYED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 281.399, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "PathTextures\\8x8Default.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTs1", + "file": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityMainGateColumn_Destroyed\\LordaeronCityMainGateColumn_Destroyed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "-1", + "selSize": "256", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "BuildingShadowSmall", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "BTs2": { + "DestructableID": "BTs2", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Statue", + "Name": "WESTRING_DEST_LION_STATUE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 365.251, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "PathTextures\\8x8Default.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTs2", + "file": "Doodads\\BlackCitadel\\Props\\BlackCitadelStatue\\BlackCitadelStatue", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LionStatue\\LionStatue", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "-1", + "selSize": "256", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "BuildingShadowSmall", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "BTs3": { + "DestructableID": "BTs3", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Statue", + "Name": "WESTRING_DEST_LION_STATUE_DESTROYED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 365.251, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "PathTextures\\8x8Default.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTs3", + "file": "Doodads\\BlackCitadel\\Props\\BlackCitadelStatue\\BlackCitadelStatue", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LionStatue_Destroyed\\LionStatue_Destroyed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "-1", + "selSize": "256", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "BuildingShadowSmall", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "BTs4": { + "DestructableID": "BTs4", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Statue", + "Name": "WESTRING_DEST_LORDAERON_CITY_SPIRE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 365.251, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "PathTextures\\8x8Default.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTs4", + "file": "Doodads\\LordaeronFall\\Terrain\\LordaeronCitySpire\\LordaeronCitySpire", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "-1", + "selSize": "256", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "BuildingShadowSmall", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "BTs5": { + "DestructableID": "BTs5", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Statue", + "Name": "WESTRING_DEST_LORDAERON_CITY_SPIRE_DESTROYED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 365.251, + "targType": "wall", + "HP": 50, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\8x8Default.tga", + "pathTexDeath": "PathTextures\\8x8Default.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "BTs5", + "file": "Doodads\\LordaeronFall\\Terrain\\LordaeronCitySpire_Destroyed\\LordaeronCitySpire_Destroyed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "-1", + "selSize": "256", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "BuildingShadowSmall", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv1": { + "DestructableID": "XTv1", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_LORDAERON_CITY_DOME", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv1", + "file": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityDome\\LordaeronCityDome", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityDome\\LordaeronCityDome", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv2": { + "DestructableID": "XTv2", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_LORDAERON_CITY_DOME_DESTROYED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv2", + "file": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityDome_Destroyed\\LordaeronCityDome_Destroyed", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityDome_Destroyed\\LordaeronCityDome_Destroyed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv3": { + "DestructableID": "XTv3", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_LORDAERON_CITY_MAIN_BUILDING", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv3", + "file": "Doodads\\Dalaran\\Terrain\\DalaranVioletCitadel\\DalaranVioletCitadel", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityMainBuilding\\LordaeronCityMainBuilding", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv4": { + "DestructableID": "XTv4", + "category": "D", + "tilesets": "F", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_LORDAERON_CITY_MAIN_BUILDING_DESTROYED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv4", + "file": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityMainBuilding_Destroyed\\LordaeronCityMainBuilding_Destroyed", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\LordaeronCityMainBuilding_Destroyed\\LordaeronCityMainBuilding_Destroyed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv5": { + "DestructableID": "XTv5", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_ORGRIMMAR_WALL_SEGMENT_UNDERCONSTRUCTION", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTex": "PathTextures\\12x12Unflyable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv5", + "file": "Doodads\\Barrens\\Terrain\\OrgrimmarWallSegment_UnderConstruction\\OrgrimmarWallSegment_UnderConstruction", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv6": { + "DestructableID": "XTv6", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_ORGRIMMAR_WALL_SEGMENT_COMPLETED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTex": "PathTextures\\12x12Unflyable.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv6", + "file": "Doodads\\Barrens\\Terrain\\OrgrimmarWallSegment_Completed\\OrgrimmarWallSegment_Completed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv7": { + "DestructableID": "XTv7", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_ORGRIMMAR_TOWER_UNDERCONSTRUCTION", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv7", + "file": "Doodads\\Dalaran\\Terrain\\DalaranVioletCitadel\\DalaranVioletCitadel", + "file:hd": "Doodads\\Barrens\\Terrain\\OrgrimmarTower_UnderConstruction\\OrgrimmarTower_UnderConstruction", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "XTv8": { + "DestructableID": "XTv8", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Large Building", + "Name": "WESTRING_DEST_ORGRIMMAR_TOWER_COMPLETED", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 0, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "XTv8", + "file": "Doodads\\Dalaran\\Terrain\\DalaranVioletCitadel\\DalaranVioletCitadel", + "file:hd": "Doodads\\Barrens\\Terrain\\OrgrimmarTower_Completed\\OrgrimmarTower_Completed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "_", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "512", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowDalaranBuilding", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "YTcn": { + "DestructableID": "YTcn", + "category": "D", + "tilesets": "B", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "City Entrance", + "Name": "WESTRING_DEST_ORGRIMMAR_GATE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YTcn", + "file": "Doodads\\Barrens\\Terrain\\OrgrimmarGate_Completed\\OrgrimmarGate_Completed", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "11", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "_", + "fixedRot": "270", + "selSize": "0", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "ShadowGate1", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "YT66": { + "DestructableID": "YT66", + "category": "B", + "tilesets": "Y", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 1", + "Name": "WESTRING_DEST_SPECIAL_ICE_BRIDGE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT66", + "file": "Doodads\\Silvermoon\\Structures\\SpecialIceBridge\\SpecialIceBridge", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "11", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\Bridges\\IceBridge.blp", + "texFile:hd": "_", + "fixedRot": "0", + "selSize": "0", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "none", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "YT67": { + "DestructableID": "YT67", + "category": "B", + "tilesets": "Y", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 1", + "Name": "WESTRING_DEST_ELVEN_BRIDGE", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 1, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YT67", + "file": "Doodads\\Silvermoon\\Structures\\ElvenBridge\\ElvenBridge", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\SilvermoonBridge.blp", + "fixedRot": "0", + "selSize": "0", + "minScale": "1", + "maxScale": "1", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "_", + "shadow": "none", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "YY12": { + "DestructableID": "YY12", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 1", + "Name": "WESTRING_DEST_SHORT_STRATHOLME_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY12", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeSmall0\\StratholmeBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY13": { + "DestructableID": "YY13", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 1", + "Name": "WESTRING_DEST_SHORT_STRATHOLME_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY13", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeSmall45\\StratholmeBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY14": { + "DestructableID": "YY14", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 1", + "Name": "WESTRING_DEST_SHORT_STRATHOLME_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall90.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY14", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeSmall90\\StratholmeBridgeSmall90", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY15": { + "DestructableID": "YY15", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 1", + "Name": "WESTRING_DEST_SHORT_STRATHOLME_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall135.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY15", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeSmall135\\StratholmeBridgeSmall135", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY16": { + "DestructableID": "YY16", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 1", + "Name": "WESTRING_DEST_LONG_STRATHOLME_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY16", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeLarge0\\StratholmeBridgeLarge0", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY17": { + "DestructableID": "YY17", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 1", + "Name": "WESTRING_DEST_LONG_STRATHOLME_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY17", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeLarge45\\StratholmeBridgeLarge45", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY18": { + "DestructableID": "YY18", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 1", + "Name": "WESTRING_DEST_LONG_STRATHOLME_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge90.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY18", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeLarge90\\StratholmeBridgeLarge90", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY19": { + "DestructableID": "YY19", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 1", + "Name": "WESTRING_DEST_LONG_STRATHOLME_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge135.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY19", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeLarge135\\StratholmeBridgeLarge135", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY20": { + "DestructableID": "YY20", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 1", + "Name": "WESTRING_DEST_WIDE_STRATHOLME_CLIFF_1_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY20", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeExtraLarge0\\StratholmeBridgeExtraLarge0", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY21": { + "DestructableID": "YY21", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 1", + "Name": "WESTRING_DEST_WIDE_STRATHOLME_CLIFF_1_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY21", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeExtraLarge45\\StratholmeBridgeExtraLarge45", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY22": { + "DestructableID": "YY22", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 1", + "Name": "WESTRING_DEST_WIDE_STRATHOLME_CLIFF_1_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge90.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge90Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY22", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeExtraLarge90\\StratholmeBridgeExtraLarge90", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "YY23": { + "DestructableID": "YY23", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 1", + "Name": "WESTRING_DEST_WIDE_STRATHOLME_CLIFF_1_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge135.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge135Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "YY23", + "colorb": "255", + "colorg": "255", + "selcircsize": "256", + "armor": "Stone", + "colorr": "255", + "maxscale": "1", + "texid": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff1.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\StratholmeBridge.blp", + "file": "Doodads\\Terrain\\StratholmeBridgeExtraLarge135\\StratholmeBridgeExtraLarge135", + "selsize": "0", + "canplacerandscale": "1", + "lightweight": "0", + "fixedrot": "0", + "minscale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG00": { + "DestructableID": "OG00", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 0", + "Name": "WESTRING_DEST_SHORT_OVERGROWN_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG00", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeSmall0\\OvergrownBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG01": { + "DestructableID": "OG01", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 0", + "Name": "WESTRING_DEST_SHORT_OVERGROWN_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG01", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeSmall45\\OvergrownBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG02": { + "DestructableID": "OG02", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 0", + "Name": "WESTRING_DEST_SHORT_OVERGROWN_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG02", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeSmall0\\OvergrownBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG03": { + "DestructableID": "OG03", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 0", + "Name": "WESTRING_DEST_SHORT_OVERGROWN_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG03", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeSmall45\\OvergrownBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG04": { + "DestructableID": "OG04", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_LONG_OVERGROWN_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG04", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeLarge0\\OvergrownBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG05": { + "DestructableID": "OG05", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 0", + "Name": "WESTRING_DEST_LONG_OVERGROWN_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG05", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeLarge45\\OvergrownBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG06": { + "DestructableID": "OG06", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_LONG_OVERGROWN_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG06", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeLarge0\\OvergrownBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG07": { + "DestructableID": "OG07", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 0", + "Name": "WESTRING_DEST_LONG_OVERGROWN_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG07", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeLarge45\\OvergrownBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG08": { + "DestructableID": "OG08", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 0", + "Name": "WESTRING_DEST_WIDE_OVERGROWN_CLIFF_0_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG08", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeExtraLarge0\\OvergrownBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG09": { + "DestructableID": "OG09", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 0", + "Name": "WESTRING_DEST_WIDE_OVERGROWN_CLIFF_0_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG09", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeExtraLarge45\\OvergrownBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG10": { + "DestructableID": "OG10", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 0", + "Name": "WESTRING_DEST_WIDE_OVERGROWN_CLIFF_0_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG10", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeExtraLarge0\\OvergrownBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "OG11": { + "DestructableID": "OG11", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 0", + "Name": "WESTRING_DEST_WIDE_OVERGROWN_CLIFF_0_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "OG11", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\OvergrownBridge.blp", + "file": "Doodads\\Terrain\\OvergrownBridgeExtraLarge45\\OvergrownBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW00": { + "DestructableID": "RW00", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 0", + "Name": "WESTRING_DEST_SHORT_RICKET_WOODEN_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW00", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeSmall0\\RicketyWoodBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW01": { + "DestructableID": "RW01", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 0", + "Name": "WESTRING_DEST_SHORT_RICKET_WOODEN_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW01", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeSmall45\\RicketyWoodenBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW02": { + "DestructableID": "RW02", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 0", + "Name": "WESTRING_DEST_SHORT_RICKET_WOODEN_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW02", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeSmall0\\RicketyWoodenBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW03": { + "DestructableID": "RW03", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 0", + "Name": "WESTRING_DEST_SHORT_RICKET_WOODEN_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW03", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeSmall45\\RicketyWoodenBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW04": { + "DestructableID": "RW04", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_LONG_RICKET_WOODEN_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW04", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeLarge0\\RicketyWoodenBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW05": { + "DestructableID": "RW05", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 0", + "Name": "WESTRING_DEST_LONG_RICKET_WOODEN_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW05", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeLarge45\\RicketyWoodenBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW06": { + "DestructableID": "RW06", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_LONG_RICKET_WOODEN_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW06", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeLarge0\\RicketyWoodenBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW07": { + "DestructableID": "RW07", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 0", + "Name": "WESTRING_DEST_LONG_RICKET_WOODEN_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW07", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeLarge45\\RicketyWoodenBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW08": { + "DestructableID": "RW08", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 0", + "Name": "WESTRING_DEST_WIDE_RICKET_WOODEN_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW08", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeExtraLarge0\\RicketyWoodenBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW09": { + "DestructableID": "RW09", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 0", + "Name": "WESTRING_DEST_WIDE_RICKET_WOODEN_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW09", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeExtraLarge45\\RicketyWoodenBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW10": { + "DestructableID": "RW10", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 0", + "Name": "WESTRING_DEST_WIDE_RICKET_WOODEN_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW10", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeExtraLarge0\\RicketyWoodenBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "RW11": { + "DestructableID": "RW11", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 0", + "Name": "WESTRING_DEST_WIDE_RICKET_WOODEN_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "RW11", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\RicketyWoodBridge.blp", + "file": "Doodads\\Terrain\\RicketyWoodenBridgeExtraLarge45\\RicketyWoodenBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB00": { + "DestructableID": "EB00", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 0", + "Name": "WESTRING_DEST_SHORT_ELVEN_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB00", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeSmall0\\ElvenBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB01": { + "DestructableID": "EB01", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 0", + "Name": "WESTRING_DEST_SHORT_ELVEN_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB01", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeSmall45\\ElvenBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB02": { + "DestructableID": "EB02", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 0", + "Name": "WESTRING_DEST_SHORT_ELVEN_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB02", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeSmall0\\ElvenBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB03": { + "DestructableID": "EB03", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 0", + "Name": "WESTRING_DEST_SHORT_ELVEN_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB03", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeSmall45\\ElvenBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB04": { + "DestructableID": "EB04", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_LONG_ELVEN_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB04", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeLarge0\\ElvenBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB05": { + "DestructableID": "EB05", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 0", + "Name": "WESTRING_DEST_LONG_ELVEN_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB05", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeLarge45\\ElvenBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB06": { + "DestructableID": "EB06", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_LONG_ELVEN_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB06", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeLarge0\\ElvenBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB07": { + "DestructableID": "EB07", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 0", + "Name": "WESTRING_DEST_LONG_ELVEN_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB07", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeLarge45\\ElvenBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB08": { + "DestructableID": "EB08", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 0", + "Name": "WESTRING_DEST_WIDE_ELVEN_BRIDGE_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB08", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeExtraLarge0\\ElvenBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB09": { + "DestructableID": "EB09", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 0", + "Name": "WESTRING_DEST_WIDE_ELVEN_BRIDGE_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB09", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeExtraLarge45\\ElvenBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB10": { + "DestructableID": "EB10", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 0", + "Name": "WESTRING_DEST_WIDE_ELVEN_BRIDGE_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB10", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeExtraLarge0\\ElvenBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "EB11": { + "DestructableID": "EB11", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 0", + "Name": "WESTRING_DEST_WIDE_ELVEN_BRIDGE_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "EB11", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "texFile:hd": "ReplaceableTextures\\Bridges\\ElvenBridge.blp", + "file": "Doodads\\Terrain\\ElvenBridgeExtraLarge45\\ElvenBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB00": { + "DestructableID": "NB00", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 0 0", + "Name": "WESTRING_DEST_SHORT_NIGHT_ELVEN_WOODEN_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB00", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeSmall0\\NightElvenWoodBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB01": { + "DestructableID": "NB01", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 45 0", + "Name": "WESTRING_DEST_SHORT_NIGHT_ELVEN_WOODEN_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB01", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeSmall45\\NightElvenWoodBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB02": { + "DestructableID": "NB02", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 90 0", + "Name": "WESTRING_DEST_SHORT_NIGHT_ELVEN_WOODEN_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall0.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB02", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeSmall0\\NightElvenWoodBridgeSmall0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB03": { + "DestructableID": "NB03", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Small Bridge 135 0", + "Name": "WESTRING_DEST_SHORT_NIGHT_ELVEN_WOODEN_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 100, + "fogRadius": 100, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeSmall45.tga", + "pathTexDeath": "PathTextures\\CityBridgeSmall45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB03", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeSmall45\\NightElvenWoodBridgeSmall45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB04": { + "DestructableID": "NB04", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 0 0", + "Name": "WESTRING_DEST_LONG_NIGHT_ELVEN_WOODEN_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB04", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeLarge0\\NightElvenWoodBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB05": { + "DestructableID": "NB05", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 45 0", + "Name": "WESTRING_DEST_LONG_NIGHT_ELVEN_WOODEN_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB05", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeLarge45\\NightElvenWoodBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB06": { + "DestructableID": "NB06", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 90 0", + "Name": "WESTRING_DEST_LONG_NIGHT_ELVEN_WOODEN_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB06", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeLarge0\\NightElvenWoodBridgeLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB07": { + "DestructableID": "NB07", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Large Bridge 135 0", + "Name": "WESTRING_DEST_LONG_NIGHT_ELVEN_WOODEN_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB07", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeLarge45\\NightElvenWoodBridgeLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB08": { + "DestructableID": "NB08", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 0 0", + "Name": "WESTRING_DEST_WIDE_NIGHT_ELVEN_WOODEN_VERTICAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB08", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeExtraLarge0\\NightElvenWoodBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB09": { + "DestructableID": "NB09", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 45 0", + "Name": "WESTRING_DEST_WIDE_NIGHT_ELVEN_WOODEN_DIAGONAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB09", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeExtraLarge45\\NightElvenWoodBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB10": { + "DestructableID": "NB10", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 90 0", + "Name": "WESTRING_DEST_WIDE_NIGHT_ELVEN_WOODEN_HORIZONTAL", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge0.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge0Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB10", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeExtraLarge0\\NightElvenWoodBridgeExtraLarge0", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NB11": { + "DestructableID": "NB11", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 1, + "fatLOS": 0, + "comment": "Extra Large Bridge 135 0", + "Name": "WESTRING_DEST_WIDE_NIGHT_ELVEN_WOODEN_DIAGONAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_DIAGONAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 2, + "modelHeight": 0, + "targType": "bridge", + "HP": 2500, + "occH": 0, + "radius": 200, + "fogRadius": 200, + "fogVis": 1, + "pathTex": "PathTextures\\CityBridgeExtraLarge45.tga", + "pathTexDeath": "PathTextures\\CityBridgeExtraLarge45Death.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "NB11", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Bridges\\NightElvenWoodenBridge.blp", + "file": "Doodads\\Terrain\\NightElvenWoodBridgeExtraLarge45\\NightElvenWoodBridgeExtraLarge45", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "Ytsc": { + "DestructableID": "Ytsc", + "category": "D", + "tilesets": "Y,X", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_SCORCHED_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 211, + "targType": "tree", + "HP": 50, + "occH": 300, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 30, + "MMGreen": 32, + "MMBlue": 30, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170 + }, + "ITd1": { + "DestructableID": "ITd1", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_ICECROWN_ROUND_DOOR_HORIZONTAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITd1", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownRoundDoor_Portrait\\IceCrownRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "file:hd": "Doodads\\Icecrown\\Terrain\\IceCrownRoundDoor\\IceCrownRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "270", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ITd2": { + "DestructableID": "ITd2", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_VERTICAL_1", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL1", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor1Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor1PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITd2", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownRoundDoor_Portrait\\IceCrownRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "file:hd": "Doodads\\Icecrown\\Terrain\\IceCrownRoundDoor\\IceCrownRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "0", + "minScale": "0.9", + "shadow": "ShadowGate1", + "addon": "Environment" + }, + "ITd3": { + "DestructableID": "ITd3", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_HORIZONTAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_HORIZONTAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITd3", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownRoundDoor_Portrait\\IceCrownRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "file:hd": "Doodads\\Icecrown\\Terrain\\IceCrownRoundDoor\\IceCrownRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "90", + "minScale": "0.9", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "ITd4": { + "DestructableID": "ITd4", + "category": "D", + "tilesets": "Z", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "RoundDoor", + "Name": "WESTRING_DEST_RUINS_ROUND_DOOR_VERTICAL_2", + "EditorSuffix": "WESTRING_EDITORSUFFIX_VERTICAL2", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "debris", + "HP": 500, + "occH": 400, + "radius": 50, + "fogRadius": 50, + "fogVis": 1, + "pathTex": "PathTextures\\RoundDoor2Path.tga", + "pathTexDeath": "PathTextures\\RoundDoor2PathDeath.tga", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 0, + "version": 1, + "selectable": 1, + "flyH": 0, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "ITd4", + "colorB": "255", + "colorG": "255", + "selcircsize": "512", + "armor": "Wood", + "colorR": "255", + "maxScale": "0.9", + "portraitmodel": "Doodads\\Terrain\\Portraits\\RuinsRoundDoor_Portrait\\RuinsRoundDoor_Portrait", + "portraitmodel:hd": "Doodads\\Terrain\\Portraits\\IceCrownRoundDoor_Portrait\\IceCrownRoundDoor_Portrait", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\Ruins\\Terrain\\RuinsRoundDoor\\RuinsRoundDoor", + "file:hd": "Doodads\\Icecrown\\Terrain\\IceCrownRoundDoor\\IceCrownRoundDoor", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "180", + "minScale": "0.9", + "shadow": "ShadowGate2", + "addon": "Environment" + }, + "WGTR": { + "DestructableID": "WGTR", + "category": "B", + "tilesets": "*", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "WayGate Ramp", + "Name": "WESTRING_DEST_WAYGATE_RAMP", + "EditorSuffix": "_", + "doodClass": "_", + "useClickHelper": 0, + "onCliffs": 1, + "onWater": 1, + "canPlaceDead": 0, + "walkable": 1, + "cliffHeight": 0, + "modelHeight": 0, + "targType": "bridge", + "HP": 500, + "occH": 0, + "radius": 50, + "fogRadius": 50, + "fogVis": 0, + "pathTex": "_", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 0, + "MMRed": 0, + "MMGreen": 0, + "MMBlue": 0, + "buildTime": 120, + "repairTime": 120, + "goldRep": 200, + "lumberRep": 100, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 30, + "skinType": "destructable", + "numVar": "1", + "skinnableID": "WGTR", + "colorB": "255", + "colorG": "255", + "selcircsize": "256", + "armor": "Stone", + "colorR": "255", + "maxScale": "1", + "texID": "11", + "texFile": "ReplaceableTextures\\Cliff\\Cliff0.blp", + "file": "Doodads\\LordaeronSummer\\Terrain\\BridgeRampSmall135\\BridgeRampSmall135", + "file:hd": "Doodads\\Terrain\\CliffDoodad\\WayGateRamp\\WayGateRamp", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "0", + "fixedRot": "-1", + "minScale": "1", + "shadow": "none", + "addon": "Environment" + }, + "NTiw": { + "DestructableID": "NTiw", + "category": "D", + "tilesets": "N", + "tilesetSpecific": 0, + "fatLOS": 0, + "comment": "Tree Wall", + "Name": "WESTRING_DEST_ICY_TREE_WALL", + "EditorSuffix": "_", + "doodClass": "A", + "useClickHelper": 0, + "onCliffs": 0, + "onWater": 1, + "canPlaceDead": 1, + "walkable": 0, + "cliffHeight": 0, + "modelHeight": 295, + "targType": "tree", + "HP": 50, + "occH": 230, + "radius": 0, + "fogRadius": 0, + "fogVis": 0, + "pathTex": "PathTextures\\4x4Default.tga", + "pathTexDeath": "_", + "showInMM": 1, + "useMMColor": 1, + "MMRed": 166, + "MMGreen": 187, + "MMBlue": 196, + "buildTime": 0, + "repairTime": 0, + "goldRep": 0, + "lumberRep": 0, + "InBeta": 1, + "version": 0, + "selectable": 0, + "flyH": 170, + "skinType": "destructable", + "numVar": "10", + "skinnableID": "NTiw", + "colorB": "255", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "34", + "texFile:sd": "ReplaceableTextures\\NorthrendTree\\NorthTree", + "file": "Doodads\\Terrain\\NorthrendTree\\NorthrendTree", + "texFile:hd": "ReplaceableTextures\\NorthrendTreeIcy\\NorthTreeIcy", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + }, + "YTsc": { + "skinType": "destructable", + "numVar": "10", + "skinnableID": "YTsc", + "colorB": "255", + "Name": "WESTRING_DEST_SCORCHED_TREE_WALL", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "34", + "texFile:sd": "ReplaceableTextures\\NorthrendTree\\NorthTree", + "file": "Doodads\\Terrain\\NorthrendTree\\NorthrendTree", + "texFile:hd": "ReplaceableTextures\\ScorchedTree\\ScorchedTree", + "file:hd": "Doodads\\Terrain\\ScorchedTree\\ScorchedTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "ShadowCityTree", + "addon": "Environment" + }, + "LFpt": { + "skinType": "destructable", + "numVar": "10", + "skinnableID": "LFpt", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "file:hd": "Doodads\\LordaeronFall\\Terrain\\PyrewoodVillagePineTree\\PyrewoodVillagePineTree", + "lightweight": "0", + "lightweight:hd": "0", + "texID": "-", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronFallTree", + "texFile:hd": "_", + "Name": "WESTRING_DEST_PYREWOOD_VILLAGE_PINE_TREE", + "EditorSuffix": "_", + "fixedRot": "270", + "selSize": "0", + "minScale": "0.8", + "maxScale": "1.2", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "BuildingShadowSmall", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "Yts2": { + "skinType": "destructable", + "numVar": "10", + "skinnableID": "Yts2", + "file": "Doodads\\Terrain\\CityscapeTree\\CityscapeTree", + "file:hd": "Doodads\\Terrain\\SilverMoonTree_Blight\\SilverMoonTree_Blight", + "lightweight": "1", + "lightweight:hd": "0", + "texID": "31", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "texFile:hd": "_", + "Name": "WESTRING_DEST_SILVER_MOON_TREE_BLIGHT", + "EditorSuffix": "_", + "fixedRot": "270", + "selSize": "0", + "minScale": "0.8", + "maxScale": "1.2", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "ShadowCityTree", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "Yts3": { + "skinType": "destructable", + "numVar": "2", + "skinnableID": "Yts3", + "file": "Doodads\\Cityscape\\CityTree\\CityscapeTree0D", + "file:hd": "Doodads\\Silvermoon\\Terrain\\SilverMoonTree_Dead\\SilverMoonTree_Dead", + "lightweight": "1", + "lightweight:hd": "0", + "texID": "31", + "texID:hd": "-", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "texFile:hd": "_", + "Name": "WESTRING_DEST_SILVER_MOON_TREE_DEAD", + "EditorSuffix": "_", + "fixedRot": "270", + "selSize": "0", + "minScale": "0.8", + "maxScale": "1.2", + "canPlaceRandScale": "1", + "maxPitch": "-", + "maxRoll": "-", + "deathSnd": "TreeWallDeath", + "shadow": "ShadowCityTree", + "colorR": "255", + "colorG": "255", + "colorB": "255", + "addon": "Environment" + }, + "STlt": { + "skinType": "destructable", + "numVar": "10", + "skinnableID": "LTlt", + "colorB": "255", + "Name": "WESTRING_DEST_SILVER_MOON_TREE", + "colorG": "255", + "selcircsize": "128", + "armor": "Wood", + "colorR": "255", + "deathSnd": "TreeWallDeath", + "maxScale": "1.2", + "texID": "31", + "texFile": "ReplaceableTextures\\LordaeronTree\\LordaeronSummerTree", + "file": "Doodads\\Terrain\\LordaeronTree\\LordaeronTree", + "selSize": "0", + "canPlaceRandScale": "1", + "lightweight": "1", + "lightweight:hd": "0", + "fixedRot": "270", + "minScale": "0.8", + "shadow": "BuildingShadowSmall", + "addon": "Environment" + } + }, + "upgrade": { + "Rhme": { + "upgradeid": "Rhme", + "comments": "human melee attack", + "class": "melee", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 100, + "goldmod": 75, + "lumberbase": 50, + "lumbermod": 125, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSteelMelee.blp,ReplaceableTextures\\CommandButtons\\BTNThoriumMelee.blp,ReplaceableTextures\\CommandButtons\\BTNArcaniteMelee.blp", + "Buttonpos": "0,0", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas" + }, + "Rhra": { + "upgradeid": "Rhra", + "comments": "human ranged attack", + "class": "ranged", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 100, + "goldmod": 75, + "lumberbase": 50, + "lumbermod": 125, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanMissileUpOne.blp,ReplaceableTextures\\CommandButtons\\BTNHumanMissileUpTwo.blp,ReplaceableTextures\\CommandButtons\\BTNHumanMissileUpThree.blp", + "Buttonpos": "1,0", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas" + }, + "Rhhb": { + "upgradeid": "Rhhb", + "comments": "human hammer bounce", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 125, + "goldmod": 0, + "lumberbase": 225, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "rasd", + "base1": 200, + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Requires": "hcas", + "Art": "ReplaceableTextures\\CommandButtons\\BTNStormHammer.blp", + "Buttonpos": "1,2" + }, + "Rhar": { + "upgradeid": "Rhar", + "comments": "human armor", + "class": "armor", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 125, + "goldmod": 25, + "lumberbase": 75, + "lumbermod": 100, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanArmorUpOne.blp,ReplaceableTextures\\CommandButtons\\BTNHumanArmorUpTwo.blp,ReplaceableTextures\\CommandButtons\\BTNHumanArmorUpThree.blp", + "Buttonpos": "0,1", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas" + }, + "Rhgb": { + "upgradeid": "Rhgb", + "comments": "human gyro bombs", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 150, + "goldmod": 50, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 35, + "timemod": 0, + "effect1": "renw", + "base1": 3, + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanArtilleryUpOne.blp", + "Buttonpos": "0,1", + "Requires": "hcas" + }, + "Rhac": { + "upgradeid": "Rhac", + "comments": "human architecture", + "class": "armor", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 125, + "goldmod": 25, + "lumberbase": 50, + "lumbermod": 25, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "rhpo", + "base2": 0.1, + "mod2": 0.1, + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStoneArchitecture.blp,ReplaceableTextures\\CommandButtons\\BTNArcaniteArchitecture.blp,ReplaceableTextures\\CommandButtons\\BTNImbuedMasonry.blp", + "Buttonpos": "1,0", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas" + }, + "Rhde": { + "upgradeid": "Rhde", + "comments": "human footman defend", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 125, + "goldmod": 0, + "lumberbase": 75, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDefend.blp", + "Buttonpos": "0,2" + }, + "Rhan": { + "upgradeid": "Rhan", + "comments": "human animal breeding", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 125, + "goldmod": 0, + "lumberbase": 125, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "rhpx", + "base1": 100, + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNAnimalWarTraining.blp", + "Buttonpos": "2,2", + "Requires": "hlum,hbla,hcas" + }, + "Rhpt": { + "upgradeid": "Rhpt", + "comments": "human priest training", + "class": "caster", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 0, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPriestAdept.blp,ReplaceableTextures\\CommandButtons\\BTNPriestMaster.blp", + "Buttonpos": "1,2", + "Requirescount": "2", + "Requires1": "hcas" + }, + "Rhst": { + "upgradeid": "Rhst", + "comments": "human sorceress training", + "class": "caster", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 0, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSorceressAdept.blp,ReplaceableTextures\\CommandButtons\\BTNSorceressMaster.blp", + "Buttonpos": "0,2", + "Requirescount": "2", + "Requires1": "hcas" + }, + "Rhla": { + "upgradeid": "Rhla", + "comments": "human leather armor", + "class": "armor", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 100, + "goldmod": 50, + "lumberbase": 100, + "lumbermod": 75, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNLeatherUpgradeOne.blp,ReplaceableTextures\\CommandButtons\\BTNLeatherUpgradeTwo.blp,ReplaceableTextures\\CommandButtons\\BTNLeatherUpgradeThree.blp", + "Buttonpos": "1,1", + "Requirescount": "3", + "Requires1": "hkee", + "Requires2": "hcas" + }, + "Rhri": { + "upgradeid": "Rhri", + "comments": "human rifleman plus range", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 125, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "ratr", + "base1": 200, + "mod1": 200, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDwarvenLongRifle.blp", + "Buttonpos": "1,2", + "Requires": "hkee" + }, + "Rhlh": { + "upgradeid": "Rhlh", + "comments": "human lumber harvesting", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 100, + "lumberbase": 0, + "lumbermod": 0, + "timebase": 60, + "timemod": 15, + "effect1": "rlum", + "base1": 10, + "mod1": 10, + "code1": "-", + "effect2": "rlev", + "base2": 1, + "mod2": 1, + "code2": "Ahlh", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHumanLumberUpgrade1.blp,ReplaceableTextures\\CommandButtons\\BTNHumanLumberUpgrade2.blp", + "Buttonpos": "0,0", + "Requirescount": "2", + "Requires1": "hkee" + }, + "Rhse": { + "upgradeid": "Rhse", + "comments": "human magical sentinal", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 0, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMagicalSentry.blp", + "Buttonpos": "2,2" + }, + "Rhfl": { + "upgradeid": "Rhfl", + "comments": "human flare", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlare.blp", + "Buttonpos": "1,2", + "Requires": "hkee" + }, + "Rhss": { + "upgradeid": "Rhss", + "comments": "human control magic", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 75, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Requires": "hvlt,hcas", + "Art": "ReplaceableTextures\\CommandButtons\\BTNControlMagic.blp", + "Buttonpos": "2,1" + }, + "Rhrt": { + "upgradeid": "Rhrt", + "comments": "human rocket tank", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 1, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "rtma", + "base1": 1, + "mod1": "-", + "code1": "hmtt", + "effect2": "rtma", + "base2": -1, + "mod2": "-", + "code2": "hrtt", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNScatterRockets.blp", + "Buttonpos": "2,1", + "Requires": "hcas" + }, + "Rhpm": { + "upgradeid": "Rhpm", + "comments": "human backpack", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 0, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 25, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp", + "Buttonpos": "3,0" + }, + "Rhfc": { + "upgradeid": "Rhfc", + "comments": "human flak cannon", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFlakCannons.blp", + "Buttonpos": "0,2", + "Requires": "hkee" + }, + "Rhfs": { + "upgradeid": "Rhfs", + "comments": "human frag shards", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFragmentationBombs.blp", + "Buttonpos": "1,1", + "Requires": "hcas" + }, + "Rhcd": { + "upgradeid": "Rhcd", + "comments": "human cloud research", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 35, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCloudOfFog.blp", + "Buttonpos": "0,2", + "Requires": "hcas" + }, + "Rhsb": { + "upgradeid": "Rhsb", + "comments": "human sundering blades", + "class": "_", + "race": "human", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSunderingBlades.blp", + "Buttonpos": "2,1", + "Requires": "hlum,hcas,hbla" + }, + "Rome": { + "upgradeid": "Rome", + "comments": "orc melee attack", + "class": "melee", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 100, + "goldmod": 50, + "lumberbase": 75, + "lumbermod": 75, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcMeleeUpOne.blp,ReplaceableTextures\\CommandButtons\\BTNOrcMeleeUpTwo.blp,ReplaceableTextures\\CommandButtons\\BTNOrcMeleeUpThree.blp", + "Buttonpos": "0,0", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt" + }, + "Rora": { + "upgradeid": "Rora", + "comments": "orc ranged attack", + "class": "ranged", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 100, + "goldmod": 50, + "lumberbase": 100, + "lumbermod": 75, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSteelRanged.blp,ReplaceableTextures\\CommandButtons\\BTNThoriumRanged.blp,ReplaceableTextures\\CommandButtons\\BTNArcaniteRanged.blp", + "Buttonpos": "1,0", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt" + }, + "Roar": { + "upgradeid": "Roar", + "comments": "orc armor", + "class": "armor", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 150, + "goldmod": 75, + "lumberbase": 75, + "lumbermod": 125, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSteelArmor.blp,ReplaceableTextures\\CommandButtons\\BTNThoriumArmor.blp,ReplaceableTextures\\CommandButtons\\BTNArcaniteArmor.blp", + "Buttonpos": "0,1", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt" + }, + "Rwdm": { + "upgradeid": "Rwdm", + "comments": "orc war drums damage", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "raud", + "base1": 0.1, + "mod1": 0.1, + "code1": "Aakb", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDrum.blp", + "Buttonpos": "2,2", + "Requires": "ofrt,ofor" + }, + "Ropg": { + "upgradeid": "Ropg", + "comments": "orc pillage", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 25, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPillage.blp", + "Buttonpos": "2,0" + }, + "Robs": { + "upgradeid": "Robs", + "comments": "orc grunt berserk", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "rhpx", + "base1": 125, + "mod1": "-", + "code1": "-", + "effect2": "ratx", + "base2": 3, + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBerserk.blp", + "Buttonpos": "0,2", + "Requires": "ostr" + }, + "Rows": { + "upgradeid": "Rows", + "comments": "orc tauren smash", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 175, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "rlev", + "base1": 1, + "mod1": 1, + "code1": "Awar", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSmash.blp", + "Buttonpos": "1,2", + "Requires": "ofor,ofrt" + }, + "Roen": { + "upgradeid": "Roen", + "comments": "orc raider ensare", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 75, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Buttonpos": "0,2" + }, + "Rovs": { + "upgradeid": "Rovs", + "comments": "orc wyvern venom spear", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnvenomedSpear.blp", + "Buttonpos": "1,2", + "Requires": "ofrt" + }, + "Rowd": { + "upgradeid": "Rowd", + "comments": "orc witch doctor training", + "class": "caster", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 0, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWitchDoctorAdept.blp,ReplaceableTextures\\CommandButtons\\BTNWitchDoctorMaster.blp", + "Buttonpos": "1,2", + "Requirescount": "2", + "Requires1": "ofrt" + }, + "Rost": { + "upgradeid": "Rost", + "comments": "orc shaman training", + "class": "caster", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 0, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNShamanAdept.blp,ReplaceableTextures\\CommandButtons\\BTNShamanMaster.blp", + "Buttonpos": "0,2", + "Requirescount": "2", + "Requires1": "ofrt" + }, + "Rosp": { + "upgradeid": "Rosp", + "comments": "orc spiked barricade", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 0, + "goldbase": 25, + "goldmod": 25, + "lumberbase": 75, + "lumbermod": 25, + "timebase": 60, + "timemod": 15, + "effect1": "rspi", + "base1": 5, + "mod1": 0, + "code1": "-", + "effect2": "rspp", + "base2": 0.2, + "mod2": 0.3, + "code2": "-", + "effect3": "rlev", + "base3": 1, + "mod3": 1, + "code3": "Aosp", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpikedBarricades.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedSpikedBarricades.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedSpikedBarricades.blp", + "Buttonpos": "2,0", + "Requirescount": "3", + "Requires1": "ostr", + "Requires2": "ofrt" + }, + "Rotr": { + "upgradeid": "Rotr", + "comments": "orc troll regeneration", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 35, + "timemod": 0, + "effect1": "rhpr", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNRegenerate.blp", + "Buttonpos": "1,2", + "Requires": "ostr,ofor" + }, + "Rolf": { + "upgradeid": "Rolf", + "comments": "orc liquid fire", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 125, + "lumbermod": 0, + "timebase": 75, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNLiquidFire.blp", + "Buttonpos": "2,1", + "Requires": "ofrt,ovln" + }, + "Roch": { + "upgradeid": "Roch", + "comments": "orc chaos conversion", + "class": "_", + "race": "demon", + "sort": "_", + "used": 1, + "global": 1, + "maxlevel": 1, + "inherit": 0, + "goldbase": 0, + "goldmod": 0, + "lumberbase": 0, + "lumbermod": 0, + "timebase": 0, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNOrcMeleeUpOne.blp" + }, + "Rowt": { + "upgradeid": "Rowt", + "comments": "orc spiritwalker training", + "class": "caster", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 50, + "timemod": 10, + "effect1": "rmnx", + "base1": 150, + "mod1": 150, + "code1": "-", + "effect2": "rmnr", + "base2": 0.42, + "mod2": 0.42, + "code2": "-", + "effect3": "rhpx", + "base3": 60, + "mod3": 60, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSpiritWalkerAdeptTraining.blp,ReplaceableTextures\\CommandButtons\\BTNSpiritWalkerMasterTraining.blp", + "Buttonpos": "0,2", + "Requirescount": "2", + "Requires1": "ofrt" + }, + "Rorb": { + "upgradeid": "Rorb", + "comments": "orc reinforced defense", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 0, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 175, + "lumbermod": 0, + "timebase": 60, + "timemod": 0, + "effect1": "rart", + "base1": 3, + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Requires": "ostr", + "Art": "ReplaceableTextures\\CommandButtons\\BTNReinforcedBurrows.blp", + "Buttonpos": "2,1" + }, + "Robk": { + "upgradeid": "Robk", + "comments": "orc berserkers", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 1, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 175, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "rtma", + "base1": 1, + "mod1": "-", + "code1": "ohun", + "effect2": "rtma", + "base2": -1, + "mod2": "-", + "code2": "otbk", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHeadHunterBerserker.blp", + "Buttonpos": "1,1", + "Requires": "ofrt,ofor" + }, + "Ropm": { + "upgradeid": "Ropm", + "comments": "orc backpack", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 0, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 25, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp", + "Buttonpos": "3,0" + }, + "Robf": { + "upgradeid": "Robf", + "comments": "orc naptha", + "class": "_", + "race": "orc", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Requires": "ofrt", + "Art": "ReplaceableTextures\\CommandButtons\\BTNFireRocks.blp", + "Buttonpos": "2,1" + }, + "Rume": { + "upgradeid": "Rume", + "comments": "undead unholy strength", + "class": "melee", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 125, + "goldmod": 75, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyStrength.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedUnholyStrength.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedUnholyStrength.blp", + "Buttonpos": "0,0", + "Requirescount": "3", + "Requires1": "unp1", + "Requires2": "unp2" + }, + "Rura": { + "upgradeid": "Rura", + "comments": "undead creature attack", + "class": "ranged", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 150, + "goldmod": 50, + "lumberbase": 50, + "lumbermod": 75, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCreatureAttack.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedCreatureAttack.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedCreatureAttack.blp", + "Buttonpos": "1,0", + "Requirescount": "3", + "Requires1": "unp1", + "Requires2": "unp2" + }, + "Ruar": { + "upgradeid": "Ruar", + "comments": "undead unholy armor", + "class": "armor", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 125, + "goldmod": 75, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUnholyArmor.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedUnholyArmor.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedUnholyArmor.blp", + "Buttonpos": "0,1", + "Requirescount": "3", + "Requires1": "unp1", + "Requires2": "unp2" + }, + "Ruac": { + "upgradeid": "Ruac", + "comments": "undead ghoul cannibalize", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 0, + "lumbermod": 0, + "timebase": 15, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCannibalize.blp", + "Buttonpos": "0,2" + }, + "Rugf": { + "upgradeid": "Rugf", + "comments": "undead ghoul frenzy", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 50, + "timemod": 0, + "effect1": "rats", + "base1": 0.35, + "mod1": "-", + "code1": "-", + "effect2": "rmvx", + "base2": 60, + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGhoulFrenzy.blp", + "Buttonpos": "0,1", + "Requires": "ugrv,unp2" + }, + "Ruwb": { + "upgradeid": "Ruwb", + "comments": "undead fiend web", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWeb.blp", + "Buttonpos": "1,2", + "Requires": "ugrv,unp1" + }, + "Rusf": { + "upgradeid": "Rusf", + "comments": "undead gargoyle stone", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStoneForm.blp", + "Buttonpos": "2,1", + "Requires": "ugrv,unp2" + }, + "Rune": { + "upgradeid": "Rune", + "comments": "undead necromancer training", + "class": "caster", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 30, + "timemod": 15, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNecromancerAdept.blp,ReplaceableTextures\\CommandButtons\\BTNNecromancerMaster.blp", + "Buttonpos": "0,2", + "Requirescount": "2", + "Requires1": "unp2" + }, + "Ruba": { + "upgradeid": "Ruba", + "comments": "undead banshee training", + "class": "caster", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 0, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNBansheeAdept.blp,ReplaceableTextures\\CommandButtons\\BTNBansheeMaster.blp", + "Buttonpos": "1,2", + "Requirescount": "2", + "Requires1": "unp2" + }, + "Rufb": { + "upgradeid": "Rufb", + "comments": "undead frost wyrm breath", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 150, + "goldmod": 0, + "lumberbase": 225, + "lumbermod": 0, + "timebase": 60, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNFreezingBreath.blp", + "Buttonpos": "0,2" + }, + "Rusl": { + "upgradeid": "Rusl", + "comments": "undead skeleton life span", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 75, + "lumbermod": 0, + "timebase": 15, + "timemod": 0, + "effect1": "rrai", + "base1": 20, + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Requires": "unp2", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletalLongevity.blp", + "Buttonpos": "2,1" + }, + "Rucr": { + "upgradeid": "Rucr", + "comments": "undead creature armor", + "class": "armor", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 150, + "goldmod": 50, + "lumberbase": 75, + "lumbermod": 125, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCreatureCarapace.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedCreatureCarapace.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedCreatureCarapace.blp", + "Buttonpos": "1,1", + "Requirescount": "3", + "Requires1": "unp1", + "Requires2": "unp2" + }, + "Rupc": { + "upgradeid": "Rupc", + "comments": "undead plague cloud", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 200, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPlagueCloud.blp", + "Buttonpos": "1,2", + "Requires": "unp2" + }, + "Rusm": { + "upgradeid": "Rusm", + "comments": "undead skeletal mastery", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 150, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "rlev", + "base1": 1, + "mod1": 1, + "code1": "Arai", + "effect2": "rrai", + "base2": 20, + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Requires": "unpl", + "Art": "ReplaceableTextures\\CommandButtons\\BTNSkeletonMage.blp", + "Buttonpos": "0,1" + }, + "Rubu": { + "upgradeid": "Rubu", + "comments": "undead burrowing", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 75, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCryptFiendBurrow.blp", + "Buttonpos": "1,1", + "Requires": "unp1,ugrv" + }, + "Rusp": { + "upgradeid": "Rusp", + "comments": "undead avenger transform", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 60, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDestroyer.blp", + "ButtonPos": "2,2", + "Requires": "unp2,utom" + }, + "Ruex": { + "upgradeid": "Ruex", + "comments": "undead exhume corpses", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNExhumeCorpses.blp", + "Buttonpos": "0,2", + "Requires": "unp1" + }, + "Rupm": { + "upgradeid": "Rupm", + "comments": "undead backpack", + "class": "_", + "race": "undead", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 0, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 25, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp", + "Buttonpos": "3,0" + }, + "Resm": { + "upgradeid": "Resm", + "comments": "nightelf strength of moon", + "class": "melee", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 125, + "goldmod": 50, + "lumberbase": 75, + "lumbermod": 100, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStrengthOfTheMoon.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedStrengthOfTheMoon.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedStrengthOfTheMoon.blp", + "Buttonpos": "0,0", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe" + }, + "Resw": { + "upgradeid": "Resw", + "comments": "nightelf strength of wild", + "class": "ranged", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 100, + "goldmod": 75, + "lumberbase": 75, + "lumbermod": 100, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNStrengthOfTheWild.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedStrengthOfTheWild.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedStrengthOfTheWild.blp", + "Buttonpos": "1,0", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe" + }, + "Rema": { + "upgradeid": "Rema", + "comments": "nightelf moon armor", + "class": "armor", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 150, + "goldmod": 50, + "lumberbase": 75, + "lumbermod": 75, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMoonArmor.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedMoonArmor.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedMoonArmor.blp", + "Buttonpos": "0,1", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe" + }, + "Rerh": { + "upgradeid": "Rerh", + "comments": "nightelf reinforced hides", + "class": "armor", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 150, + "goldmod": 50, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNReinforcedHides.blp,ReplaceableTextures\\CommandButtons\\BTNImprovedReinforcedHides.blp,ReplaceableTextures\\CommandButtons\\BTNAdvancedReinforcedHides.blp", + "Buttonpos": "1,1", + "Requirescount": "3", + "Requires1": "etoa", + "Requires2": "etoe" + }, + "Reuv": { + "upgradeid": "Reuv", + "comments": "nightelf ultravision", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUltravision.blp", + "Buttonpos": "2,0", + "Requires": "etoa" + }, + "Renb": { + "upgradeid": "Renb", + "comments": "nightelf nature's blessing", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 150, + "goldmod": 0, + "lumberbase": 200, + "lumbermod": 0, + "timebase": 60, + "timemod": 0, + "effect1": "rmvx", + "base1": 40, + "mod1": "-", + "code1": "-", + "effect2": "rarm", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNaturesBlessing.blp", + "Buttonpos": "2,0", + "Requires": "etoa" + }, + "Resc": { + "upgradeid": "Resc", + "comments": "nightelf scout", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSentinel.blp", + "Buttonpos": "1,2", + "Requires": "edob" + }, + "Remg": { + "upgradeid": "Remg", + "comments": "nightelf moon glaive upgrade", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 125, + "goldmod": 0, + "lumberbase": 175, + "lumbermod": 0, + "timebase": 50, + "timemod": 0, + "effect1": "ratc", + "base1": 1, + "mod1": "-", + "code1": "-", + "effect2": "rart", + "base2": 2, + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNUpgradeMoonGlaive.blp", + "Buttonpos": "1,1", + "Requires": "edob,etoa" + }, + "Reib": { + "upgradeid": "Reib", + "comments": "nightelf improved bows", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 35, + "timemod": 0, + "effect1": "ratr", + "base1": 200, + "mod1": 200, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNImprovedBows.blp", + "Buttonpos": "0,2", + "Requires": "etoa" + }, + "Remk": { + "upgradeid": "Remk", + "comments": "nightelf marksmanship", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 175, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "ratx", + "base1": 4, + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNMarksmanship.blp", + "Buttonpos": "0,1", + "Requires": "edob,etoe" + }, + "Redt": { + "upgradeid": "Redt", + "comments": "nightelf DoT training", + "class": "caster", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 0, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDOTAdeptTraining.blp,ReplaceableTextures\\CommandButtons\\BTNDOTMasterTraining.blp", + "Buttonpos": "1,2", + "Requirescount": "2", + "Requires1": "etoe" + }, + "Redc": { + "upgradeid": "Redc", + "comments": "nightelf DoC training", + "class": "caster", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 25, + "timemod": 10, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 75, + "mod3": 75, + "code3": "-", + "effect4": "ratd", + "base4": 1, + "mod4": 1, + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDOCAdeptTraining.blp,ReplaceableTextures\\CommandButtons\\BTNDOCMasterTraining.blp", + "Buttonpos": "1,2", + "Requirescount": "2", + "Requires1": "etoe" + }, + "Resi": { + "upgradeid": "Resi", + "comments": "nightelf abolish magic", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagic.blp", + "Buttonpos": "0,2" + }, + "Recb": { + "upgradeid": "Recb", + "comments": "nightelf corrosive breath", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 125, + "goldmod": 0, + "lumberbase": 225, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "renw", + "base1": 3, + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNCorrosiveBreath.blp", + "Buttonpos": "0,2" + }, + "Reht": { + "upgradeid": "Reht", + "comments": "nightelf hippogryph taming", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 75, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNTameHippogriff.blp", + "Buttonpos": "0,2" + }, + "Repb": { + "upgradeid": "Repb", + "comments": "nightelf impaling bolt", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 125, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "ratx", + "base1": 10, + "mod1": "-", + "code1": "-", + "effect2": "renw", + "base2": "ap04", + "mod2": "-", + "code2": "-", + "effect3": "renw", + "base3": 2, + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 0, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNVorpalBlades.blp", + "Buttonpos": "2,2", + "Requires": "etoa,edob" + }, + "Rers": { + "upgradeid": "Rers", + "comments": "nightelf resistant skin", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 75, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNResistantSkin.blp", + "Buttonpos": "2,2", + "Requires": "etoe,eden" + }, + "Rehs": { + "upgradeid": "Rehs", + "comments": "nightelf hardened skin", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 175, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNHardenedSkin.blp", + "Buttonpos": "2,1", + "Requires": "etoe,eden" + }, + "Reeb": { + "upgradeid": "Reeb", + "comments": "nightelf enchanted bears", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 25, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnchantedBears.blp", + "Buttonpos": "1,1", + "Requires": "Redc", + "Requiresamount": "2" + }, + "Reec": { + "upgradeid": "Reec", + "comments": "nightelf enchanted crows", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 25, + "goldmod": 0, + "lumberbase": 100, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnchantedCrows.blp", + "Buttonpos": "1,1", + "Requires": "Redt" + }, + "Rews": { + "upgradeid": "Rews", + "comments": "nightelf well spring", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 75, + "goldmod": 0, + "lumberbase": 150, + "lumbermod": 0, + "timebase": 30, + "timemod": 0, + "effect1": "rmnx", + "base1": 100, + "mod1": "-", + "code1": "-", + "effect2": "rmnr", + "base2": 0.52, + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNWellSpring.blp", + "Buttonpos": "3,0", + "Requires": "etoe" + }, + "Repm": { + "upgradeid": "Repm", + "comments": "nightelf backpack", + "class": "_", + "race": "nightelf", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 0, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 25, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNPackBeast.blp", + "Buttonpos": "3,0" + }, + "Rgfo": { + "upgradeid": "Rgfo", + "comments": "glyph of fortification", + "class": "_", + "race": "unknown", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 100, + "goldmod": 50, + "lumberbase": 100, + "lumbermod": 50, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "rhpo", + "base2": 0.2, + "mod2": 0.2, + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlyph.blp,ReplaceableTextures\\CommandButtons\\BTNGlyph.blp,ReplaceableTextures\\CommandButtons\\BTNGlyph.blp" + }, + "Rguv": { + "upgradeid": "Rguv", + "comments": "glyph of ultravision", + "class": "_", + "race": "unknown", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 100, + "goldmod": 50, + "lumberbase": 100, + "lumbermod": 50, + "timebase": 60, + "timemod": 15, + "effect1": "rauv", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 1, + "Art": "ReplaceableTextures\\CommandButtons\\BTNGlyph.blp" + }, + "Rnen": { + "upgradeid": "Rnen", + "comments": "naga myrmidon ensnare", + "class": "_", + "race": "naga", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 75, + "lumbermod": 0, + "timebase": 40, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNEnsnare.blp", + "Buttonpos": "0,2" + }, + "Rnsw": { + "upgradeid": "Rnsw", + "comments": "naga sea witch training", + "class": "caster", + "race": "naga", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 2, + "inherit": 1, + "goldbase": 100, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 100, + "timebase": 60, + "timemod": 15, + "effect1": "rmnx", + "base1": 100, + "mod1": 100, + "code1": "-", + "effect2": "rmnr", + "base2": 0.325, + "mod2": 0.325, + "code2": "-", + "effect3": "rhpx", + "base3": 40, + "mod3": 40, + "code3": "-", + "effect4": "ratd", + "base4": 0, + "mod4": 0, + "code4": "-", + "version": 1, + "InBeta": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNSirenAdept.blp,ReplaceableTextures\\CommandButtons\\BTNSirenMaster.blp", + "Buttonpos": "0,2" + }, + "Rnsi": { + "upgradeid": "Rnsi", + "comments": "naga abolish magic", + "class": "_", + "race": "naga", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 50, + "goldmod": 0, + "lumberbase": 50, + "lumbermod": 0, + "timebase": 45, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNDryadDispelMagic.blp", + "Buttonpos": "1,2" + }, + "Rnat": { + "upgradeid": "Rnat", + "comments": "naga attack", + "class": "melee", + "race": "naga", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 150, + "goldmod": 75, + "lumberbase": 75, + "lumbermod": 150, + "timebase": 60, + "timemod": 15, + "effect1": "ratd", + "base1": 1, + "mod1": 1, + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaWeaponUp1.blp,ReplaceableTextures\\CommandButtons\\BTNNagaWeaponUp2.blp,ReplaceableTextures\\CommandButtons\\BTNNagaWeaponUp3.blp", + "Buttonpos": "0,2" + }, + "Rnam": { + "upgradeid": "Rnam", + "comments": "naga armor", + "class": "armor", + "race": "naga", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 3, + "inherit": 0, + "goldbase": 125, + "goldmod": 100, + "lumberbase": 75, + "lumbermod": 150, + "timebase": 60, + "timemod": 15, + "effect1": "rarm", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaArmorUp1.blp,ReplaceableTextures\\CommandButtons\\BTNNagaArmorUp2.blp,ReplaceableTextures\\CommandButtons\\BTNNagaArmorUp3.blp", + "Buttonpos": "1,2" + }, + "Rnsb": { + "upgradeid": "Rnsb", + "comments": "naga submerge", + "class": "_", + "race": "naga", + "sort": "_", + "used": 1, + "global": 0, + "maxlevel": 1, + "inherit": 1, + "goldbase": 25, + "goldmod": 0, + "lumberbase": 25, + "lumbermod": 0, + "timebase": 20, + "timemod": 0, + "effect1": "_", + "base1": "-", + "mod1": "-", + "code1": "-", + "effect2": "_", + "base2": "-", + "mod2": "-", + "code2": "-", + "effect3": "_", + "base3": "-", + "mod3": "-", + "code3": "-", + "effect4": "_", + "base4": "-", + "mod4": "-", + "code4": "-", + "version": 1, + "InBeta": 0, + "Art": "ReplaceableTextures\\CommandButtons\\BTNNagaBurrow.blp", + "Buttonpos": "2,2" + }, + "BP001": { + "skinType": "upgrade", + "Hamg": "Samg", + "Hamg_Avail": "Samg,Sjai" + } + } + } +} \ No newline at end of file diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java new file mode 100644 index 000000000..e28b4714b --- /dev/null +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java @@ -0,0 +1,40 @@ +package tests.wurstscript.tests; + +import com.google.gson.JsonObject; +import com.google.gson.JsonParser; +import org.testng.annotations.Test; + +import java.io.InputStreamReader; +import java.nio.charset.StandardCharsets; + +import static org.testng.Assert.*; + +public class Wc3KnowledgeBaseTest { + + @Test + public void packagedKnowledgeBaseContainsMergedObjectsAndSchemas() throws Exception { + try (var stream = getClass().getClassLoader().getResourceAsStream("wc3-knowledge-base.json")) { + assertNotNull(stream, "knowledge base must be packaged as a compiler resource"); + JsonObject root = JsonParser.parseReader( + new InputStreamReader(stream, StandardCharsets.UTF_8)).getAsJsonObject(); + + assertEquals(root.get("schemaVersion").getAsInt(), 1); + assertTrue(root.getAsJsonArray("heroBaseIds").size() > 0); + assertTrue(root.getAsJsonArray("buildingBaseIds").size() > 0); + + var unitFields = root.getAsJsonObject("fieldSchemas").getAsJsonArray("unit"); + boolean foundIconField = false; + for (var field : unitFields) { + if ("uico".equals(field.getAsJsonObject().get("id").getAsString())) { + foundIconField = true; + break; + } + } + assertTrue(foundIconField); + + var hhou = root.getAsJsonObject("objects").getAsJsonObject("unit").getAsJsonObject("hhou"); + assertEquals(hhou.get("Art").getAsString(), + "ReplaceableTextures\\CommandButtons\\BTNFarm.blp"); + } + } +} From 55e2dc1889dc42bdf1536ac181dd2abb950a6f07 Mon Sep 17 00:00:00 2001 From: Frotty Date: Wed, 15 Jul 2026 22:41:20 +0200 Subject: [PATCH 2/6] lua fixes --- .../providers/MathProvider.java | 7 +- .../de/peeeq/wurstscript/WurstOperator.java | 43 +- .../optimizer/ConstantAndCopyPropagation.java | 2 +- .../optimizer/SimpleRewrites.java | 6 +- .../imtranslation/LuaDispatchPreparation.java | 8 +- .../imtranslation/LuaNativeLowering.java | 6 +- .../lua/translation/ExprTranslation.java | 64 +- .../lua/translation/LuaNatives.java | 18 +- .../lua/translation/LuaPolyfillSetup.java | 68 +- .../lua/translation/LuaReservedNames.java | 44 + .../lua/translation/LuaTranslator.java | 238 +- .../lua/translation/RemoveGarbage.java | 5 +- .../lua/translation/StmtTranslation.java | 35 +- .../tests/LuaBackendAuditTests.java | 378 + .../wurstscript/tests/LuaNativesTests.java | 14 +- .../tests/LuaTranslationTests.java | 52 +- .../tests/LuaTypecastingTests.java | 10 +- .../wurstscript/tests/WurstScriptTest.java | 26 +- .../src/test/resources/luaruntime/README.md | 24 + .../test/resources/luaruntime/blizzard.j.lua | 7980 +++++++++++++++++ .../test/resources/luaruntime/common.j.lua | 1820 ++++ .../src/test/resources/luaruntime/wc3shim.lua | 68 + 22 files changed, 10745 insertions(+), 171 deletions(-) create mode 100644 de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaReservedNames.java create mode 100644 de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java create mode 100644 de.peeeq.wurstscript/src/test/resources/luaruntime/README.md create mode 100644 de.peeeq.wurstscript/src/test/resources/luaruntime/blizzard.j.lua create mode 100644 de.peeeq.wurstscript/src/test/resources/luaruntime/common.j.lua create mode 100644 de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/jassinterpreter/providers/MathProvider.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/jassinterpreter/providers/MathProvider.java index 8f401c0e9..810e06821 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/jassinterpreter/providers/MathProvider.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/jassinterpreter/providers/MathProvider.java @@ -1,5 +1,6 @@ package de.peeeq.wurstio.jassinterpreter.providers; +import de.peeeq.wurstscript.WurstOperator; import de.peeeq.wurstscript.intermediatelang.ILconstInt; import de.peeeq.wurstscript.intermediatelang.ILconstReal; import de.peeeq.wurstscript.intermediatelang.interpreter.AbstractInterpreter; @@ -58,10 +59,12 @@ public ILconstInt GetRandomInt(ILconstInt a, ILconstInt b) { } public ILconstInt ModuloInteger(ILconstInt a, ILconstInt b) { - return new ILconstInt(a.getVal() % b.getVal()); + // must match Blizzard.j's ModuloInteger (truncated remainder, plus + // divisor if negative), which is what the game executes at runtime + return new ILconstInt(WurstOperator.moduloInteger(a.getVal(), b.getVal())); } public ILconstReal ModuloReal(ILconstReal a, ILconstReal b) { - return new ILconstReal(a.getVal() % b.getVal()); + return new ILconstReal(WurstOperator.moduloReal(a.getVal(), b.getVal())); } } diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/WurstOperator.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/WurstOperator.java index 89b09c970..5a641465a 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/WurstOperator.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/WurstOperator.java @@ -148,22 +148,10 @@ public ILconst evaluateBinaryOperator(ILconst left, return ((ILconstNum) left).lessEq((ILconstNum) right.get()); case MINUS: return ((ILconstNum) left).sub((ILconstNum) right.get()); - case MOD_INT: { - int right2 = ((ILconstInt) right.get()).getVal(); - int r = ((ILconstInt) left).getVal() % right2; - if (r < 0) { - r += right2; - } - return new ILconstInt(r); - } - case MOD_REAL: { - float right2 = getReal(right.get()); - float r = getReal(left) % right2; - if (r < 0) { - r += right2; - } - return new ILconstReal(r); - } + case MOD_INT: + return new ILconstInt(moduloInteger(((ILconstInt) left).getVal(), ((ILconstInt) right.get()).getVal())); + case MOD_REAL: + return new ILconstReal(moduloReal(getReal(left), getReal(right.get()))); case MULT: return ((ILconstNum) left).mul((ILconstNum) right.get()); case NOTEQ: @@ -178,6 +166,29 @@ public ILconst evaluateBinaryOperator(ILconst left, } + /** + * Reference semantics for Wurst's integer {@code mod}: matches Blizzard.j's + * ModuloInteger (truncated remainder, plus divisor if the remainder is + * negative). All constant folding, interpretation, and backends must agree + * with this. + */ + public static int moduloInteger(int a, int b) { + int r = a % b; + if (r < 0) { + r += b; + } + return r; + } + + /** Reference semantics for Wurst's real {@code mod}; see {@link #moduloInteger}. */ + public static float moduloReal(float a, float b) { + float r = a % b; + if (r < 0) { + r += b; + } + return r; + } + private static float getReal(ILconst c) { if (c instanceof ILconstReal) { return ((ILconstReal) c).getVal(); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/ConstantAndCopyPropagation.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/ConstantAndCopyPropagation.java index 42154dc54..32d6141be 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/ConstantAndCopyPropagation.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/ConstantAndCopyPropagation.java @@ -473,7 +473,7 @@ private void analyzeComponent(List scc, Map knowledge) { case MINUS: return JassIm.ImIntVal(l - r); case MULT: return JassIm.ImIntVal(l * r); case DIV_INT: if (r != 0) return JassIm.ImIntVal(l / r); break; - case MOD_INT: if (r != 0) return JassIm.ImIntVal(l % r); break; + case MOD_INT: if (r != 0) return JassIm.ImIntVal(WurstOperator.moduloInteger(l, r)); break; // IMPORTANT: Return ImBoolVal for comparisons, not ImIntVal! case EQ: return JassIm.ImBoolVal(l == r); case NOTEQ: return JassIm.ImBoolVal(l != r); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/SimpleRewrites.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/SimpleRewrites.java index 0655ae380..6d8d522d5 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/SimpleRewrites.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/intermediatelang/optimizer/SimpleRewrites.java @@ -362,7 +362,7 @@ private boolean optimizeRealRealMixed(ImOperatorCall opc, boolean wasViable, ImE break; case MOD_REAL: if (f2 != 0f) { - resultVal = f1 % f2; + resultVal = WurstOperator.moduloReal(f1, f2); isArithmetic = true; } break; @@ -547,7 +547,7 @@ private boolean optimizeIntInt(ImOperatorCall opc, boolean wasViable, ImIntVal l break; case MOD_INT: if (i2 != 0) { - resultVal = i1 % i2; + resultVal = WurstOperator.moduloInteger(i1, i2); isArithmetic = true; } break; @@ -555,7 +555,7 @@ private boolean optimizeIntInt(ImOperatorCall opc, boolean wasViable, ImIntVal l float f1 = i1; float f2 = i2; if (f2 != 0f) { - float resultF = f1 % f2; + float resultF = WurstOperator.moduloReal(f1, f2); String s = floatToStringWithDecimalDigits(resultF, 4); if (Float.parseFloat(s) != resultF) { s = floatToStringWithDecimalDigits(resultF, 9); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaDispatchPreparation.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaDispatchPreparation.java index d2567e45d..662c812b9 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaDispatchPreparation.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaDispatchPreparation.java @@ -25,12 +25,8 @@ import java.util.TreeSet; public final class LuaDispatchPreparation { - private static final Set LUA_RESERVED_NAMES = Set.of( - "print", "tostring", "error", - "main", "config", - "and", "break", "do", "else", "elseif", "end", "false", "for", "function", - "if", "in", "local", "nil", "not", "or", "repeat", "return", "then", "true", "until", "while" - ); + private static final Set LUA_RESERVED_NAMES = + de.peeeq.wurstscript.translation.lua.translation.LuaReservedNames.all(); private LuaDispatchPreparation() { } diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaNativeLowering.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaNativeLowering.java index 84f36e341..e7f582cbb 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaNativeLowering.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/LuaNativeLowering.java @@ -25,7 +25,11 @@ * silently returns defaults on null-handle calls instead of crashing. * {@code boolexpr} and {@code code} typed params are intentionally skipped: these * are optional/nullable in Jass (e.g. the filter arg of - * {@code TriggerRegisterPlayerUnitEvent}) and passing {@code nil} is valid. + * {@code TriggerRegisterPlayerUnitEvent}) and passing {@code nil} is valid. + *

KNOWN LIMITATION: natives where {@code null} in a non-boolexpr/code handle + * param is a meaningful "clear/reset" argument are silently skipped by the + * wrapper instead of being forwarded. If such a native is identified, add it + * to an exemption list here rather than weakening the general nil-guard. * * *

IS_NATIVE stubs added for category 1 and 2 are recognised by diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/ExprTranslation.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/ExprTranslation.java index 876205779..6814e0b06 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/ExprTranslation.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/ExprTranslation.java @@ -47,7 +47,14 @@ public static LuaExpr translate(ImBoolVal e, LuaTranslator tr) { } public static LuaExpr translate(ImDealloc e, LuaTranslator tr) { - return LuaAst.LuaExprNull(); // TODO maybe call some finalizer? + // Deliberate no-op: Lua instances are garbage collected, so 'destroy' + // only runs onDestroy (emitted separately) and drops nothing here. + // KNOWN DIVERGENCE from the Jass backend: a destroyed object stays + // fully usable (fields, dispatch, instanceof, typeId), whereas the + // Jass backend recycles the instance id and (with runtime checks) + // errors on use-after-destroy. Use-after-destroy bugs therefore stay + // silent on Lua but crash on Jass. + return LuaAst.LuaExprNull(); } public static LuaExpr translate(ImFuncRef e, LuaTranslator tr) { @@ -101,6 +108,12 @@ static String callErrorFunc(LuaTranslator tr, String msg) { } public static LuaExpr translate(ImFunctionCall e, LuaTranslator tr) { + // String concatenation is lowered to imTr.stringConcatFunc at the IM level + // (see EliminateLocalTypes); route it explicitly to the Lua polyfill instead + // of relying on both sides happening to print the same function name. + if (e.getFunc() == tr.imTr.stringConcatFunc) { + return LuaAst.LuaExprFunctionCall(tr.stringConcatFunction, tr.translateExprList(e.getArguments())); + } String tcFunc = tr.getTypeCastingFunctionName(e.getFunc()); if (tcFunc != null && !e.getArguments().isEmpty()) { LuaExpr arg = e.getArguments().get(0).translateToLua(tr); @@ -209,20 +222,14 @@ public static LuaExpr translate(ImOperatorCall e, LuaTranslator tr) { } LuaExpr leftExpr = left.translateToLua(tr); LuaExpr rightExpr = right.translateToLua(tr); - LuaOpBinary op; - if (e.getOp() == WurstOperator.MOD_INT) { - op = LuaAst.LuaOpMod(); - - return LuaAst.LuaExprFunctionCallE(LuaAst.LuaLiteral("math.floor"), - LuaAst.LuaExprlist(LuaAst.LuaExprBinary(leftExpr, op, rightExpr))); + if (e.getOp() == WurstOperator.MOD_INT || e.getOp() == WurstOperator.MOD_REAL) { + // Lua's % is floored; Wurst mod follows Blizzard.j's ModuloInteger/ModuloReal. + return LuaAst.LuaExprFunctionCall(tr.modFunction, LuaAst.LuaExprlist(leftExpr, rightExpr)); } else if (e.getOp() == WurstOperator.DIV_INT) { - op = LuaAst.LuaOpFloorDiv(); - return LuaAst.LuaExprBinary(leftExpr, op, rightExpr); - } else { - // TODO special cases for integer division and modulo - op = e.getOp().luaTranslateBinary(); + // Lua's // is floored; Jass integer division truncates toward zero. + return LuaAst.LuaExprFunctionCall(tr.intDivFunction, LuaAst.LuaExprlist(leftExpr, rightExpr)); } - + LuaOpBinary op = e.getOp().luaTranslateBinary(); return LuaAst.LuaExprBinary(leftExpr, op, rightExpr); } else if (e.getArguments().size() == 1) { ImExpr arg = e.getArguments().get(0); @@ -362,6 +369,28 @@ public static LuaExpr translate(ImRealVal e, LuaTranslator tr) { } public static LuaExpr translate(ImStatementExpr e, LuaTranslator tr) { + // The statement-expr becomes an immediately-invoked closure. An exitwhen + // that targets a loop OUTSIDE the statement-expr would emit 'break' inside + // the closure, which is invalid Lua — fail loudly instead of emitting it. + // (flatten() normally hoists statement-exprs so this should not occur.) + e.getStatements().accept(new de.peeeq.wurstscript.jassIm.Element.DefaultVisitor() { + @Override + public void visit(ImLoop loop) { + // breaks inside a nested loop are fine — do not descend + } + + @Override + public void visit(ImVarargLoop loop) { + // breaks inside a nested loop are fine — do not descend + } + + @Override + public void visit(ImExitwhen exitwhen) { + throw new de.peeeq.wurstscript.attributes.CompileError(e.attrTrace().attrSource(), + "Lua backend: cannot translate a loop exit inside a statement-expression " + + "(it would produce a 'break' inside a closure)."); + } + }); LuaStatements body = tr.translateStatements(e.getStatements()); body.add(LuaAst.LuaReturn(e.getExpr().translateToLua(tr))); return LuaAst.LuaExprFunctionCallE( @@ -411,6 +440,15 @@ public static LuaExpr translateArrayAccessRaw(ImVarArrayAccess e, LuaTranslator return LuaAst.LuaExprArrayAccess(LuaAst.LuaExprVarAccess(tr.luaVar.getFor(e.getVar())), indexes); } + /** + * Wraps primitive-typed array reads in a type-normalizing helper call. + * NOTE (perf): the defaultArray metatable already guarantees a typed, + * non-nil default on every miss, so this is defensive hardening against + * values written from outside typed Wurst code. It costs a function call + * per array read; if that ever shows up in profiles, this is the place to + * reconsider (a regression test asserts the current behavior: + * LuaTranslationTests.stringArrayReadIsEnsured). + */ private static LuaExpr ensureByType(LuaExpr expr, ImType type, LuaTranslator tr) { if (TypesHelper.isStringType(type)) { return LuaAst.LuaExprFunctionCall(tr.ensureStrFunction, LuaAst.LuaExprlist(expr)); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaNatives.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaNatives.java index 09ac3b9bb..157b72d41 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaNatives.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaNatives.java @@ -77,7 +77,15 @@ public class LuaNatives { addNative("Player", f -> { f.getParams().add(LuaAst.LuaVariable("x", LuaAst.LuaNoExpr())); - f.getBody().add(LuaAst.LuaLiteral("return { id = x }")); + // WC3 returns the same player handle for the same id, so handle + // identity comparisons (Player(0) == Player(0)) must hold here too. + f.getBody().add(LuaAst.LuaLiteral("__wurst_test_players = __wurst_test_players or {}")); + f.getBody().add(LuaAst.LuaLiteral("local p = __wurst_test_players[x]")); + f.getBody().add(LuaAst.LuaLiteral("if p == nil then")); + f.getBody().add(LuaAst.LuaLiteral(" p = { id = x }")); + f.getBody().add(LuaAst.LuaLiteral(" __wurst_test_players[x] = p")); + f.getBody().add(LuaAst.LuaLiteral("end")); + f.getBody().add(LuaAst.LuaLiteral("return p")); }); addNative("GetPlayerId", f -> { @@ -121,7 +129,13 @@ public class LuaNatives { addNative("R2I", f -> { f.getParams().add(LuaAst.LuaVariable("x", LuaAst.LuaNoExpr())); - f.getBody().add(LuaAst.LuaLiteral("return math.modf(x)")); + // Truncate toward zero. Not math.modf: that returns TWO values + // (which expand into enclosing argument lists) and its integral + // part is a float (tostring would yield "3.0" instead of "3"). + f.getBody().add(LuaAst.LuaLiteral("if x >= 0 then")); + f.getBody().add(LuaAst.LuaLiteral(" return math.floor(x)")); + f.getBody().add(LuaAst.LuaLiteral("end")); + f.getBody().add(LuaAst.LuaLiteral("return math.ceil(x)")); }); addNative("__wurst_GetEnumPlayer", f -> { diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaPolyfillSetup.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaPolyfillSetup.java index 39f08eec1..c1277c0a7 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaPolyfillSetup.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaPolyfillSetup.java @@ -13,13 +13,26 @@ class LuaPolyfillSetup { private LuaPolyfillSetup() {} static void createArrayInitFunction(LuaTranslator tr) { + // Table-typed defaults (nested arrays, tuples) need a fresh value per + // slot that is stored on first read, so slot identity is stable. + // Immutable defaults (numbers, strings, booleans, nil) are returned + // without storing: storing would permanently materialize an entry for + // every slot that is merely READ, growing sparse arrays unboundedly. String[] code = { "local t = {}", - "local mt = {__index = function (table, key)", - " local v = d()", - " table[key] = v", - " return v", - "end}", + "local dv = d()", + "local mt", + "if type(dv) == \"table\" then", + " mt = {__index = function (table, key)", + " local v = d()", + " table[key] = v", + " return v", + " end}", + "else", + " mt = {__index = function (table, key)", + " return dv", + " end}", + "end", "setmetatable(t, mt)", "return t" }; @@ -31,6 +44,43 @@ static void createArrayInitFunction(LuaTranslator tr) { tr.luaModel.add(tr.arrayInitFunction); } + /** + * Integer division and modulo helpers matching the Jass runtime: + * div truncates toward zero (JASS integer division) and mod follows + * Blizzard.j's ModuloInteger/ModuloReal (truncated remainder, plus + * divisor when the remainder is negative). Lua's native {@code //} and + * {@code %} are floored and disagree for negative operands. + */ + static void createDivModFunctions(LuaTranslator tr) { + tr.intDivFunction.getParams().add(LuaAst.LuaVariable("a", LuaAst.LuaNoExpr())); + tr.intDivFunction.getParams().add(LuaAst.LuaVariable("b", LuaAst.LuaNoExpr())); + String[] divCode = { + "local q = a // b", + "if q < 0 and q * b ~= a then", + " q = q + 1", + "end", + "return q" + }; + for (String c : divCode) { + tr.intDivFunction.getBody().add(LuaAst.LuaLiteral(c)); + } + tr.luaModel.add(tr.intDivFunction); + + tr.modFunction.getParams().add(LuaAst.LuaVariable("a", LuaAst.LuaNoExpr())); + tr.modFunction.getParams().add(LuaAst.LuaVariable("b", LuaAst.LuaNoExpr())); + String[] modCode = { + "local r = math.fmod(a, b)", + "if r < 0 then", + " r = r + b", + "end", + "return r" + }; + for (String c : modCode) { + tr.modFunction.getBody().add(LuaAst.LuaLiteral(c)); + } + tr.luaModel.add(tr.modFunction); + } + static void createStringConcatFunction(LuaTranslator tr) { String[] code = { "if x then", @@ -55,6 +105,14 @@ static void createInstanceOfFunction(LuaTranslator tr) { tr.luaModel.add(tr.instanceOfFunction); } + /** + * KNOWN LIMITATION: both index maps hold strong references in both + * directions, so every handle/object/string that ever crosses typecasting + * is retained for the rest of the game. Weak tables would break round + * trips (index -> object must survive as long as the index is stored + * anywhere, e.g. in a hashtable), so this is accepted for now; avoid + * typecasting handles in unbounded quantities. + */ static void createObjectIndexFunctions(LuaTranslator tr) { LuaVariable objectIndexMap = LuaAst.LuaVariable("__wurst_objectIndexMap", LuaAst.LuaExprNull()); tr.luaModel.add(objectIndexMap); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaReservedNames.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaReservedNames.java new file mode 100644 index 000000000..eacc4328c --- /dev/null +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaReservedNames.java @@ -0,0 +1,44 @@ +package de.peeeq.wurstscript.translation.lua.translation; + +import java.util.HashSet; +import java.util.Set; + +/** + * Names that generated Lua identifiers must never take. + * + *

{@link #LUA_KEYWORDS} would produce syntax errors if used as identifiers + * or field names. {@link #PROTECTED_GLOBALS} are Lua standard library globals + * (and the fixed WC3 entry points) that the emitted runtime helpers depend on; + * a user identifier with one of these names would clobber the library at map + * load and break helpers like {@code math.floor} or {@code table.pack}. + */ +public final class LuaReservedNames { + + public static final Set LUA_KEYWORDS = Set.of( + "and", "break", "do", "else", "elseif", "end", "false", "for", + "function", "goto", "if", "in", "local", "nil", "not", "or", + "repeat", "return", "then", "true", "until", "while" + ); + + public static final Set PROTECTED_GLOBALS = Set.of( + // WC3 script entry points + "main", "config", + // base library functions used by emitted helpers or user shims + "print", "tostring", "tonumber", "type", "error", "assert", + "pairs", "ipairs", "next", "select", + "rawget", "rawset", "rawequal", "rawlen", + "setmetatable", "getmetatable", + "pcall", "xpcall", "load", "dofile", "require", "collectgarbage", + // standard library tables + "math", "table", "string", "os", "io", "coroutine", "debug", "utf8", "_G" + ); + + /** Union of {@link #LUA_KEYWORDS} and {@link #PROTECTED_GLOBALS}. */ + public static Set all() { + Set result = new HashSet<>(LUA_KEYWORDS); + result.addAll(PROTECTED_GLOBALS); + return result; + } + + private LuaReservedNames() {} +} diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaTranslator.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaTranslator.java index 880ce0c2d..8541d51da 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaTranslator.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/LuaTranslator.java @@ -11,7 +11,6 @@ import de.peeeq.wurstscript.types.TypesHelper; import de.peeeq.wurstscript.utils.Lazy; import de.peeeq.wurstscript.utils.Utils; -import org.jetbrains.annotations.NotNull; import java.util.*; import java.util.stream.Stream; @@ -75,33 +74,7 @@ public class LuaTranslator { final LuaCompilationUnit luaModel; private final LuaStatements deferredMainInit = LuaAst.LuaStatements(); private final Map uniqueNameCounters = new HashMap<>(); - private final Set usedNames = new HashSet<>(Arrays.asList( - // reserved function names - "print", "tostring", "error", - "main", "config", - // keywords: - "and", - "break", - "do", - "else", - "elseif", - "end", - "false", - "for", - "function", - "if", - "in", - "local", - "nil", - "not", - "or", - "repeat", - "return", - "then", - "true", - "until", - "while" - )); + private final Set usedNames = LuaReservedNames.all(); private ImProg getProg() { return prog; @@ -184,6 +157,9 @@ public LuaMethod initFor(ImClass a) { LuaFunction instanceOfFunction = LuaAst.LuaFunction(uniqueName("isInstanceOf"), LuaAst.LuaParams(), LuaAst.LuaStatements()); + LuaFunction intDivFunction = LuaAst.LuaFunction(uniqueName("intDiv"), LuaAst.LuaParams(), LuaAst.LuaStatements()); + LuaFunction modFunction = LuaAst.LuaFunction(uniqueName("wurstMod"), LuaAst.LuaParams(), LuaAst.LuaStatements()); + LuaFunction ensureIntFunction = LuaAst.LuaFunction(uniqueName("intEnsure"), LuaAst.LuaParams(), LuaAst.LuaStatements()); LuaFunction ensureStrFunction = LuaAst.LuaFunction(uniqueName("stringEnsure"), LuaAst.LuaParams(), LuaAst.LuaStatements()); LuaFunction ensureBoolFunction = LuaAst.LuaFunction(uniqueName("boolEnsure"), LuaAst.LuaParams(), LuaAst.LuaStatements()); @@ -241,6 +217,7 @@ public LuaCompilationUnit translate() { // NormalizeNames.normalizeNames(prog); createArrayInitFunction(); + createDivModFunctions(); createStringConcatFunction(); createInstanceOfFunction(); createObjectIndexFunctions(); @@ -269,7 +246,7 @@ public LuaCompilationUnit translate() { initClassTables(c); } - prependDeferredMainInitToMain(); + createBootstrapFunction(); cleanStatements(); enforceLuaLocalLimits(); @@ -280,20 +257,47 @@ void deferMainInit(LuaStatement statement) { deferredMainInit.add(statement); } - private void prependDeferredMainInitToMain() { + /** + * Moves all deferred initialization (global defaults, class dispatch tables, + * typecasting maps) into a guarded bootstrap function that is called at the + * top of BOTH entry points. WC3 calls config() before main(), so config must + * see initialized globals too. The statements cannot run at the root of the + * script because WC3 natives are not available there yet. + */ + private void createBootstrapFunction() { if (deferredMainInit.isEmpty()) { return; } ImFunction mainIm = imTr.getMainFunc(); - if (mainIm == null) { + ImFunction confIm = imTr.getConfFunc(); + if (mainIm == null && confIm == null) { return; } - LuaFunction mainLua = luaFunc.getFor(mainIm); - LuaStatements mainBody = mainLua.getBody(); - for (int i = deferredMainInit.size() - 1; i >= 0; i--) { - LuaStatement stmt = deferredMainInit.remove(i); - mainBody.add(0, stmt); + LuaVariable doneFlag = LuaAst.LuaVariable(uniqueName("__wurst_bootstrap_done"), LuaAst.LuaExprNull()); + luaModel.add(doneFlag); + LuaFunction boot = LuaAst.LuaFunction(uniqueName("__wurst_init_bootstrap"), LuaAst.LuaParams(), LuaAst.LuaStatements()); + boot.getBody().add(LuaAst.LuaLiteral("if " + doneFlag.getName() + " then return end")); + boot.getBody().add(LuaAst.LuaAssignment(LuaAst.LuaExprVarAccess(doneFlag), LuaAst.LuaExprBoolVal(true))); + List stmts = new ArrayList<>(); + while (!deferredMainInit.isEmpty()) { + stmts.add(deferredMainInit.remove(deferredMainInit.size() - 1)); + } + Collections.reverse(stmts); + for (LuaStatement stmt : stmts) { + boot.getBody().add(stmt); + } + luaModel.add(boot); + + insertBootstrapCall(mainIm, boot); + insertBootstrapCall(confIm, boot); + } + + private void insertBootstrapCall(ImFunction entryPoint, LuaFunction boot) { + if (entryPoint == null) { + return; } + LuaFunction lf = luaFunc.getFor(entryPoint); + lf.getBody().add(0, LuaAst.LuaExprFunctionCall(boot, LuaAst.LuaExprlist())); } // Assertion helpers are implemented in LuaAssertions; kept here as public entry points @@ -344,47 +348,51 @@ private void setNameFromTrace(JassImElementWithName named) { } } - private void normalizeMethodNames() { - Map> groupedMethods = new TreeMap<>(); + private void normalizeFieldNames() { + Set processed = new HashSet<>(); for (ImClass c : prog.getClasses()) { - for (ImMethod m : c.getMethods()) { - groupedMethods.computeIfAbsent(dispatchGroupKey(m), ignored -> new ArrayList<>()).add(m); - } + normalizeFieldNames(c, processed); } - List> groups = new ArrayList<>(groupedMethods.values()); - groups.sort(Comparator.comparing(g -> g.isEmpty() ? "" : methodSortKey(g.get(0)))); - for (List group : groups) { - if (group.isEmpty()) { - continue; - } - group.sort(Comparator.comparing(this::methodSortKey)); - String name = uniqueName(group.get(0).getName()); - for (ImMethod method : group) { - method.setName(name); + } + + private void normalizeFieldNames(ImClass c, Set processed) { + if (!processed.add(c)) { + return; + } + // Superclasses first: all fields of a hierarchy share one instance table, + // so a subclass field must be renamed around already-final ancestor names. + for (ImClassType sc : c.getSuperClasses()) { + normalizeFieldNames(sc.getClassDef(), processed); + } + // Field names become raw Lua table keys / field accesses, so they must not + // collide with Lua keywords, method dispatch slots, or inherited fields. + Set reserved = new HashSet<>(LuaReservedNames.LUA_KEYWORDS); + collectMethodNames(c, reserved, new HashSet<>()); + collectSuperFieldNames(c, reserved, new HashSet<>()); + for (ImVar field : c.getFields()) { + if (reserved.contains(field.getName())) { + String base = field.getName() + "_field"; + String candidate = base; + int i = 1; + while (reserved.contains(candidate)) { + candidate = base + i++; + } + field.setName(candidate); } + reserved.add(field.getName()); } } - private void normalizeFieldNames() { - for (ImClass c : prog.getClasses()) { - Set methodNames = new HashSet<>(); - collectMethodNames(c, methodNames, new HashSet<>()); - if (methodNames.isEmpty()) { - continue; - } - Set reserved = new HashSet<>(methodNames); - for (ImVar field : c.getFields()) { - if (reserved.contains(field.getName())) { - String base = field.getName() + "_field"; - String candidate = base; - int i = 1; - while (reserved.contains(candidate)) { - candidate = base + i++; - } - field.setName(candidate); - } - reserved.add(field.getName()); + private void collectSuperFieldNames(ImClass c, Set out, Set visited) { + if (!visited.add(c)) { + return; + } + for (ImClassType sc : c.getSuperClasses()) { + ImClass superClass = sc.getClassDef(); + for (ImVar field : superClass.getFields()) { + out.add(field.getName()); } + collectSuperFieldNames(superClass, out, visited); } } @@ -401,6 +409,10 @@ private void collectMethodNames(ImClass c, Set methodNames, Set } } + private void createDivModFunctions() { + LuaPolyfillSetup.createDivModFunctions(this); + } + private void createStringConcatFunction() { LuaPolyfillSetup.createStringConcatFunction(this); } @@ -735,6 +747,14 @@ private void translateClass(ImClass c) { LuaVariable classVar = luaClassVar.getFor(c); LuaMethod initMethod = luaClassInitMethod.getFor(c); + // one shared instance metatable per class — allocating a fresh + // {__index = classVar} table per instance would be pure garbage + LuaVariable metaTableVar = luaClassMetaTableVar.getFor(c); + metaTableVar.setInitialValue(LuaAst.LuaTableConstructor(LuaAst.LuaTableFields( + LuaAst.LuaTableNamedField("__index", LuaAst.LuaExprVarAccess(classVar)) + ))); + luaModel.add(metaTableVar); + luaModel.add(initMethod); // translate functions @@ -760,12 +780,10 @@ private void createClassInitFunction(ImClass c, LuaVariable classVar, LuaMethod body.add(newInst); - // setmetatable(new_inst, {__index = classVar}) + // setmetatable(new_inst, ) body.add(LuaAst.LuaExprFunctionCallByName("setmetatable", LuaAst.LuaExprlist( LuaAst.LuaExprVarAccess(newInst), - LuaAst.LuaTableConstructor(LuaAst.LuaTableFields( - LuaAst.LuaTableNamedField("__index", LuaAst.LuaExprVarAccess(classVar)) - )) + LuaAst.LuaExprVarAccess(luaClassMetaTableVar.getFor(c)) ))); body.add(LuaAst.LuaReturn(LuaAst.LuaExprVarAccess(newInst))); } @@ -822,7 +840,8 @@ private void createMethods(ImClass c, LuaVariable classVar) { List> groups = new ArrayList<>(groupedMethods.values()); groups.sort(Comparator.comparing(group -> group.isEmpty() ? "" : methodSortKey(group.get(0)))); - Map slotToImpl = new TreeMap<>(); + List> preparedGroups = new ArrayList<>(); + Map, ImMethod> chosenByGroup = new LinkedHashMap<>(); for (List groupMethods : groups) { if (groupMethods == null || groupMethods.isEmpty()) { continue; @@ -832,16 +851,71 @@ private void createMethods(ImClass c, LuaVariable classVar) { if (chosen == null || chosen.getIsAbstract() || chosen.getImplementation() == null) { continue; } + preparedGroups.add(groupMethods); + chosenByGroup.put(groupMethods, chosen); + } + + // Slots are assigned in two passes: a slot name that is the (normalized) + // name of a method in a group is a DIRECT claim of that group — call sites + // dispatch through exactly these names. All other slot names (semantic + // aliases like ClassName_x, closure/generics bridging aliases) are DERIVED. + // A derived claim may take over a direct slot only when the two methods + // have the same runtime arity (that is how overrides of erased generic + // groups are bridged — their full signatures differ in the erased type + // parameter positions); otherwise an unrelated method whose name merely + // shares an underscore-suffix (my_x(int) vs x()) could steal a real slot. + Map slotToImpl = new TreeMap<>(); + Set directSlots = new HashSet<>(); + for (List groupMethods : preparedGroups) { + ImMethod chosen = chosenByGroup.get(groupMethods); + Set memberNames = new HashSet<>(); + for (ImMethod m : groupMethods) { + memberNames.add(m.getName()); + } Set slotNames = collectDispatchSlotNames(c, groupMethods); for (String slotName : slotNames) { + if (!memberNames.contains(slotName)) { + continue; + } + ImMethod current = slotToImpl.get(slotName); + if (current == null || !directSlots.contains(slotName) + || compareDispatchCandidates(c, chosen, current) < 0) { + slotToImpl.put(slotName, chosen); + } + directSlots.add(slotName); + } + debugDispatchGroup(c, groupMethods.get(0).getName(), slotNames, groupMethods, chosen); + } + for (List groupMethods : preparedGroups) { + ImMethod chosen = chosenByGroup.get(groupMethods); + Set memberNames = new HashSet<>(); + for (ImMethod m : groupMethods) { + memberNames.add(m.getName()); + } + for (String slotName : collectDispatchSlotNames(c, groupMethods)) { + if (memberNames.contains(slotName)) { + continue; + } ImMethod current = slotToImpl.get(slotName); + if (current != null && directSlots.contains(slotName) + && implArity(chosen) != implArity(current)) { + continue; + } if (current == null || compareDispatchCandidates(c, chosen, current) < 0) { slotToImpl.put(slotName, chosen); } } - String debugKey = groupMethods.get(0).getName(); - debugDispatchGroup(c, debugKey, slotNames, groupMethods, chosen); } + + // Constructor helpers (create, create1, ...) live in the same class-table + // key namespace as dispatch slots. If a slot would overwrite this class's + // constructor at main() time, rename the constructor instead (allocation + // sites reference the shared LuaMethod object, so a rename is safe here). + LuaMethod initMethod = luaClassInitMethod.getFor(c); + while (slotToImpl.containsKey(initMethod.getName())) { + initMethod.setName(uniqueName(c.getName() + "_create")); + } + for (Map.Entry e : slotToImpl.entrySet()) { ImMethod impl = e.getValue(); if (impl == null || impl.getImplementation() == null) { @@ -917,6 +991,10 @@ private void collectMethodsInHierarchy(ImClass c, List out, Set candidates) { List concrete = new ArrayList<>(); for (ImMethod m : candidates) { @@ -1069,11 +1147,6 @@ private String classSortKey(ImClass c) { return c.getName(); } - @NotNull - private LuaTableConstructor emptyTable() { - return LuaAst.LuaTableConstructor(LuaAst.LuaTableFields()); - } - private void collectSuperClasses(LuaTableFields superClasses, ImClass c, Set visited) { if (visited.contains(c)) { return; @@ -1215,3 +1288,4 @@ public String getTypeCastingFunctionName(ImFunction f) { return null; } } + diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/RemoveGarbage.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/RemoveGarbage.java index 7b9a71271..7c2fb7582 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/RemoveGarbage.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/RemoveGarbage.java @@ -191,7 +191,10 @@ private static void visitMethod(ImMethod m, Used used) { } used.addMethod(m); visitClass(m.getMethodClass().getClassDef(), used); - visitFunction(m.getImplementation(), used); + if (m.getImplementation() != null) { + // abstract methods can have no implementation + visitFunction(m.getImplementation(), used); + } for (ImMethod subMethod : m.getSubMethods()) { used.maybeVisitMethod(subMethod); } diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/StmtTranslation.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/StmtTranslation.java index 629ef44a6..6afb1d8e7 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/StmtTranslation.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/lua/translation/StmtTranslation.java @@ -31,11 +31,10 @@ private static void emitLuaInitXpcall(ImFunction initFunc, List re + " xpcall(function() " + ExprTranslation.callErrorFunc(tr, "tostring(err)") + " end," + " function(err2) if err2 == \"" + WURST_ABORT_THREAD_SENTINEL + "\" then return end" + " BJDebugMsg(\"error reporting error: \" .. tostring(err2)) end) end"; - res.add(LuaAst.LuaLiteral("do")); - res.add(LuaAst.LuaLiteral(" local __wurst_init_ok = xpcall(" + funcName + ", " + errHandler + ")")); - res.add(LuaAst.LuaLiteral(" if not __wurst_init_ok then")); - res.add(LuaAst.LuaLiteral(" " + ExprTranslation.callErrorFunc(tr, "\"Could not initialize package " + packageName + ".\"") + "")); - res.add(LuaAst.LuaLiteral(" end")); + // no local/do-block: locals hidden in literals are invisible to the + // 200-locals accounting in enforceLuaLocalLimits + res.add(LuaAst.LuaLiteral("if not xpcall(" + funcName + ", " + errHandler + ") then")); + res.add(LuaAst.LuaLiteral(" " + ExprTranslation.callErrorFunc(tr, "\"Could not initialize package " + packageName + ".\""))); res.add(LuaAst.LuaLiteral("end")); } @@ -82,14 +81,24 @@ public static void translate(ImSet s, List res, LuaTranslator tr) public static void translate(ImVarargLoop loop, List res, LuaTranslator tr) { LuaVariable loopVar = tr.luaVar.getFor(loop.getLoopVar()); -// res.add(loopVar); - String argsName = tr.uniqueName("__args"); - LuaVariable i = LuaAst.LuaVariable(tr.uniqueName("i"), LuaAst.LuaExprIntVal("0")); - res.add(LuaAst.LuaLiteral("local " + argsName + " = table.pack(...)")); - res.add(LuaAst.LuaLiteral("for " + i.getName() + "=1," + argsName + ".n do")); - res.add(LuaAst.LuaAssignment(LuaAst.LuaExprVarAccess(loopVar), LuaAst.LuaExprArrayAccess(LuaAst.LuaLiteral(argsName), LuaAst.LuaExprlist(LuaAst.LuaExprVarAccess(i))))); - tr.translateStatements(res, loop.getBody()); - res.add(LuaAst.LuaLiteral("end")); + // The loop is built from real AST nodes (a while loop) instead of literal + // 'for ... do' / 'end' lines: the printer stops printing a statement list + // after a return/break (Lua forbids trailing statements), which would + // truncate a literal closing 'end' and produce unparseable output. + LuaVariable args = LuaAst.LuaVariable(tr.uniqueName("__args"), LuaAst.LuaLiteral("table.pack(...)")); + LuaVariable i = LuaAst.LuaVariable(tr.uniqueName("__i"), LuaAst.LuaExprIntVal("0")); + res.add(args); + res.add(i); + LuaStatements body = LuaAst.LuaStatements(); + body.add(LuaAst.LuaAssignment(LuaAst.LuaExprVarAccess(i), + LuaAst.LuaExprBinary(LuaAst.LuaExprVarAccess(i), LuaAst.LuaOpPlus(), LuaAst.LuaExprIntVal("1")))); + body.add(LuaAst.LuaAssignment(LuaAst.LuaExprVarAccess(loopVar), + LuaAst.LuaExprArrayAccess(LuaAst.LuaExprVarAccess(args), LuaAst.LuaExprlist(LuaAst.LuaExprVarAccess(i))))); + tr.translateStatements(body, loop.getBody()); + res.add(LuaAst.LuaWhile( + LuaAst.LuaExprBinary(LuaAst.LuaExprVarAccess(i), LuaAst.LuaOpLess(), + LuaAst.LuaExprFieldAccess(LuaAst.LuaExprVarAccess(args), "n")), + body)); } } diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java new file mode 100644 index 000000000..d4e969215 --- /dev/null +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java @@ -0,0 +1,378 @@ +package tests.wurstscript.tests; + +import com.google.common.base.Charsets; +import com.google.common.io.Files; +import org.testng.annotations.Test; + +import java.io.File; +import java.io.IOException; + +import static org.testng.AssertJUnit.assertFalse; +import static org.testng.AssertJUnit.assertTrue; + +/** + * Regression tests for the Wurst -> Lua backend audit. + * + * Each test is a minimal repro for a concrete emitted-code bug. All tests use + * {@code testLua(true)}, which syntax-checks the generated Lua with luac; + * several bugs manifest directly as luac syntax errors. Behavioral properties + * are additionally asserted structurally on the generated source. + */ +public class LuaBackendAuditTests extends WurstScriptTest { + + private String compiledLua(String testName) throws IOException { + return Files.toString(new File("test-output/lua/LuaBackendAuditTests_" + testName + ".lua"), Charsets.UTF_8); + } + + /** + * A bare {@code return} inside a vararg loop used to truncate the literal + * {@code end} that closed the loop, producing unparseable Lua + * (caught here by the luac syntax check). + */ + @Test + public void varargLoopWithBareReturn() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "function firstOr(vararg int xs) returns int", + " for x in xs", + " return x", + " return -1", + "init", + " if firstOr(7, 8) == 7", + " testSuccess()" + ); + String compiled = compiledLua("varargLoopWithBareReturn"); + // the loop must be built from real AST nodes, not from literal for/end lines + assertFalse("vararg loop must not be emitted via literal 'for' lines", + compiled.contains("for i=1,")); + } + + /** + * All fields of a class hierarchy are flattened into one instance table. + * A closure-captured local whose name collides with an (IM-prefixed) + * superclass field name used to silently alias that field: both ended up + * as the same table key, so writes to one clobbered the other. + */ + @Test + public void hierarchyFieldsDoNotAlias() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "abstract class Cb", + " int y = 100", + " abstract function run() returns int", + " function base() returns int", + " return y", + "init", + " let Cb_y = 5", + " Cb c = () -> Cb_y", + " if c.run() == 5 and c.base() == 100", + " testSuccess()" + ); + String compiled = compiledLua("hierarchyFieldsDoNotAlias"); + // no allocation table may contain the same key twice + java.util.regex.Matcher m = java.util.regex.Pattern + .compile("\\(\\{([^}]*)\\}\\)").matcher(compiled); + while (m.find()) { + String[] keys = m.group(1).split(","); + java.util.Set seen = new java.util.HashSet<>(); + for (String entry : keys) { + int eq = entry.indexOf('='); + if (eq > 0) { + String key = entry.substring(0, eq).trim(); + assertTrue("duplicate field key '" + key + "' in allocation table: " + m.group(0), + seen.add(key)); + } + } + } + } + + /** + * Constructor helper methods are named create, create1, create2, ... in + * class-translation order, while method dispatch slots use (normalized) + * user method names. Both live in the same class-table key namespace, so + * a user method whose dispatch slot name equals a class's constructor + * name used to overwrite the constructor at main() time: allocations then + * called the user method instead of the constructor. + */ + @Test + public void dispatchSlotMustNotStompConstructor() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "interface I", // class 0 -> constructor "create" + " function create2() returns int", // bare slot name "create2" + " return 42", + "class A", // class 1 -> constructor "create1" + "class C implements I", // class 2 -> constructor "create2" + " int v = 7", + "init", + " let a = new A()", + " let c = new C()", + " if c.v == 7 and c.create2() == 42 and a != null", + " testSuccess()" + ); + String compiled = compiledLua("dispatchSlotMustNotStompConstructor"); + // no class may have a dispatch slot assigned over its own constructor: + // for every "function X:NAME(" definition there must be no "X.NAME =" assignment + java.util.regex.Matcher m = java.util.regex.Pattern + .compile("function\\s+([A-Za-z0-9_]+):(create\\d*)\\s*\\(").matcher(compiled); + while (m.find()) { + String cls = m.group(1); + String ctor = m.group(2); + assertFalse("constructor " + cls + ":" + ctor + " is overwritten by a dispatch slot assignment", + compiled.contains(cls + "." + ctor + " =")); + } + } + + /** + * Dispatch alias generation derives a "semantic name" from everything + * after the last underscore of a method name. A user method containing + * an underscore (my_x) therefore produced phantom alias slots + * (Base_x, Child_x) that collided with the real dispatch slot of an + * unrelated method named x — and could win the slot, so calls to x() + * dispatched into my_x(int) with a missing argument. + */ + @Test + public void underscoreMethodNamesDoNotStompUnrelatedDispatchSlots() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "class Base", + " function x() returns int", + " return 1", + "class Child extends Base", + " function my_x(int i) returns int", + " return i + 100", + "class Child2 extends Base", + " override function x() returns int", + " return 2", + "init", + " Base b = new Child()", + " Base b2 = new Child2()", + " let c = new Child()", + " if b.x() == 1 and b2.x() == 2 and c.my_x(1) == 101", + " testSuccess()" + ); + String compiled = compiledLua("underscoreMethodNamesDoNotStompUnrelatedDispatchSlots"); + assertFalse("phantom semantic slot must not bind my_x over the real x dispatch slot", + compiled.contains("Child.Base_x = Child_Child_my_x")); + } + + private static final String[] DIV_MOD_PROG = { + "package Test", + "native testSuccess()", + "function d(int a, int b) returns int", + " return a div b", + "function m(int a, int b) returns int", + " return a mod b", + "init", + " if d(-7, 2) == -3 and m(-7, 2) == 1 and d(7, -2) == -3 and m(7, -2) == 1", + " if d(7, 2) == 3 and m(7, 2) == 1 and d(-8, 2) == -4 and m(-8, 2) == 0", + " testSuccess()" + }; + + /** + * Reference semantics: integer div truncates toward zero and mod follows + * Blizzard.j's ModuloInteger (truncated remainder, plus divisor when + * negative). This guards the interpreter/Jass behavior the Lua backend + * must match. + */ + @Test + public void integerDivModReferenceSemanticsInInterpreter() { + test().executeProg().lines(DIV_MOD_PROG); + } + + /** + * The Lua backend used to emit floored {@code //} for div and + * {@code math.floor(a % b)} for mod, which disagree with the Jass + * backend and the interpreter for negative operands + * (e.g. -7 div 2 was -4 instead of -3, and 7 mod -2 was -1 instead of 1). + */ + @Test + public void integerDivModMatchJassSemanticsInLua() throws IOException { + test().testLua(true).executeProg().lines(DIV_MOD_PROG); + String compiled = compiledLua("integerDivModMatchJassSemanticsInLua"); + assertTrue("div must go through the truncating intDiv helper", + compiled.contains("return intDiv(")); + assertTrue("mod must go through the ModuloInteger-compatible wurstMod helper", + compiled.contains("return wurstMod(")); + assertFalse("mod must not use math.floor over Lua's floored %", + compiled.contains("math.floor")); + } + + /** + * String concatenation is lowered to a synthetic stringConcat IM function; + * the Lua polyfill and the call sites used to be linked only by both + * happening to print the same name. This guards that a user function named + * stringConcat neither breaks concatenation nor gets hijacked. + */ + @Test + public void userFunctionNamedStringConcatDoesNotBreakConcatenation() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "function stringConcat(string a, string b) returns string", + " return \"wrong\"", + "function join(string a, string b) returns string", + " return a + b", + "init", + " if join(\"a\", \"b\") == \"ab\" and stringConcat(\"a\", \"b\") == \"wrong\"", + " testSuccess()" + ); + String compiled = compiledLua("userFunctionNamedStringConcatDoesNotBreakConcatenation"); + assertTrue("user stringConcat must be renamed away from the polyfill", + compiled.contains("function stringConcat1(")); + } + + /** + * Deferred bootstrap (global defaults, class dispatch tables, typecasting + * maps) used to be prepended only to main(). WC3 calls config() before + * main(), so any translated global or class metadata reachable from + * config saw nil. Both entry points must run the bootstrap first. + */ + @Test + public void deferredInitRunsForConfigToo() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "class C", + " function f() returns int", + " return 1", + "int array counts", + "init", + " let c = new C()", + " counts[3] = c.f()", + " if counts[3] == 1", + " testSuccess()" + ); + String compiled = compiledLua("deferredInitRunsForConfigToo"); + java.util.regex.Matcher main = java.util.regex.Pattern + .compile("function main\\(\\)\\s*\\n\\s*([A-Za-z0-9_]+)\\(").matcher(compiled); + assertTrue("main must start with the bootstrap call", main.find()); + String bootstrapCall = main.group(1); + assertTrue("bootstrap helper must be a __wurst function but was " + bootstrapCall, + bootstrapCall.startsWith("__wurst")); + java.util.regex.Matcher config = java.util.regex.Pattern + .compile("function config\\(\\)\\s*\\n\\s*" + java.util.regex.Pattern.quote(bootstrapCall) + "\\(").matcher(compiled); + assertTrue("config must start with the same bootstrap call", config.find()); + } + + /** + * Instances used to get a fresh {@code {__index = Class}} metatable per + * allocation — pure garbage. All instances of a class share one metatable. + */ + @Test + public void classInstancesShareOneMetatablePerClass() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "class Foo", + " int v = 1", + "init", + " let a = new Foo()", + " let b = new Foo()", + " if a.v + b.v == 2 and a != b", + " testSuccess()" + ); + String compiled = compiledLua("classInstancesShareOneMetatablePerClass"); + assertTrue("expected a shared per-class metatable variable", + compiled.contains("Foo_mt = ({__index=Foo, })")); + assertFalse("create must not allocate a metatable per instance", + compiled.contains("setmetatable(new_inst, ({")); + } + + /** + * The defaultArray metatable used to store the default value on every + * read miss, so merely probing a sparse array permanently materialized an + * entry per probed key. Immutable defaults are now returned without + * storing; only table-typed defaults (tuples, nested arrays) keep the + * store-on-first-read behavior for slot identity. + */ + @Test + public void primitiveArrayReadsDoNotMaterializeEntries() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "int array counts", + "tuple pair(int x, int y)", + "pair array ps", + "init", + " counts[5] = 2", + " ps[2] = pair(4, 5)", + " let unset = ps[7]", + " if counts[3] + counts[5] == 2 and ps[2].x == 4 and unset.y == 0", + " testSuccess()" + ); + String compiled = compiledLua("primitiveArrayReadsDoNotMaterializeEntries"); + assertTrue("defaultArray must branch on the default value's type", + compiled.contains("local dv = d()")); + } + + /** + * {@code goto} is a reserved word in Lua 5.3 but was missing from the + * translator's reserved-name list, so a Wurst local named {@code goto} + * produced {@code local goto = ...} (a Lua syntax error). + */ + @Test + public void gotoIsRenamed() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "init", + " let goto = 1", + " if goto == 1", + " testSuccess()" + ); + } + + /** + * The emitted runtime helpers depend on Lua standard library globals + * (math, table, string, setmetatable, ...). User identifiers with those + * names used to keep their name and clobber the library at map load. + */ + @Test + public void luaStdlibGlobalsAreNotClobbered() throws IOException { + // package globals are package-prefixed by the IM translator, but + // top-level functions and locals keep their plain names + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "function math(int x) returns int", + " let table = x", + " return table", + "init", + " if math(4) mod 3 == 1", + " testSuccess()" + ); + String compiled = compiledLua("luaStdlibGlobalsAreNotClobbered"); + assertFalse("user function must not shadow Lua's math library", + compiled.contains("function math(")); + assertFalse("user local must not shadow Lua's table library", + compiled.contains("local table =")); + } + + /** + * Field names are printed verbatim as table keys / field accesses. + * Regular class fields are scope-prefixed by the IM translator, but + * closure-captured locals become fields with their raw source name, so a + * captured local named after a Lua keyword (until, local, ...) used to + * produce {@code obj.until} — a syntax error. + */ + @Test + public void luaKeywordFieldNamesAreRenamed() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "interface IntProvider", + " function get() returns int", + "init", + " let until = 3", + " let local = 4", + " IntProvider p = () -> until + local", + " if p.get() == 7", + " testSuccess()" + ); + } +} diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaNativesTests.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaNativesTests.java index 3e9f816a1..7c36f8198 100644 --- a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaNativesTests.java +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaNativesTests.java @@ -5,6 +5,7 @@ import de.peeeq.wurstscript.translation.lua.translation.LuaNatives; import org.testng.annotations.Test; +import static org.testng.AssertJUnit.assertFalse; import static org.testng.AssertJUnit.assertTrue; public class LuaNativesTests { @@ -27,7 +28,18 @@ public void s2iUsesPrefixIntegerParsing() { @Test public void r2iUsesTruncationTowardZero() { String rendered = renderNative("R2I"); - assertTrue(rendered.contains("return math.modf(x)")); + // math.modf must not be used: it returns two values (which expand + // into enclosing argument lists) and a float integral part + assertFalse(rendered.contains("math.modf")); + assertTrue(rendered.contains("return math.floor(x)")); + assertTrue(rendered.contains("return math.ceil(x)")); + } + + @Test + public void playerHandlesAreCachedForIdentityComparisons() { + String rendered = renderNative("Player"); + assertTrue(rendered.contains("__wurst_test_players")); + assertTrue(rendered.contains("return p")); } @Test diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTranslationTests.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTranslationTests.java index 8933d24f7..37cf36ad4 100644 --- a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTranslationTests.java +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTranslationTests.java @@ -10,7 +10,6 @@ import de.peeeq.wurstscript.gui.WurstGuiCliImpl; import de.peeeq.wurstscript.luaAst.LuaCompilationUnit; import de.peeeq.wurstscript.validation.GlobalCaches; -import org.testng.annotations.Ignore; import org.testng.annotations.Test; import java.io.File; @@ -74,6 +73,17 @@ private static void requireSelectiveGetHandleIdShimming() { } } + /** + * Returns the text of the __wurst_init_bootstrap function (it is the last + * function in the generated output; getFunctionBody cannot be used because + * the guard line "if ... then return end" contains an early 'end'). + */ + private String bootstrapSection(String compiled) { + int pos = compiled.indexOf("function __wurst_init_bootstrap("); + assertTrue("expected a __wurst_init_bootstrap function", pos >= 0); + return compiled.substring(pos); + } + private String getFunctionBody(String output, String functionName) { Pattern pattern = Pattern.compile("function\\s*" + functionName + "\\s*\\(.*\\).*\\n" + "((?:\\n|.)*?)end"); Matcher matcher = pattern.matcher(output); @@ -274,7 +284,6 @@ public void noContinueDoesNotEmitContinueFlagInLua() throws IOException { assertFalse("continue flag helper should not be emitted when no continue is present", compiled.contains("continueFlag_")); } - @Ignore @Test public void testExecution() { test().testLua(true).executeProg().lines( @@ -310,7 +319,6 @@ public void nullString2() throws IOException { assertFunctionCall(compiled, "takesString", "\"\""); } - @Ignore @Test public void nullString3() { test().testLua(true).executeProg().lines( @@ -1031,13 +1039,15 @@ public void luaHeavyBootstrapStateIsSeededFromMain() throws IOException { String compiled = Files.toString(new File("test-output/lua/LuaTranslationTests_luaHeavyBootstrapStateIsSeededFromMain.lua"), Charsets.UTF_8); int mainPos = compiled.indexOf("function main("); assertTrue(mainPos >= 0); - int configPos = compiled.indexOf("function config(", mainPos); - String mainSection = compiled.substring(mainPos, configPos > mainPos ? configPos : compiled.length()); String beforeMain = compiled.substring(0, mainPos); + // heavy state must not be seeded at the root of the script assertFalse(beforeMain.contains("__wurst_objectIndexMap = ({")); assertFalse(beforeMain.contains("__wurst_string_index_map = ({")); - assertTrue(mainSection.contains("__wurst_objectIndexMap = ({")); - assertTrue(mainSection.contains("__wurst_string_index_map = ({")); + // it is seeded from the guarded bootstrap function, which main calls first + String bootstrap = bootstrapSection(compiled); + assertTrue(bootstrap.contains("__wurst_objectIndexMap = ({")); + assertTrue(bootstrap.contains("__wurst_string_index_map = ({")); + assertContainsRegex(compiled, "function main\\(\\)\\s*\\n\\s*__wurst_init_bootstrap\\("); } @Test @@ -1055,14 +1065,16 @@ public void luaClassDispatchTablesAreInitializedInsideMain() throws IOException String compiled = Files.toString(new File("test-output/lua/LuaTranslationTests_luaClassDispatchTablesAreInitializedInsideMain.lua"), Charsets.UTF_8); int mainPos = compiled.indexOf("function main("); assertTrue(mainPos >= 0); - int configPos = compiled.indexOf("function config(", mainPos); - String mainSection = compiled.substring(mainPos, configPos > mainPos ? configPos : compiled.length()); String beforeMain = compiled.substring(0, mainPos); + // dispatch tables must not be initialized at the root of the script assertFalse(beforeMain.contains("A.__wurst_supertypes =")); assertFalse(beforeMain.contains("A.__typeId__ =")); - assertTrue(mainSection.contains("A.__wurst_supertypes =")); - assertTrue(mainSection.contains("A.__typeId__ =")); - assertTrue(mainSection.contains("A.A_f =")); + // they are initialized by the guarded bootstrap function, called from main + String bootstrap = bootstrapSection(compiled); + assertTrue(bootstrap.contains("A.__wurst_supertypes =")); + assertTrue(bootstrap.contains("A.__typeId__ =")); + assertTrue(bootstrap.contains("A.A_f =")); + assertContainsRegex(compiled, "function main\\(\\)\\s*\\n\\s*__wurst_init_bootstrap\\("); } @Test @@ -1083,11 +1095,14 @@ public void luaDeferredBootstrapRunsBeforeInitGlobalsInMain() throws IOException int configPos = compiled.indexOf("function config(", mainPos); String mainSection = compiled.substring(mainPos, configPos > mainPos ? configPos : compiled.length()); - assertOccursBefore(mainSection, "__wurst_objectIndexMap = ({", "initGlobals()"); - assertOccursBefore(mainSection, "__wurst_string_index_map = ({", "initGlobals()"); - assertOccursBefore(mainSection, "C.__wurst_supertypes =", "initGlobals()"); - assertOccursBefore(mainSection, "C.__typeId__ =", "initGlobals()"); - assertOccursBefore(mainSection, "C.C_f =", "initGlobals()"); + // main must run the deferred bootstrap before user global initializers + assertOccursBefore(mainSection, "__wurst_init_bootstrap(", "initGlobals()"); + String bootstrap = bootstrapSection(compiled); + assertTrue(bootstrap.contains("__wurst_objectIndexMap = ({")); + assertTrue(bootstrap.contains("__wurst_string_index_map = ({")); + assertTrue(bootstrap.contains("C.__wurst_supertypes =")); + assertTrue(bootstrap.contains("C.__typeId__ =")); + assertTrue(bootstrap.contains("C.C_f =")); } @Test @@ -1865,8 +1880,7 @@ public void stdLibInitUsesXpcallInsteadOfTriggerEvaluateInMain() throws IOExcept ); String compiled = Files.toString(new File("test-output/lua/LuaTranslationTests_stdLibInitUsesXpcallInsteadOfTriggerEvaluateInMain.lua"), Charsets.UTF_8); // Package inits use direct xpcall — no WC3 trigger handle overhead - assertTrue(compiled.contains("xpcall(init_")); - assertTrue(compiled.contains("__wurst_init_ok")); + assertTrue(compiled.contains("if not xpcall(init_")); // TriggerEvaluate pattern must NOT appear for init functions assertFalse(compiled.contains("if not(TriggerEvaluate(")); assertFalse(compiled.contains("TriggerClearConditions")); diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTypecastingTests.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTypecastingTests.java index fe9cd96c3..5d5f94a60 100644 --- a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTypecastingTests.java +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaTypecastingTests.java @@ -255,11 +255,15 @@ public void luaFramehandleFromIndexDoesNotUseFogstateHashtablePath() throws IOEx Pattern.MULTILINE ); assertTrue(unitFromIndexUsesLuaHelper.matcher(compiled).find()); - Pattern unitFromIndexSavesFog = Pattern.compile( - "function\\s+unitFromIndex\\([^)]*\\)[\\s\\S]*?Table_saveFogState[\\s\\S]*?\\nend", + // constrain to the function body (up to the first closing 'end'), + // otherwise the match can leak into later functions + Pattern unitFromIndexBody = Pattern.compile( + "function\\s+unitFromIndex\\([^)]*\\)\\s*\\n([\\s\\S]*?)\\nend", Pattern.MULTILINE ); - assertFalse(unitFromIndexSavesFog.matcher(compiled).find()); + java.util.regex.Matcher bodyMatcher = unitFromIndexBody.matcher(compiled); + assertTrue(bodyMatcher.find()); + assertFalse(bodyMatcher.group(1).contains("Table_saveFogState")); } @Test diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java index 65178a524..b79f3e4e0 100644 --- a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java @@ -518,12 +518,32 @@ private void translateAndTestLua(String name, boolean executeProg, WurstGui gui, checkLuaSyntax(luacExecutable, luaFile); if (executeProg) { - String luaExecutable = getLuaExecutable(); + String luaExecutable; + try { + luaExecutable = getLuaExecutable(); + } catch (IllegalStateException e) { + throw new org.testng.SkipException( + "Skipped Lua execution (translation and luac syntax check still ran): " + e.getMessage()); + } String line; + // Preload the WC3 Lua runtime (Reforged blizzard.j dump + native shim) + // when available, so tests execute against real BJ implementations. + // The generated script only installs fallbacks for natives that are + // still undefined afterwards. + StringBuilder chunk = new StringBuilder(); + File runtimeDir = new File("src/test/resources/luaruntime"); + if (new File(runtimeDir, "wc3shim.lua").exists()) { + for (String runtimeFile : new String[]{"wc3shim.lua", "common.j.lua", "blizzard.j.lua"}) { + chunk.append("dofile('") + .append(new File(runtimeDir, runtimeFile).getPath().replace('\\', '/')) + .append("');"); + } + } + chunk.append("dofile('").append(luaFile.getPath().replace('\\', '/')).append("');"); + chunk.append("main()"); String[] args = { luaExecutable, - "-l", luaFile.getPath().replace(".lua", ""), - "-e", "main()" + "-e", chunk.toString() }; Process p = Runtime.getRuntime().exec(args); StringBuilder errors = new StringBuilder(); diff --git a/de.peeeq.wurstscript/src/test/resources/luaruntime/README.md b/de.peeeq.wurstscript/src/test/resources/luaruntime/README.md new file mode 100644 index 000000000..ab8f9c62e --- /dev/null +++ b/de.peeeq.wurstscript/src/test/resources/luaruntime/README.md @@ -0,0 +1,24 @@ +# Lua test runtime + +Enables executing translated Lua output (`test().testLua(true).executeProg()`) +against the real Blizzard.j implementations instead of minimal mocks. + +- `common.j.lua`, `blizzard.j.lua`: Reforged Lua dumps from + (`lua-dump/`). +- `wc3shim.lua`: hand-written shim providing the natives those two files need + at load time (TypeDefine, Convert* enum-handle factories, `__jarray`, + FourCC, player-layout constants, text output). + +Load order in `WurstScriptTest.translateAndTestLua`: +`wc3shim.lua` → `common.j.lua` → `blizzard.j.lua` → generated script → `main()`. + +The generated script only installs its own fallback for a native if it is +still undefined after these files are loaded (guarded `if X then ... end`), +so real BJ implementations always win. + +Execution additionally requires a Lua 5.3 interpreter: either +`src/test/resources/lua53.exe` (+ `lua53.dll`) on Windows / +`src/test/resources/lua53` on Linux (official binaries from +, version 5.3.6), or `lua53`/`lua` on +the PATH. If none is found, executeProg Lua tests are skipped with a +SkipException. diff --git a/de.peeeq.wurstscript/src/test/resources/luaruntime/blizzard.j.lua b/de.peeeq.wurstscript/src/test/resources/luaruntime/blizzard.j.lua new file mode 100644 index 000000000..5fe3f6f01 --- /dev/null +++ b/de.peeeq.wurstscript/src/test/resources/luaruntime/blizzard.j.lua @@ -0,0 +1,7980 @@ +bj_PI = 3.14159 +bj_E = 2.71828 +bj_CELLWIDTH = 128.0 +bj_CLIFFHEIGHT = 128.0 +bj_UNIT_FACING = 270.0 +bj_RADTODEG = 180.0 / bj_PI +bj_DEGTORAD = bj_PI / 180.0 +bj_TEXT_DELAY_QUEST = 20.00 +bj_TEXT_DELAY_QUESTUPDATE = 20.00 +bj_TEXT_DELAY_QUESTDONE = 20.00 +bj_TEXT_DELAY_QUESTFAILED = 20.00 +bj_TEXT_DELAY_QUESTREQUIREMENT = 20.00 +bj_TEXT_DELAY_MISSIONFAILED = 20.00 +bj_TEXT_DELAY_ALWAYSHINT = 12.00 +bj_TEXT_DELAY_HINT = 12.00 +bj_TEXT_DELAY_SECRET = 10.00 +bj_TEXT_DELAY_UNITACQUIRED = 15.00 +bj_TEXT_DELAY_UNITAVAILABLE = 10.00 +bj_TEXT_DELAY_ITEMACQUIRED = 10.00 +bj_TEXT_DELAY_WARNING = 12.00 +bj_QUEUE_DELAY_QUEST = 5.00 +bj_QUEUE_DELAY_HINT = 5.00 +bj_QUEUE_DELAY_SECRET = 3.00 +bj_HANDICAP_EASY = 60.00 +bj_HANDICAP_NORMAL = 90.00 +bj_HANDICAPDAMAGE_EASY = 50.00 +bj_HANDICAPDAMAGE_NORMAL = 90.00 +bj_HANDICAPREVIVE_NOTHARD = 50.00 +bj_GAME_STARTED_THRESHOLD = 0.01 +bj_WAIT_FOR_COND_MIN_INTERVAL = 0.10 +bj_POLLED_WAIT_INTERVAL = 0.10 +bj_POLLED_WAIT_SKIP_THRESHOLD = 2.00 +bj_MAX_INVENTORY = 6 +bj_MAX_PLAYERS = GetBJMaxPlayers() +bj_PLAYER_NEUTRAL_VICTIM = GetBJPlayerNeutralVictim() +bj_PLAYER_NEUTRAL_EXTRA = GetBJPlayerNeutralExtra() +bj_MAX_PLAYER_SLOTS = GetBJMaxPlayerSlots() +bj_MAX_SKELETONS = 25 +bj_MAX_STOCK_ITEM_SLOTS = 11 +bj_MAX_STOCK_UNIT_SLOTS = 11 +bj_MAX_ITEM_LEVEL = 10 +bj_MAX_CHECKPOINTS = 5 +bj_TOD_DAWN = 6.00 +bj_TOD_DUSK = 18.00 +bj_MELEE_STARTING_TOD = 8.00 +bj_MELEE_STARTING_GOLD_V0 = 750 +bj_MELEE_STARTING_GOLD_V1 = 500 +bj_MELEE_STARTING_LUMBER_V0 = 200 +bj_MELEE_STARTING_LUMBER_V1 = 150 +bj_MELEE_STARTING_HERO_TOKENS = 1 +bj_MELEE_HERO_LIMIT = 3 +bj_MELEE_HERO_TYPE_LIMIT = 1 +bj_MELEE_MINE_SEARCH_RADIUS = 2000.0 +bj_MELEE_CLEAR_UNITS_RADIUS = 1500.0 +bj_MELEE_CRIPPLE_TIMEOUT = 120.00 +bj_MELEE_CRIPPLE_MSG_DURATION = 20.00 +bj_MELEE_MAX_TWINKED_HEROES_V0 = 3 +bj_MELEE_MAX_TWINKED_HEROES_V1 = 1 +bj_CREEP_ITEM_DELAY = 0.50 +bj_STOCK_RESTOCK_INITIAL_DELAY = 120.0 +bj_STOCK_RESTOCK_INTERVAL = 30.0 +bj_STOCK_MAX_ITERATIONS = 20 +bj_MAX_DEST_IN_REGION_EVENTS = 64 +bj_CAMERA_MIN_FARZ = 100 +bj_CAMERA_DEFAULT_DISTANCE = 1650 +bj_CAMERA_DEFAULT_FARZ = 5000 +bj_CAMERA_DEFAULT_AOA = 304 +bj_CAMERA_DEFAULT_FOV = 70 +bj_CAMERA_DEFAULT_ROLL = 0 +bj_CAMERA_DEFAULT_ROTATION = 90 +bj_RESCUE_PING_TIME = 2.00 +bj_NOTHING_SOUND_DURATION = 5.00 +bj_TRANSMISSION_PING_TIME = 1.00 +bj_TRANSMISSION_IND_RED = 255 +bj_TRANSMISSION_IND_BLUE = 255 +bj_TRANSMISSION_IND_GREEN = 255 +bj_TRANSMISSION_IND_ALPHA = 255 +bj_TRANSMISSION_PORT_HANGTIME = 1.50 +bj_CINEMODE_INTERFACEFADE = 0.50 +bj_CINEMODE_GAMESPEED = MAP_SPEED_NORMAL +bj_CINEMODE_VOLUME_UNITMOVEMENT = 0.40 +bj_CINEMODE_VOLUME_UNITSOUNDS = 0.00 +bj_CINEMODE_VOLUME_COMBAT = 0.40 +bj_CINEMODE_VOLUME_SPELLS = 0.40 +bj_CINEMODE_VOLUME_UI = 0.00 +bj_CINEMODE_VOLUME_MUSIC = 0.55 +bj_CINEMODE_VOLUME_AMBIENTSOUNDS = 1.00 +bj_CINEMODE_VOLUME_FIRE = 0.60 +bj_SPEECH_VOLUME_UNITMOVEMENT = 0.25 +bj_SPEECH_VOLUME_UNITSOUNDS = 0.00 +bj_SPEECH_VOLUME_COMBAT = 0.25 +bj_SPEECH_VOLUME_SPELLS = 0.25 +bj_SPEECH_VOLUME_UI = 0.00 +bj_SPEECH_VOLUME_MUSIC = 0.55 +bj_SPEECH_VOLUME_AMBIENTSOUNDS = 1.00 +bj_SPEECH_VOLUME_FIRE = 0.60 +bj_SMARTPAN_TRESHOLD_PAN = 500.0 +bj_SMARTPAN_TRESHOLD_SNAP = 3500.0 +bj_MAX_QUEUED_TRIGGERS = 100 +bj_QUEUED_TRIGGER_TIMEOUT = 180.00 +bj_CAMPAIGN_INDEX_T = 0 +bj_CAMPAIGN_INDEX_H = 1 +bj_CAMPAIGN_INDEX_U = 2 +bj_CAMPAIGN_INDEX_O = 3 +bj_CAMPAIGN_INDEX_N = 4 +bj_CAMPAIGN_INDEX_XN = 5 +bj_CAMPAIGN_INDEX_XH = 6 +bj_CAMPAIGN_INDEX_XU = 7 +bj_CAMPAIGN_INDEX_XO = 8 +bj_CAMPAIGN_OFFSET_T = 0 +bj_CAMPAIGN_OFFSET_H = 1 +bj_CAMPAIGN_OFFSET_U = 2 +bj_CAMPAIGN_OFFSET_O = 3 +bj_CAMPAIGN_OFFSET_N = 4 +bj_CAMPAIGN_OFFSET_XN = 5 +bj_CAMPAIGN_OFFSET_XH = 6 +bj_CAMPAIGN_OFFSET_XU = 7 +bj_CAMPAIGN_OFFSET_XO = 8 +bj_MISSION_INDEX_T00 = bj_CAMPAIGN_OFFSET_T * 1000 + 0 +bj_MISSION_INDEX_T01 = bj_CAMPAIGN_OFFSET_T * 1000 + 1 +bj_MISSION_INDEX_T02 = bj_CAMPAIGN_OFFSET_T * 1000 + 2 +bj_MISSION_INDEX_T03 = bj_CAMPAIGN_OFFSET_T * 1000 + 3 +bj_MISSION_INDEX_T04 = bj_CAMPAIGN_OFFSET_T * 1000 + 4 +bj_MISSION_INDEX_H00 = bj_CAMPAIGN_OFFSET_H * 1000 + 0 +bj_MISSION_INDEX_H01 = bj_CAMPAIGN_OFFSET_H * 1000 + 1 +bj_MISSION_INDEX_H02 = bj_CAMPAIGN_OFFSET_H * 1000 + 2 +bj_MISSION_INDEX_H03 = bj_CAMPAIGN_OFFSET_H * 1000 + 3 +bj_MISSION_INDEX_H04 = bj_CAMPAIGN_OFFSET_H * 1000 + 4 +bj_MISSION_INDEX_H05 = bj_CAMPAIGN_OFFSET_H * 1000 + 5 +bj_MISSION_INDEX_H06 = bj_CAMPAIGN_OFFSET_H * 1000 + 6 +bj_MISSION_INDEX_H07 = bj_CAMPAIGN_OFFSET_H * 1000 + 7 +bj_MISSION_INDEX_H08 = bj_CAMPAIGN_OFFSET_H * 1000 + 8 +bj_MISSION_INDEX_H09 = bj_CAMPAIGN_OFFSET_H * 1000 + 9 +bj_MISSION_INDEX_H10 = bj_CAMPAIGN_OFFSET_H * 1000 + 10 +bj_MISSION_INDEX_H11 = bj_CAMPAIGN_OFFSET_H * 1000 + 11 +bj_MISSION_INDEX_U00 = bj_CAMPAIGN_OFFSET_U * 1000 + 0 +bj_MISSION_INDEX_U01 = bj_CAMPAIGN_OFFSET_U * 1000 + 1 +bj_MISSION_INDEX_U02 = bj_CAMPAIGN_OFFSET_U * 1000 + 2 +bj_MISSION_INDEX_U03 = bj_CAMPAIGN_OFFSET_U * 1000 + 3 +bj_MISSION_INDEX_U05 = bj_CAMPAIGN_OFFSET_U * 1000 + 4 +bj_MISSION_INDEX_U07 = bj_CAMPAIGN_OFFSET_U * 1000 + 5 +bj_MISSION_INDEX_U08 = bj_CAMPAIGN_OFFSET_U * 1000 + 6 +bj_MISSION_INDEX_U09 = bj_CAMPAIGN_OFFSET_U * 1000 + 7 +bj_MISSION_INDEX_U10 = bj_CAMPAIGN_OFFSET_U * 1000 + 8 +bj_MISSION_INDEX_U11 = bj_CAMPAIGN_OFFSET_U * 1000 + 9 +bj_MISSION_INDEX_O00 = bj_CAMPAIGN_OFFSET_O * 1000 + 0 +bj_MISSION_INDEX_O01 = bj_CAMPAIGN_OFFSET_O * 1000 + 1 +bj_MISSION_INDEX_O02 = bj_CAMPAIGN_OFFSET_O * 1000 + 2 +bj_MISSION_INDEX_O03 = bj_CAMPAIGN_OFFSET_O * 1000 + 3 +bj_MISSION_INDEX_O04 = bj_CAMPAIGN_OFFSET_O * 1000 + 4 +bj_MISSION_INDEX_O05 = bj_CAMPAIGN_OFFSET_O * 1000 + 5 +bj_MISSION_INDEX_O06 = bj_CAMPAIGN_OFFSET_O * 1000 + 6 +bj_MISSION_INDEX_O07 = bj_CAMPAIGN_OFFSET_O * 1000 + 7 +bj_MISSION_INDEX_O08 = bj_CAMPAIGN_OFFSET_O * 1000 + 8 +bj_MISSION_INDEX_O09 = bj_CAMPAIGN_OFFSET_O * 1000 + 9 +bj_MISSION_INDEX_O10 = bj_CAMPAIGN_OFFSET_O * 1000 + 10 +bj_MISSION_INDEX_N00 = bj_CAMPAIGN_OFFSET_N * 1000 + 0 +bj_MISSION_INDEX_N01 = bj_CAMPAIGN_OFFSET_N * 1000 + 1 +bj_MISSION_INDEX_N02 = bj_CAMPAIGN_OFFSET_N * 1000 + 2 +bj_MISSION_INDEX_N03 = bj_CAMPAIGN_OFFSET_N * 1000 + 3 +bj_MISSION_INDEX_N04 = bj_CAMPAIGN_OFFSET_N * 1000 + 4 +bj_MISSION_INDEX_N05 = bj_CAMPAIGN_OFFSET_N * 1000 + 5 +bj_MISSION_INDEX_N06 = bj_CAMPAIGN_OFFSET_N * 1000 + 6 +bj_MISSION_INDEX_N07 = bj_CAMPAIGN_OFFSET_N * 1000 + 7 +bj_MISSION_INDEX_N08 = bj_CAMPAIGN_OFFSET_N * 1000 + 8 +bj_MISSION_INDEX_N09 = bj_CAMPAIGN_OFFSET_N * 1000 + 9 +bj_MISSION_INDEX_XN00 = bj_CAMPAIGN_OFFSET_XN * 1000 + 0 +bj_MISSION_INDEX_XN01 = bj_CAMPAIGN_OFFSET_XN * 1000 + 1 +bj_MISSION_INDEX_XN02 = bj_CAMPAIGN_OFFSET_XN * 1000 + 2 +bj_MISSION_INDEX_XN03 = bj_CAMPAIGN_OFFSET_XN * 1000 + 3 +bj_MISSION_INDEX_XN04 = bj_CAMPAIGN_OFFSET_XN * 1000 + 4 +bj_MISSION_INDEX_XN05 = bj_CAMPAIGN_OFFSET_XN * 1000 + 5 +bj_MISSION_INDEX_XN06 = bj_CAMPAIGN_OFFSET_XN * 1000 + 6 +bj_MISSION_INDEX_XN07 = bj_CAMPAIGN_OFFSET_XN * 1000 + 7 +bj_MISSION_INDEX_XN08 = bj_CAMPAIGN_OFFSET_XN * 1000 + 8 +bj_MISSION_INDEX_XN09 = bj_CAMPAIGN_OFFSET_XN * 1000 + 9 +bj_MISSION_INDEX_XN10 = bj_CAMPAIGN_OFFSET_XN * 1000 + 10 +bj_MISSION_INDEX_XH00 = bj_CAMPAIGN_OFFSET_XH * 1000 + 0 +bj_MISSION_INDEX_XH01 = bj_CAMPAIGN_OFFSET_XH * 1000 + 1 +bj_MISSION_INDEX_XH02 = bj_CAMPAIGN_OFFSET_XH * 1000 + 2 +bj_MISSION_INDEX_XH03 = bj_CAMPAIGN_OFFSET_XH * 1000 + 3 +bj_MISSION_INDEX_XH04 = bj_CAMPAIGN_OFFSET_XH * 1000 + 4 +bj_MISSION_INDEX_XH05 = bj_CAMPAIGN_OFFSET_XH * 1000 + 5 +bj_MISSION_INDEX_XH06 = bj_CAMPAIGN_OFFSET_XH * 1000 + 6 +bj_MISSION_INDEX_XH07 = bj_CAMPAIGN_OFFSET_XH * 1000 + 7 +bj_MISSION_INDEX_XH08 = bj_CAMPAIGN_OFFSET_XH * 1000 + 8 +bj_MISSION_INDEX_XH09 = bj_CAMPAIGN_OFFSET_XH * 1000 + 9 +bj_MISSION_INDEX_XU00 = bj_CAMPAIGN_OFFSET_XU * 1000 + 0 +bj_MISSION_INDEX_XU01 = bj_CAMPAIGN_OFFSET_XU * 1000 + 1 +bj_MISSION_INDEX_XU02 = bj_CAMPAIGN_OFFSET_XU * 1000 + 2 +bj_MISSION_INDEX_XU03 = bj_CAMPAIGN_OFFSET_XU * 1000 + 3 +bj_MISSION_INDEX_XU04 = bj_CAMPAIGN_OFFSET_XU * 1000 + 4 +bj_MISSION_INDEX_XU05 = bj_CAMPAIGN_OFFSET_XU * 1000 + 5 +bj_MISSION_INDEX_XU06 = bj_CAMPAIGN_OFFSET_XU * 1000 + 6 +bj_MISSION_INDEX_XU07 = bj_CAMPAIGN_OFFSET_XU * 1000 + 7 +bj_MISSION_INDEX_XU08 = bj_CAMPAIGN_OFFSET_XU * 1000 + 8 +bj_MISSION_INDEX_XU09 = bj_CAMPAIGN_OFFSET_XU * 1000 + 9 +bj_MISSION_INDEX_XU10 = bj_CAMPAIGN_OFFSET_XU * 1000 + 10 +bj_MISSION_INDEX_XU11 = bj_CAMPAIGN_OFFSET_XU * 1000 + 11 +bj_MISSION_INDEX_XU12 = bj_CAMPAIGN_OFFSET_XU * 1000 + 12 +bj_MISSION_INDEX_XU13 = bj_CAMPAIGN_OFFSET_XU * 1000 + 13 +bj_MISSION_INDEX_XO00 = bj_CAMPAIGN_OFFSET_XO * 1000 + 0 +bj_MISSION_INDEX_XO01 = bj_CAMPAIGN_OFFSET_XO * 1000 + 1 +bj_MISSION_INDEX_XO02 = bj_CAMPAIGN_OFFSET_XO * 1000 + 2 +bj_MISSION_INDEX_XO03 = bj_CAMPAIGN_OFFSET_XO * 1000 + 3 +bj_CINEMATICINDEX_TOP = 0 +bj_CINEMATICINDEX_HOP = 1 +bj_CINEMATICINDEX_HED = 2 +bj_CINEMATICINDEX_OOP = 3 +bj_CINEMATICINDEX_OED = 4 +bj_CINEMATICINDEX_UOP = 5 +bj_CINEMATICINDEX_UED = 6 +bj_CINEMATICINDEX_NOP = 7 +bj_CINEMATICINDEX_NED = 8 +bj_CINEMATICINDEX_XOP = 9 +bj_CINEMATICINDEX_XED = 10 +bj_ALLIANCE_UNALLIED = 0 +bj_ALLIANCE_UNALLIED_VISION = 1 +bj_ALLIANCE_ALLIED = 2 +bj_ALLIANCE_ALLIED_VISION = 3 +bj_ALLIANCE_ALLIED_UNITS = 4 +bj_ALLIANCE_ALLIED_ADVUNITS = 5 +bj_ALLIANCE_NEUTRAL = 6 +bj_ALLIANCE_NEUTRAL_VISION = 7 +bj_KEYEVENTTYPE_DEPRESS = 0 +bj_KEYEVENTTYPE_RELEASE = 1 +bj_KEYEVENTKEY_LEFT = 0 +bj_KEYEVENTKEY_RIGHT = 1 +bj_KEYEVENTKEY_DOWN = 2 +bj_KEYEVENTKEY_UP = 3 +bj_MOUSEEVENTTYPE_DOWN = 0 +bj_MOUSEEVENTTYPE_UP = 1 +bj_MOUSEEVENTTYPE_MOVE = 2 +bj_TIMETYPE_ADD = 0 +bj_TIMETYPE_SET = 1 +bj_TIMETYPE_SUB = 2 +bj_CAMERABOUNDS_ADJUST_ADD = 0 +bj_CAMERABOUNDS_ADJUST_SUB = 1 +bj_QUESTTYPE_REQ_DISCOVERED = 0 +bj_QUESTTYPE_REQ_UNDISCOVERED = 1 +bj_QUESTTYPE_OPT_DISCOVERED = 2 +bj_QUESTTYPE_OPT_UNDISCOVERED = 3 +bj_QUESTMESSAGE_DISCOVERED = 0 +bj_QUESTMESSAGE_UPDATED = 1 +bj_QUESTMESSAGE_COMPLETED = 2 +bj_QUESTMESSAGE_FAILED = 3 +bj_QUESTMESSAGE_REQUIREMENT = 4 +bj_QUESTMESSAGE_MISSIONFAILED = 5 +bj_QUESTMESSAGE_ALWAYSHINT = 6 +bj_QUESTMESSAGE_HINT = 7 +bj_QUESTMESSAGE_SECRET = 8 +bj_QUESTMESSAGE_UNITACQUIRED = 9 +bj_QUESTMESSAGE_UNITAVAILABLE = 10 +bj_QUESTMESSAGE_ITEMACQUIRED = 11 +bj_QUESTMESSAGE_WARNING = 12 +bj_SORTTYPE_SORTBYVALUE = 0 +bj_SORTTYPE_SORTBYPLAYER = 1 +bj_SORTTYPE_SORTBYLABEL = 2 +bj_CINEFADETYPE_FADEIN = 0 +bj_CINEFADETYPE_FADEOUT = 1 +bj_CINEFADETYPE_FADEOUTIN = 2 +bj_REMOVEBUFFS_POSITIVE = 0 +bj_REMOVEBUFFS_NEGATIVE = 1 +bj_REMOVEBUFFS_ALL = 2 +bj_REMOVEBUFFS_NONTLIFE = 3 +bj_BUFF_POLARITY_POSITIVE = 0 +bj_BUFF_POLARITY_NEGATIVE = 1 +bj_BUFF_POLARITY_EITHER = 2 +bj_BUFF_RESIST_MAGIC = 0 +bj_BUFF_RESIST_PHYSICAL = 1 +bj_BUFF_RESIST_EITHER = 2 +bj_BUFF_RESIST_BOTH = 3 +bj_HEROSTAT_STR = 0 +bj_HEROSTAT_AGI = 1 +bj_HEROSTAT_INT = 2 +bj_MODIFYMETHOD_ADD = 0 +bj_MODIFYMETHOD_SUB = 1 +bj_MODIFYMETHOD_SET = 2 +bj_UNIT_STATE_METHOD_ABSOLUTE = 0 +bj_UNIT_STATE_METHOD_RELATIVE = 1 +bj_UNIT_STATE_METHOD_DEFAULTS = 2 +bj_UNIT_STATE_METHOD_MAXIMUM = 3 +bj_GATEOPERATION_CLOSE = 0 +bj_GATEOPERATION_OPEN = 1 +bj_GATEOPERATION_DESTROY = 2 +bj_GAMECACHE_BOOLEAN = 0 +bj_GAMECACHE_INTEGER = 1 +bj_GAMECACHE_REAL = 2 +bj_GAMECACHE_UNIT = 3 +bj_GAMECACHE_STRING = 4 +bj_HASHTABLE_BOOLEAN = 0 +bj_HASHTABLE_INTEGER = 1 +bj_HASHTABLE_REAL = 2 +bj_HASHTABLE_STRING = 3 +bj_HASHTABLE_HANDLE = 4 +bj_ITEM_STATUS_HIDDEN = 0 +bj_ITEM_STATUS_OWNED = 1 +bj_ITEM_STATUS_INVULNERABLE = 2 +bj_ITEM_STATUS_POWERUP = 3 +bj_ITEM_STATUS_SELLABLE = 4 +bj_ITEM_STATUS_PAWNABLE = 5 +bj_ITEMCODE_STATUS_POWERUP = 0 +bj_ITEMCODE_STATUS_SELLABLE = 1 +bj_ITEMCODE_STATUS_PAWNABLE = 2 +bj_MINIMAPPINGSTYLE_SIMPLE = 0 +bj_MINIMAPPINGSTYLE_FLASHY = 1 +bj_MINIMAPPINGSTYLE_ATTACK = 2 +bj_CAMPPINGSTYLE_PRIMARY = 0 +bj_CAMPPINGSTYLE_PRIMARY_GREEN = 1 +bj_CAMPPINGSTYLE_PRIMARY_RED = 2 +bj_CAMPPINGSTYLE_BONUS = 3 +bj_CAMPPINGSTYLE_TURNIN = 4 +bj_CAMPPINGSTYLE_BOSS = 5 +bj_CAMPPINGSTYLE_CONTROL_ALLY = 6 +bj_CAMPPINGSTYLE_CONTROL_NEUTRAL = 7 +bj_CAMPPINGSTYLE_CONTROL_ENEMY = 8 +bj_CORPSE_MAX_DEATH_TIME = 8.00 +bj_CORPSETYPE_FLESH = 0 +bj_CORPSETYPE_BONE = 1 +bj_ELEVATOR_BLOCKER_CODE = FourCC("DTep") +bj_ELEVATOR_CODE01 = FourCC("DTrf") +bj_ELEVATOR_CODE02 = FourCC("DTrx") +bj_ELEVATOR_WALL_TYPE_ALL = 0 +bj_ELEVATOR_WALL_TYPE_EAST = 1 +bj_ELEVATOR_WALL_TYPE_NORTH = 2 +bj_ELEVATOR_WALL_TYPE_SOUTH = 3 +bj_ELEVATOR_WALL_TYPE_WEST = 4 +bj_FORCE_ALL_PLAYERS = nil +bj_FORCE_PLAYER = {} +bj_MELEE_MAX_TWINKED_HEROES = 0 +bj_mapInitialPlayableArea = nil +bj_mapInitialCameraBounds = nil +bj_forLoopAIndex = 0 +bj_forLoopBIndex = 0 +bj_forLoopAIndexEnd = 0 +bj_forLoopBIndexEnd = 0 +bj_slotControlReady = false +bj_slotControlUsed = __jarray(false) +bj_slotControl = {} +bj_gameStartedTimer = nil +bj_gameStarted = false +bj_volumeGroupsTimer = CreateTimer() +bj_isSinglePlayer = false +bj_dncSoundsDay = nil +bj_dncSoundsNight = nil +bj_dayAmbientSound = nil +bj_nightAmbientSound = nil +bj_dncSoundsDawn = nil +bj_dncSoundsDusk = nil +bj_dawnSound = nil +bj_duskSound = nil +bj_useDawnDuskSounds = true +bj_dncIsDaytime = false +bj_rescueSound = nil +bj_questDiscoveredSound = nil +bj_questUpdatedSound = nil +bj_questCompletedSound = nil +bj_questFailedSound = nil +bj_questHintSound = nil +bj_questSecretSound = nil +bj_questItemAcquiredSound = nil +bj_questWarningSound = nil +bj_victoryDialogSound = nil +bj_defeatDialogSound = nil +bj_stockItemPurchased = nil +bj_stockUpdateTimer = nil +bj_stockAllowedPermanent = __jarray(false) +bj_stockAllowedCharged = __jarray(false) +bj_stockAllowedArtifact = __jarray(false) +bj_stockPickedItemLevel = 0 +bj_stockPickedItemType = nil +bj_meleeVisibilityTrained = nil +bj_meleeVisibilityIsDay = true +bj_meleeGrantHeroItems = false +bj_meleeNearestMineToLoc = nil +bj_meleeNearestMine = nil +bj_meleeNearestMineDist = 0.00 +bj_meleeGameOver = false +bj_meleeDefeated = __jarray(false) +bj_meleeVictoried = __jarray(false) +bj_ghoul = {} +bj_crippledTimer = {} +bj_crippledTimerWindows = {} +bj_playerIsCrippled = __jarray(false) +bj_playerIsExposed = __jarray(false) +bj_finishSoonAllExposed = false +bj_finishSoonTimerDialog = nil +bj_meleeTwinkedHeroes = __jarray(0) +bj_rescueUnitBehavior = nil +bj_rescueChangeColorUnit = true +bj_rescueChangeColorBldg = true +bj_cineSceneEndingTimer = nil +bj_cineSceneLastSound = nil +bj_cineSceneBeingSkipped = nil +bj_cineModePriorSpeed = MAP_SPEED_NORMAL +bj_cineModePriorFogSetting = false +bj_cineModePriorMaskSetting = false +bj_cineModeAlreadyIn = false +bj_cineModePriorDawnDusk = false +bj_cineModeSavedSeed = 0 +bj_cineFadeFinishTimer = nil +bj_cineFadeContinueTimer = nil +bj_cineFadeContinueRed = 0.0 +bj_cineFadeContinueGreen = 0.0 +bj_cineFadeContinueBlue = 0.0 +bj_cineFadeContinueTrans = 0.0 +bj_cineFadeContinueDuration = 0.0 +bj_cineFadeContinueTex = "" +bj_queuedExecTotal = 0 +bj_queuedExecTriggers = {} +bj_queuedExecUseConds = __jarray(false) +bj_queuedExecTimeoutTimer = CreateTimer() +bj_queuedExecTimeout = nil +bj_destInRegionDiesCount = 0 +bj_destInRegionDiesTrig = nil +bj_groupCountUnits = 0 +bj_forceCountPlayers = 0 +bj_groupEnumTypeId = 0 +bj_groupEnumOwningPlayer = nil +bj_groupAddGroupDest = nil +bj_groupRemoveGroupDest = nil +bj_groupRandomConsidered = 0 +bj_groupRandomCurrentPick = nil +bj_groupLastCreatedDest = nil +bj_randomSubGroupGroup = nil +bj_randomSubGroupWant = 0 +bj_randomSubGroupTotal = 0 +bj_randomSubGroupChance = 0.0 +bj_destRandomConsidered = 0 +bj_destRandomCurrentPick = nil +bj_elevatorWallBlocker = nil +bj_elevatorNeighbor = nil +bj_itemRandomConsidered = 0 +bj_itemRandomCurrentPick = nil +bj_forceRandomConsidered = 0 +bj_forceRandomCurrentPick = nil +bj_makeUnitRescuableUnit = nil +bj_makeUnitRescuableFlag = true +bj_pauseAllUnitsFlag = true +bj_enumDestructableCenter = nil +bj_enumDestructableRadius = 0.0 +bj_setPlayerTargetColor = nil +bj_isUnitGroupDeadResult = true +bj_isUnitGroupEmptyResult = true +bj_isUnitGroupInRectResult = true +bj_isUnitGroupInRectRect = nil +bj_changeLevelShowScores = false +bj_changeLevelMapName = "" +bj_suspendDecayFleshGroup = CreateGroup() +bj_suspendDecayBoneGroup = CreateGroup() +bj_delayedSuspendDecayTimer = CreateTimer() +bj_delayedSuspendDecayTrig = nil +bj_livingPlayerUnitsTypeId = 0 +bj_lastDyingWidget = nil +bj_randDistCount = 0 +bj_randDistID = __jarray(0) +bj_randDistChance = __jarray(0) +bj_lastCreatedUnit = nil +bj_lastCreatedItem = nil +bj_lastRemovedItem = nil +bj_lastHauntedGoldMine = nil +bj_lastCreatedDestructable = nil +bj_lastCreatedGroup = CreateGroup() +bj_lastCreatedFogModifier = nil +bj_lastCreatedEffect = nil +bj_lastCreatedWeatherEffect = nil +bj_lastCreatedTerrainDeformation = nil +bj_lastCreatedQuest = nil +bj_lastCreatedQuestItem = nil +bj_lastCreatedDefeatCondition = nil +bj_lastStartedTimer = CreateTimer() +bj_lastCreatedTimerDialog = nil +bj_lastCreatedLeaderboard = nil +bj_lastCreatedMultiboard = nil +bj_lastPlayedSound = nil +bj_lastPlayedMusic = "" +bj_lastTransmissionDuration = 0.0 +bj_lastCreatedGameCache = nil +bj_lastCreatedHashtable = nil +bj_lastLoadedUnit = nil +bj_lastCreatedButton = nil +bj_lastReplacedUnit = nil +bj_lastCreatedTextTag = nil +bj_lastCreatedLightning = nil +bj_lastCreatedImage = nil +bj_lastCreatedUbersplat = nil +bj_lastCreatedMinimapIcon = nil +bj_lastCreatedCommandButtonEffect = nil +filterIssueHauntOrderAtLocBJ = nil +filterEnumDestructablesInCircleBJ = nil +filterGetUnitsInRectOfPlayer = nil +filterGetUnitsOfTypeIdAll = nil +filterGetUnitsOfPlayerAndTypeId = nil +filterMeleeTrainedUnitIsHeroBJ = nil +filterLivingPlayerUnitsOfTypeId = nil +bj_wantDestroyGroup = false +bj_lastInstObjFuncSuccessful = true +function BJDebugMsg(msg) +local i = 0 + +while (true) do +DisplayTimedTextToPlayer(Player(i), 0, 0, 60, msg) +i = i + 1 +if (i == bj_MAX_PLAYERS) then break end +end +end + +function RMinBJ(a, b) +if (a < b) then +return a +else +return b +end +end + +function RMaxBJ(a, b) +if (a < b) then +return b +else +return a +end +end + +function RAbsBJ(a) +if (a >= 0) then +return a +else +return -a +end +end + +function RSignBJ(a) +if (a >= 0.0) then +return 1.0 +else +return -1.0 +end +end + +function IMinBJ(a, b) +if (a < b) then +return a +else +return b +end +end + +function IMaxBJ(a, b) +if (a < b) then +return b +else +return a +end +end + +function IAbsBJ(a) +if (a >= 0) then +return a +else +return -a +end +end + +function ISignBJ(a) +if (a >= 0) then +return 1 +else +return -1 +end +end + +function SinBJ(degrees) +return Sin(degrees * bj_DEGTORAD) +end + +function CosBJ(degrees) +return Cos(degrees * bj_DEGTORAD) +end + +function TanBJ(degrees) +return Tan(degrees * bj_DEGTORAD) +end + +function AsinBJ(degrees) +return Asin(degrees) * bj_RADTODEG +end + +function AcosBJ(degrees) +return Acos(degrees) * bj_RADTODEG +end + +function AtanBJ(degrees) +return Atan(degrees) * bj_RADTODEG +end + +function Atan2BJ(y, x) +return Atan2(y, x) * bj_RADTODEG +end + +function AngleBetweenPoints(locA, locB) +return bj_RADTODEG * Atan2(GetLocationY(locB) - GetLocationY(locA), GetLocationX(locB) - GetLocationX(locA)) +end + +function DistanceBetweenPoints(locA, locB) +local dx = GetLocationX(locB) - GetLocationX(locA) +local dy = GetLocationY(locB) - GetLocationY(locA) + +return SquareRoot(dx * dx + dy * dy) +end + +function PolarProjectionBJ(source, dist, angle) +local x = GetLocationX(source) + dist * Cos(angle * bj_DEGTORAD) +local y = GetLocationY(source) + dist * Sin(angle * bj_DEGTORAD) + +return Location(x, y) +end + +function GetRandomDirectionDeg() +return GetRandomReal(0, 360) +end + +function GetRandomPercentageBJ() +return GetRandomReal(0, 100) +end + +function GetRandomLocInRect(whichRect) +return Location(GetRandomReal(GetRectMinX(whichRect), GetRectMaxX(whichRect)), GetRandomReal(GetRectMinY(whichRect), GetRectMaxY(whichRect))) +end + +function ModuloInteger(dividend, divisor) +local modulus = dividend - (dividend // divisor) * divisor + +if (modulus < 0) then +modulus = modulus + divisor +end +return modulus +end + +function ModuloReal(dividend, divisor) +local modulus = dividend - I2R(R2I(dividend / divisor)) * divisor + +if (modulus < 0) then +modulus = modulus + divisor +end +return modulus +end + +function OffsetLocation(loc, dx, dy) +return Location(GetLocationX(loc) + dx, GetLocationY(loc) + dy) +end + +function OffsetRectBJ(r, dx, dy) +return Rect(GetRectMinX(r) + dx, GetRectMinY(r) + dy, GetRectMaxX(r) + dx, GetRectMaxY(r) + dy) +end + +function RectFromCenterSizeBJ(center, width, height) +local x = GetLocationX(center) +local y = GetLocationY(center) + +return Rect(x - width * 0.5, y - height * 0.5, x + width * 0.5, y + height * 0.5) +end + +function RectContainsCoords(r, x, y) +return ((GetRectMinX(r) <= x) and ((x <= GetRectMaxX(r)) and ((GetRectMinY(r) <= y) and (y <= GetRectMaxY(r))))) +end + +function RectContainsLoc(r, loc) +return RectContainsCoords(r, GetLocationX(loc), GetLocationY(loc)) +end + +function RectContainsUnit(r, whichUnit) +return RectContainsCoords(r, GetUnitX(whichUnit), GetUnitY(whichUnit)) +end + +function RectContainsItem(whichItem, r) +if (whichItem == nil) then +return false +end +if (IsItemOwned(whichItem)) then +return false +end +return RectContainsCoords(r, GetItemX(whichItem), GetItemY(whichItem)) +end + +function ConditionalTriggerExecute(trig) +if TriggerEvaluate(trig) then +TriggerExecute(trig) +end +end + +function TriggerExecuteBJ(trig, checkConditions) +if checkConditions then +if not (TriggerEvaluate(trig)) then +return false +end +end +TriggerExecute(trig) +return true +end + +function PostTriggerExecuteBJ(trig, checkConditions) +if checkConditions then +if not (TriggerEvaluate(trig)) then +return false +end +end +TriggerRegisterTimerEvent(trig, 0, false) +return true +end + +function QueuedTriggerCheck() +local s = "TrigQueue Check " +local i + +i = 0 +while (true) do +if (i >= bj_queuedExecTotal) then break end +s = s .. "q[" .. I2S(i) .. "]=" +if (bj_queuedExecTriggers[i] == nil) then +s = s .. "null " +else +s = s .. "x " +end +i = i + 1 +end +s = s .. "(" .. I2S(bj_queuedExecTotal) .. " total)" +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, 600, s) +end + +function QueuedTriggerGetIndex(trig) +local index = 0 + +while (true) do +if (index >= bj_queuedExecTotal) then break end +if (bj_queuedExecTriggers[index] == trig) then +return index +end +index = index + 1 +end +return -1 +end + +function QueuedTriggerRemoveByIndex(trigIndex) +local index + +if (trigIndex >= bj_queuedExecTotal) then +return false +end +bj_queuedExecTotal = bj_queuedExecTotal - 1 +index = trigIndex +while (true) do +if (index >= bj_queuedExecTotal) then break end +bj_queuedExecTriggers[index] = bj_queuedExecTriggers[index + 1] +bj_queuedExecUseConds[index] = bj_queuedExecUseConds[index + 1] +index = index + 1 +end +return true +end + +function QueuedTriggerAttemptExec() +while (true) do +if (bj_queuedExecTotal == 0) then break end +if TriggerExecuteBJ(bj_queuedExecTriggers[0], bj_queuedExecUseConds[0]) then +TimerStart(bj_queuedExecTimeoutTimer, bj_QUEUED_TRIGGER_TIMEOUT, false, nil) +return true +end +QueuedTriggerRemoveByIndex(0) +end +return false +end + +function QueuedTriggerAddBJ(trig, checkConditions) +if (bj_queuedExecTotal >= bj_MAX_QUEUED_TRIGGERS) then +return false +end +bj_queuedExecTriggers[bj_queuedExecTotal] = trig +bj_queuedExecUseConds[bj_queuedExecTotal] = checkConditions +bj_queuedExecTotal = bj_queuedExecTotal + 1 +if (bj_queuedExecTotal == 1) then +QueuedTriggerAttemptExec() +end +return true +end + +function QueuedTriggerRemoveBJ(trig) +local index +local trigIndex +local trigExecuted + +trigIndex = QueuedTriggerGetIndex(trig) +if (trigIndex == -1) then +return +end +QueuedTriggerRemoveByIndex(trigIndex) +if (trigIndex == 0) then +PauseTimer(bj_queuedExecTimeoutTimer) +QueuedTriggerAttemptExec() +end +end + +function QueuedTriggerDoneBJ() +local index + +if (bj_queuedExecTotal <= 0) then +return +end +QueuedTriggerRemoveByIndex(0) +PauseTimer(bj_queuedExecTimeoutTimer) +QueuedTriggerAttemptExec() +end + +function QueuedTriggerClearBJ() +PauseTimer(bj_queuedExecTimeoutTimer) +bj_queuedExecTotal = 0 +end + +function QueuedTriggerClearInactiveBJ() +bj_queuedExecTotal = IMinBJ(bj_queuedExecTotal, 1) +end + +function QueuedTriggerCountBJ() +return bj_queuedExecTotal +end + +function IsTriggerQueueEmptyBJ() +return bj_queuedExecTotal <= 0 +end + +function IsTriggerQueuedBJ(trig) +return QueuedTriggerGetIndex(trig) ~= -1 +end + +function GetForLoopIndexA() +return bj_forLoopAIndex +end + +function SetForLoopIndexA(newIndex) +bj_forLoopAIndex = newIndex +end + +function GetForLoopIndexB() +return bj_forLoopBIndex +end + +function SetForLoopIndexB(newIndex) +bj_forLoopBIndex = newIndex +end + +function PolledWait(duration) +local t +local timeRemaining + +if (duration > 0) then +t = CreateTimer() +TimerStart(t, duration, false, nil) +while (true) do +timeRemaining = TimerGetRemaining(t) +if (timeRemaining <= 0) then break end +if (timeRemaining > bj_POLLED_WAIT_SKIP_THRESHOLD) then +TriggerSleepAction(0.1 * timeRemaining) +else +TriggerSleepAction(bj_POLLED_WAIT_INTERVAL) +end +end +DestroyTimer(t) +end +end + +function IntegerTertiaryOp(flag, valueA, valueB) +if flag then +return valueA +else +return valueB +end +end + +function DoNothing() +end + +function CommentString(commentString) +end + +function StringIdentity(theString) +return GetLocalizedString(theString) +end + +function GetBooleanAnd(valueA, valueB) +return (valueA and valueB) +end + +function GetBooleanOr(valueA, valueB) +return (valueA or valueB) +end + +function PercentToInt(percentage, max) +local realpercent = percentage * I2R(max) * 0.01 +local result = MathRound(realpercent) + +if (result < 0) then +result = 0 +elseif (result > max) then +result = max +end +return result +end + +function PercentTo255(percentage) +return PercentToInt(percentage, 255) +end + +function GetTimeOfDay() +return GetFloatGameState(GAME_STATE_TIME_OF_DAY) +end + +function SetTimeOfDay(whatTime) +SetFloatGameState(GAME_STATE_TIME_OF_DAY, whatTime) +end + +function SetTimeOfDayScalePercentBJ(scalePercent) +SetTimeOfDayScale(scalePercent * 0.01) +end + +function GetTimeOfDayScalePercentBJ() +return GetTimeOfDayScale() * 100 +end + +function PlaySound(soundName) +local soundHandle = CreateSound(soundName, false, false, true, 12700, 12700, "") + +StartSound(soundHandle) +KillSoundWhenDone(soundHandle) +end + +function CompareLocationsBJ(A, B) +return (GetLocationX(A) == GetLocationX(B) and GetLocationY(A) == GetLocationY(B)) +end + +function CompareRectsBJ(A, B) +return (GetRectMinX(A) == GetRectMinX(B) and (GetRectMinY(A) == GetRectMinY(B) and (GetRectMaxX(A) == GetRectMaxX(B) and GetRectMaxY(A) == GetRectMaxY(B)))) +end + +function GetRectFromCircleBJ(center, radius) +local centerX = GetLocationX(center) +local centerY = GetLocationY(center) + +return Rect(centerX - radius, centerY - radius, centerX + radius, centerY + radius) +end + +function GetCurrentCameraSetup() +local theCam = CreateCameraSetup() +local duration = 0.0 + +CameraSetupSetField(theCam, CAMERA_FIELD_TARGET_DISTANCE, GetCameraField(CAMERA_FIELD_TARGET_DISTANCE), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_FARZ, GetCameraField(CAMERA_FIELD_FARZ), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_ZOFFSET, GetCameraField(CAMERA_FIELD_ZOFFSET), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_ANGLE_OF_ATTACK, bj_RADTODEG * GetCameraField(CAMERA_FIELD_ANGLE_OF_ATTACK), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_FIELD_OF_VIEW, bj_RADTODEG * GetCameraField(CAMERA_FIELD_FIELD_OF_VIEW), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_ROLL, bj_RADTODEG * GetCameraField(CAMERA_FIELD_ROLL), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_ROTATION, bj_RADTODEG * GetCameraField(CAMERA_FIELD_ROTATION), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_LOCAL_PITCH, bj_RADTODEG * GetCameraField(CAMERA_FIELD_LOCAL_PITCH), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_LOCAL_YAW, bj_RADTODEG * GetCameraField(CAMERA_FIELD_LOCAL_YAW), duration) +CameraSetupSetField(theCam, CAMERA_FIELD_LOCAL_ROLL, bj_RADTODEG * GetCameraField(CAMERA_FIELD_LOCAL_ROLL), duration) +CameraSetupSetDestPosition(theCam, GetCameraTargetPositionX(), GetCameraTargetPositionY(), duration) +return theCam +end + +function CameraSetupApplyForPlayer(doPan, whichSetup, whichPlayer, duration) +if (GetLocalPlayer() == whichPlayer) then +CameraSetupApplyForceDuration(whichSetup, doPan, duration) +end +end + +function CameraSetupApplyForPlayerSmooth(doPan, whichSetup, whichPlayer, forcedDuration, easeInDuration, easeOutDuration, smoothFactor) +if (GetLocalPlayer() == whichPlayer) then +BlzCameraSetupApplyForceDurationSmooth(whichSetup, doPan, forcedDuration, easeInDuration, easeOutDuration, smoothFactor) +end +end + +function CameraSetupGetFieldSwap(whichField, whichSetup) +return CameraSetupGetField(whichSetup, whichField) +end + +function SetCameraFieldForPlayer(whichPlayer, whichField, value, duration) +if (GetLocalPlayer() == whichPlayer) then +SetCameraField(whichField, value, duration) +end +end + +function SetCameraTargetControllerNoZForPlayer(whichPlayer, whichUnit, xoffset, yoffset, inheritOrientation) +if (GetLocalPlayer() == whichPlayer) then +SetCameraTargetController(whichUnit, xoffset, yoffset, inheritOrientation) +end +end + +function SetCameraPositionForPlayer(whichPlayer, x, y) +if (GetLocalPlayer() == whichPlayer) then +SetCameraPosition(x, y) +end +end + +function SetCameraPositionLocForPlayer(whichPlayer, loc) +if (GetLocalPlayer() == whichPlayer) then +SetCameraPosition(GetLocationX(loc), GetLocationY(loc)) +end +end + +function RotateCameraAroundLocBJ(degrees, loc, whichPlayer, duration) +if (GetLocalPlayer() == whichPlayer) then +SetCameraRotateMode(GetLocationX(loc), GetLocationY(loc), bj_DEGTORAD * degrees, duration) +end +end + +function PanCameraToForPlayer(whichPlayer, x, y) +if (GetLocalPlayer() == whichPlayer) then +PanCameraTo(x, y) +end +end + +function PanCameraToLocForPlayer(whichPlayer, loc) +if (GetLocalPlayer() == whichPlayer) then +PanCameraTo(GetLocationX(loc), GetLocationY(loc)) +end +end + +function PanCameraToTimedForPlayer(whichPlayer, x, y, duration) +if (GetLocalPlayer() == whichPlayer) then +PanCameraToTimed(x, y, duration) +end +end + +function PanCameraToTimedLocForPlayer(whichPlayer, loc, duration) +if (GetLocalPlayer() == whichPlayer) then +PanCameraToTimed(GetLocationX(loc), GetLocationY(loc), duration) +end +end + +function PanCameraToTimedLocWithZForPlayer(whichPlayer, loc, zOffset, duration) +if (GetLocalPlayer() == whichPlayer) then +PanCameraToTimedWithZ(GetLocationX(loc), GetLocationY(loc), zOffset, duration) +end +end + +function SmartCameraPanBJ(whichPlayer, loc, duration) +local dist +local cameraLoc = GetCameraTargetPositionLoc() + +if (GetLocalPlayer() == whichPlayer) then +dist = DistanceBetweenPoints(loc, cameraLoc) +if (dist >= bj_SMARTPAN_TRESHOLD_SNAP) then +PanCameraToTimed(GetLocationX(loc), GetLocationY(loc), 0) +elseif (dist >= bj_SMARTPAN_TRESHOLD_PAN) then +PanCameraToTimed(GetLocationX(loc), GetLocationY(loc), duration) +else +end +end +RemoveLocation(cameraLoc) +end + +function SetCinematicCameraForPlayer(whichPlayer, cameraModelFile) +if (GetLocalPlayer() == whichPlayer) then +SetCinematicCamera(cameraModelFile) +end +end + +function ResetToGameCameraForPlayer(whichPlayer, duration) +if (GetLocalPlayer() == whichPlayer) then +ResetToGameCamera(duration) +end +end + +function CameraSetSourceNoiseForPlayer(whichPlayer, magnitude, velocity) +if (GetLocalPlayer() == whichPlayer) then +CameraSetSourceNoise(magnitude, velocity) +end +end + +function CameraSetTargetNoiseForPlayer(whichPlayer, magnitude, velocity) +if (GetLocalPlayer() == whichPlayer) then +CameraSetTargetNoise(magnitude, velocity) +end +end + +function CameraSetEQNoiseForPlayer(whichPlayer, magnitude) +local richter = magnitude + +if (richter > 5.0) then +richter = 5.0 +end +if (richter < 2.0) then +richter = 2.0 +end +if (GetLocalPlayer() == whichPlayer) then +CameraSetTargetNoiseEx(magnitude * 2.0, magnitude * Pow(10, richter), true) +CameraSetSourceNoiseEx(magnitude * 2.0, magnitude * Pow(10, richter), true) +end +end + +function CameraClearNoiseForPlayer(whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +CameraSetSourceNoise(0, 0) +CameraSetTargetNoise(0, 0) +end +end + +function GetCurrentCameraBoundsMapRectBJ() +return Rect(GetCameraBoundMinX(), GetCameraBoundMinY(), GetCameraBoundMaxX(), GetCameraBoundMaxY()) +end + +function GetCameraBoundsMapRect() +return bj_mapInitialCameraBounds +end + +function GetPlayableMapRect() +return bj_mapInitialPlayableArea +end + +function GetEntireMapRect() +return GetWorldBounds() +end + +function SetCameraBoundsToRect(r) +local minX = GetRectMinX(r) +local minY = GetRectMinY(r) +local maxX = GetRectMaxX(r) +local maxY = GetRectMaxY(r) + +SetCameraBounds(minX, minY, minX, maxY, maxX, maxY, maxX, minY) +end + +function SetCameraBoundsToRectForPlayerBJ(whichPlayer, r) +if (GetLocalPlayer() == whichPlayer) then +SetCameraBoundsToRect(r) +end +end + +function AdjustCameraBoundsBJ(adjustMethod, dxWest, dxEast, dyNorth, dySouth) +local minX = 0.0 +local minY = 0.0 +local maxX = 0.0 +local maxY = 0.0 +local scale = 0.0 + +if (adjustMethod == bj_CAMERABOUNDS_ADJUST_ADD) then +scale = 1.0 +elseif (adjustMethod == bj_CAMERABOUNDS_ADJUST_SUB) then +scale = -1 +else +return +end +minX = GetCameraBoundMinX() - scale * dxWest +maxX = GetCameraBoundMaxX() + scale * dxEast +minY = GetCameraBoundMinY() - scale * dySouth +maxY = GetCameraBoundMaxY() + scale * dyNorth +if (maxX < minX) then +minX = (minX + maxX) * 0.5 +maxX = minX +end +if (maxY < minY) then +minY = (minY + maxY) * 0.5 +maxY = minY +end +SetCameraBounds(minX, minY, minX, maxY, maxX, maxY, maxX, minY) +end + +function AdjustCameraBoundsForPlayerBJ(adjustMethod, whichPlayer, dxWest, dxEast, dyNorth, dySouth) +if (GetLocalPlayer() == whichPlayer) then +AdjustCameraBoundsBJ(adjustMethod, dxWest, dxEast, dyNorth, dySouth) +end +end + +function SetCameraQuickPositionForPlayer(whichPlayer, x, y) +if (GetLocalPlayer() == whichPlayer) then +SetCameraQuickPosition(x, y) +end +end + +function SetCameraQuickPositionLocForPlayer(whichPlayer, loc) +if (GetLocalPlayer() == whichPlayer) then +SetCameraQuickPosition(GetLocationX(loc), GetLocationY(loc)) +end +end + +function SetCameraQuickPositionLoc(loc) +SetCameraQuickPosition(GetLocationX(loc), GetLocationY(loc)) +end + +function StopCameraForPlayerBJ(whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +StopCamera() +end +end + +function SetCameraOrientControllerForPlayerBJ(whichPlayer, whichUnit, xoffset, yoffset) +if (GetLocalPlayer() == whichPlayer) then +SetCameraOrientController(whichUnit, xoffset, yoffset) +end +end + +function CameraSetSmoothingFactorBJ(factor) +CameraSetSmoothingFactor(factor) +end + +function CameraResetSmoothingFactorBJ() +CameraSetSmoothingFactor(0) +end + +function DisplayTextToForce(toForce, message) +if (IsPlayerInForce(GetLocalPlayer(), toForce)) then +DisplayTextToPlayer(GetLocalPlayer(), 0, 0, message) +end +end + +function DisplayTimedTextToForce(toForce, duration, message) +if (IsPlayerInForce(GetLocalPlayer(), toForce)) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, duration, message) +end +end + +function ClearTextMessagesBJ(toForce) +if (IsPlayerInForce(GetLocalPlayer(), toForce)) then +ClearTextMessages() +end +end + +function SubStringBJ(source, start, end_) +return SubString(source, start - 1, end_) +end + +function GetHandleIdBJ(h) +return GetHandleId(h) +end + +function StringHashBJ(s) +return StringHash(s) +end + +function TriggerRegisterTimerEventPeriodic(trig, timeout) +return TriggerRegisterTimerEvent(trig, timeout, true) +end + +function TriggerRegisterTimerEventSingle(trig, timeout) +return TriggerRegisterTimerEvent(trig, timeout, false) +end + +function TriggerRegisterTimerExpireEventBJ(trig, t) +return TriggerRegisterTimerExpireEvent(trig, t) +end + +function TriggerRegisterPlayerUnitEventSimple(trig, whichPlayer, whichEvent) +return TriggerRegisterPlayerUnitEvent(trig, whichPlayer, whichEvent, nil) +end + +function TriggerRegisterAnyUnitEventBJ(trig, whichEvent) +local index + +index = 0 +while (true) do +TriggerRegisterPlayerUnitEvent(trig, Player(index), whichEvent, nil) +index = index + 1 +if (index == bj_MAX_PLAYER_SLOTS) then break end +end +end + +function TriggerRegisterPlayerSelectionEventBJ(trig, whichPlayer, selected) +if selected then +return TriggerRegisterPlayerUnitEvent(trig, whichPlayer, EVENT_PLAYER_UNIT_SELECTED, nil) +else +return TriggerRegisterPlayerUnitEvent(trig, whichPlayer, EVENT_PLAYER_UNIT_DESELECTED, nil) +end +end + +function TriggerRegisterPlayerKeyEventBJ(trig, whichPlayer, keType, keKey) +if (keType == bj_KEYEVENTTYPE_DEPRESS) then +if (keKey == bj_KEYEVENTKEY_LEFT) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_LEFT_DOWN) +elseif (keKey == bj_KEYEVENTKEY_RIGHT) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_RIGHT_DOWN) +elseif (keKey == bj_KEYEVENTKEY_DOWN) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_DOWN_DOWN) +elseif (keKey == bj_KEYEVENTKEY_UP) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_UP_DOWN) +else +return nil +end +elseif (keType == bj_KEYEVENTTYPE_RELEASE) then +if (keKey == bj_KEYEVENTKEY_LEFT) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_LEFT_UP) +elseif (keKey == bj_KEYEVENTKEY_RIGHT) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_RIGHT_UP) +elseif (keKey == bj_KEYEVENTKEY_DOWN) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_DOWN_UP) +elseif (keKey == bj_KEYEVENTKEY_UP) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ARROW_UP_UP) +else +return nil +end +else +return nil +end +end + +function TriggerRegisterPlayerMouseEventBJ(trig, whichPlayer, meType) +if (meType == bj_MOUSEEVENTTYPE_DOWN) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_MOUSE_DOWN) +elseif (meType == bj_MOUSEEVENTTYPE_UP) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_MOUSE_UP) +elseif (meType == bj_MOUSEEVENTTYPE_MOVE) then +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_MOUSE_MOVE) +else +return nil +end +end + +function TriggerRegisterPlayerEventVictory(trig, whichPlayer) +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_VICTORY) +end + +function TriggerRegisterPlayerEventDefeat(trig, whichPlayer) +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_DEFEAT) +end + +function TriggerRegisterPlayerEventLeave(trig, whichPlayer) +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_LEAVE) +end + +function TriggerRegisterPlayerEventAllianceChanged(trig, whichPlayer) +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_ALLIANCE_CHANGED) +end + +function TriggerRegisterPlayerEventEndCinematic(trig, whichPlayer) +return TriggerRegisterPlayerEvent(trig, whichPlayer, EVENT_PLAYER_END_CINEMATIC) +end + +function TriggerRegisterGameStateEventTimeOfDay(trig, opcode, limitval) +return TriggerRegisterGameStateEvent(trig, GAME_STATE_TIME_OF_DAY, opcode, limitval) +end + +function TriggerRegisterEnterRegionSimple(trig, whichRegion) +return TriggerRegisterEnterRegion(trig, whichRegion, nil) +end + +function TriggerRegisterLeaveRegionSimple(trig, whichRegion) +return TriggerRegisterLeaveRegion(trig, whichRegion, nil) +end + +function TriggerRegisterEnterRectSimple(trig, r) +local rectRegion = CreateRegion() + +RegionAddRect(rectRegion, r) +return TriggerRegisterEnterRegion(trig, rectRegion, nil) +end + +function TriggerRegisterLeaveRectSimple(trig, r) +local rectRegion = CreateRegion() + +RegionAddRect(rectRegion, r) +return TriggerRegisterLeaveRegion(trig, rectRegion, nil) +end + +function TriggerRegisterDistanceBetweenUnits(trig, whichUnit, condition, range) +return TriggerRegisterUnitInRange(trig, whichUnit, range, condition) +end + +function TriggerRegisterUnitInRangeSimple(trig, range, whichUnit) +return TriggerRegisterUnitInRange(trig, whichUnit, range, nil) +end + +function TriggerRegisterUnitLifeEvent(trig, whichUnit, opcode, limitval) +return TriggerRegisterUnitStateEvent(trig, whichUnit, UNIT_STATE_LIFE, opcode, limitval) +end + +function TriggerRegisterUnitManaEvent(trig, whichUnit, opcode, limitval) +return TriggerRegisterUnitStateEvent(trig, whichUnit, UNIT_STATE_MANA, opcode, limitval) +end + +function TriggerRegisterDialogEventBJ(trig, whichDialog) +return TriggerRegisterDialogEvent(trig, whichDialog) +end + +function TriggerRegisterShowSkillEventBJ(trig) +return TriggerRegisterGameEvent(trig, EVENT_GAME_SHOW_SKILL) +end + +function TriggerRegisterBuildSubmenuEventBJ(trig) +return TriggerRegisterGameEvent(trig, EVENT_GAME_BUILD_SUBMENU) +end + +function TriggerRegisterBuildCommandEventBJ(trig, unitId) +TriggerRegisterCommandEvent(trig, FourCC("ANbu"), UnitId2String(unitId)) +TriggerRegisterCommandEvent(trig, FourCC("AHbu"), UnitId2String(unitId)) +TriggerRegisterCommandEvent(trig, FourCC("AEbu"), UnitId2String(unitId)) +TriggerRegisterCommandEvent(trig, FourCC("AObu"), UnitId2String(unitId)) +TriggerRegisterCommandEvent(trig, FourCC("AUbu"), UnitId2String(unitId)) +return TriggerRegisterCommandEvent(trig, FourCC("AGbu"), UnitId2String(unitId)) +end + +function TriggerRegisterTrainCommandEventBJ(trig, unitId) +return TriggerRegisterCommandEvent(trig, FourCC("Aque"), UnitId2String(unitId)) +end + +function TriggerRegisterUpgradeCommandEventBJ(trig, techId) +return TriggerRegisterUpgradeCommandEvent(trig, techId) +end + +function TriggerRegisterCommonCommandEventBJ(trig, order) +return TriggerRegisterCommandEvent(trig, 0, order) +end + +function TriggerRegisterGameLoadedEventBJ(trig) +return TriggerRegisterGameEvent(trig, EVENT_GAME_LOADED) +end + +function TriggerRegisterGameSavedEventBJ(trig) +return TriggerRegisterGameEvent(trig, EVENT_GAME_SAVE) +end + +function RegisterDestDeathInRegionEnum() +bj_destInRegionDiesCount = bj_destInRegionDiesCount + 1 +if (bj_destInRegionDiesCount <= bj_MAX_DEST_IN_REGION_EVENTS) then +TriggerRegisterDeathEvent(bj_destInRegionDiesTrig, GetEnumDestructable()) +end +end + +function TriggerRegisterDestDeathInRegionEvent(trig, r) +bj_destInRegionDiesTrig = trig +bj_destInRegionDiesCount = 0 +EnumDestructablesInRect(r, nil, RegisterDestDeathInRegionEnum) +end + +function AddWeatherEffectSaveLast(where, effectID) +bj_lastCreatedWeatherEffect = AddWeatherEffect(where, effectID) +return bj_lastCreatedWeatherEffect +end + +function GetLastCreatedWeatherEffect() +return bj_lastCreatedWeatherEffect +end + +function RemoveWeatherEffectBJ(whichWeatherEffect) +RemoveWeatherEffect(whichWeatherEffect) +end + +function TerrainDeformationCraterBJ(duration, permanent, where, radius, depth) +bj_lastCreatedTerrainDeformation = TerrainDeformCrater(GetLocationX(where), GetLocationY(where), radius, depth, R2I(duration * 1000), permanent) +return bj_lastCreatedTerrainDeformation +end + +function TerrainDeformationRippleBJ(duration, limitNeg, where, startRadius, endRadius, depth, wavePeriod, waveWidth) +local spaceWave +local timeWave +local radiusRatio + +if (endRadius <= 0 or (waveWidth <= 0 or wavePeriod <= 0)) then +return nil +end +timeWave = 2.0 * duration / wavePeriod +spaceWave = 2.0 * endRadius / waveWidth +radiusRatio = startRadius / endRadius +bj_lastCreatedTerrainDeformation = TerrainDeformRipple(GetLocationX(where), GetLocationY(where), endRadius, depth, R2I(duration * 1000), 1, spaceWave, timeWave, radiusRatio, limitNeg) +return bj_lastCreatedTerrainDeformation +end + +function TerrainDeformationWaveBJ(duration, source, target, radius, depth, trailDelay) +local distance +local dirX +local dirY +local speed + +distance = DistanceBetweenPoints(source, target) +if (distance == 0 or duration <= 0) then +return nil +end +dirX = (GetLocationX(target) - GetLocationX(source)) / distance +dirY = (GetLocationY(target) - GetLocationY(source)) / distance +speed = distance / duration +bj_lastCreatedTerrainDeformation = TerrainDeformWave(GetLocationX(source), GetLocationY(source), dirX, dirY, distance, speed, radius, depth, R2I(trailDelay * 1000), 1) +return bj_lastCreatedTerrainDeformation +end + +function TerrainDeformationRandomBJ(duration, where, radius, minDelta, maxDelta, updateInterval) +bj_lastCreatedTerrainDeformation = TerrainDeformRandom(GetLocationX(where), GetLocationY(where), radius, minDelta, maxDelta, R2I(duration * 1000), R2I(updateInterval * 1000)) +return bj_lastCreatedTerrainDeformation +end + +function TerrainDeformationStopBJ(deformation, duration) +TerrainDeformStop(deformation, R2I(duration * 1000)) +end + +function GetLastCreatedTerrainDeformation() +return bj_lastCreatedTerrainDeformation +end + +function AddLightningLoc(codeName, where1, where2) +bj_lastCreatedLightning = AddLightningEx(codeName, true, GetLocationX(where1), GetLocationY(where1), GetLocationZ(where1), GetLocationX(where2), GetLocationY(where2), GetLocationZ(where2)) +return bj_lastCreatedLightning +end + +function DestroyLightningBJ(whichBolt) +return DestroyLightning(whichBolt) +end + +function MoveLightningLoc(whichBolt, where1, where2) +return MoveLightningEx(whichBolt, true, GetLocationX(where1), GetLocationY(where1), GetLocationZ(where1), GetLocationX(where2), GetLocationY(where2), GetLocationZ(where2)) +end + +function GetLightningColorABJ(whichBolt) +return GetLightningColorA(whichBolt) +end + +function GetLightningColorRBJ(whichBolt) +return GetLightningColorR(whichBolt) +end + +function GetLightningColorGBJ(whichBolt) +return GetLightningColorG(whichBolt) +end + +function GetLightningColorBBJ(whichBolt) +return GetLightningColorB(whichBolt) +end + +function SetLightningColorBJ(whichBolt, r, g, b, a) +return SetLightningColor(whichBolt, r, g, b, a) +end + +function GetLastCreatedLightningBJ() +return bj_lastCreatedLightning +end + +function GetAbilityEffectBJ(abilcode, t, index) +return GetAbilityEffectById(abilcode, t, index) +end + +function GetAbilitySoundBJ(abilcode, t) +return GetAbilitySoundById(abilcode, t) +end + +function GetTerrainCliffLevelBJ(where) +return GetTerrainCliffLevel(GetLocationX(where), GetLocationY(where)) +end + +function GetTerrainTypeBJ(where) +return GetTerrainType(GetLocationX(where), GetLocationY(where)) +end + +function GetTerrainVarianceBJ(where) +return GetTerrainVariance(GetLocationX(where), GetLocationY(where)) +end + +function SetTerrainTypeBJ(where, terrainType, variation, area, shape) +SetTerrainType(GetLocationX(where), GetLocationY(where), terrainType, variation, area, shape) +end + +function IsTerrainPathableBJ(where, t) +return IsTerrainPathable(GetLocationX(where), GetLocationY(where), t) +end + +function SetTerrainPathableBJ(where, t, flag) +SetTerrainPathable(GetLocationX(where), GetLocationY(where), t, flag) +end + +function SetWaterBaseColorBJ(red, green, blue, transparency) +SetWaterBaseColor(PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function CreateFogModifierRectSimple(whichPlayer, whichFogState, r, afterUnits) +bj_lastCreatedFogModifier = CreateFogModifierRect(whichPlayer, whichFogState, r, true, afterUnits) +return bj_lastCreatedFogModifier +end + +function CreateFogModifierRadiusLocSimple(whichPlayer, whichFogState, center, radius, afterUnits) +bj_lastCreatedFogModifier = CreateFogModifierRadiusLoc(whichPlayer, whichFogState, center, radius, true, afterUnits) +return bj_lastCreatedFogModifier +end + +function CreateFogModifierRectBJ(enabled, whichPlayer, whichFogState, r) +bj_lastCreatedFogModifier = CreateFogModifierRect(whichPlayer, whichFogState, r, true, false) +if enabled then +FogModifierStart(bj_lastCreatedFogModifier) +end +return bj_lastCreatedFogModifier +end + +function CreateFogModifierRadiusLocBJ(enabled, whichPlayer, whichFogState, center, radius) +bj_lastCreatedFogModifier = CreateFogModifierRadiusLoc(whichPlayer, whichFogState, center, radius, true, false) +if enabled then +FogModifierStart(bj_lastCreatedFogModifier) +end +return bj_lastCreatedFogModifier +end + +function GetLastCreatedFogModifier() +return bj_lastCreatedFogModifier +end + +function FogEnableOn() +FogEnable(true) +end + +function FogEnableOff() +FogEnable(false) +end + +function FogMaskEnableOn() +FogMaskEnable(true) +end + +function FogMaskEnableOff() +FogMaskEnable(false) +end + +function UseTimeOfDayBJ(flag) +SuspendTimeOfDay(not flag) +end + +function SetTerrainFogExBJ(style, zstart, zend, density, red, green, blue) +SetTerrainFogEx(style, zstart, zend, density, red * 0.01, green * 0.01, blue * 0.01) +end + +function ResetTerrainFogBJ() +ResetTerrainFog() +end + +function SetDoodadAnimationBJ(animName, doodadID, radius, center) +SetDoodadAnimation(GetLocationX(center), GetLocationY(center), radius, doodadID, false, animName, false) +end + +function SetDoodadAnimationRectBJ(animName, doodadID, r) +SetDoodadAnimationRect(r, doodadID, animName, false) +end + +function AddUnitAnimationPropertiesBJ(add, animProperties, whichUnit) +AddUnitAnimationProperties(whichUnit, animProperties, add) +end + +function CreateImageBJ(file, size, where, zOffset, imageType) +bj_lastCreatedImage = CreateImage(file, size, size, size, GetLocationX(where), GetLocationY(where), zOffset, 0, 0, 0, imageType) +return bj_lastCreatedImage +end + +function ShowImageBJ(flag, whichImage) +ShowImage(whichImage, flag) +end + +function SetImagePositionBJ(whichImage, where, zOffset) +SetImagePosition(whichImage, GetLocationX(where), GetLocationY(where), zOffset) +end + +function SetImageColorBJ(whichImage, red, green, blue, alpha) +SetImageColor(whichImage, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - alpha)) +end + +function GetLastCreatedImage() +return bj_lastCreatedImage +end + +function CreateUbersplatBJ(where, name, red, green, blue, alpha, forcePaused, noBirthTime) +bj_lastCreatedUbersplat = CreateUbersplat(GetLocationX(where), GetLocationY(where), name, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - alpha), forcePaused, noBirthTime) +return bj_lastCreatedUbersplat +end + +function ShowUbersplatBJ(flag, whichSplat) +ShowUbersplat(whichSplat, flag) +end + +function GetLastCreatedUbersplat() +return bj_lastCreatedUbersplat +end + +function GetLastCreatedMinimapIcon() +return bj_lastCreatedMinimapIcon +end + +function CreateMinimapIconOnUnitBJ(whichUnit, red, green, blue, pingPath, fogVisibility) +bj_lastCreatedMinimapIcon = CreateMinimapIconOnUnit(whichUnit, red, green, blue, pingPath, fogVisibility) +return bj_lastCreatedMinimapIcon +end + +function CreateMinimapIconAtLocBJ(where, red, green, blue, pingPath, fogVisibility) +bj_lastCreatedMinimapIcon = CreateMinimapIconAtLoc(where, red, green, blue, pingPath, fogVisibility) +return bj_lastCreatedMinimapIcon +end + +function CreateMinimapIconBJ(x, y, red, green, blue, pingPath, fogVisibility) +bj_lastCreatedMinimapIcon = CreateMinimapIcon(x, y, red, green, blue, pingPath, fogVisibility) +return bj_lastCreatedMinimapIcon +end + +function CampaignMinimapIconUnitBJ(whichUnit, style) +local red +local green +local blue +local path + +if (style == bj_CAMPPINGSTYLE_PRIMARY) then +red = 255 +green = 0 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectivePrimary") +elseif (style == bj_CAMPPINGSTYLE_PRIMARY_GREEN) then +red = 0 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectivePrimary") +elseif (style == bj_CAMPPINGSTYLE_PRIMARY_RED) then +red = 255 +green = 0 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectivePrimary") +elseif (style == bj_CAMPPINGSTYLE_BONUS) then +red = 255 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectiveBonus") +elseif (style == bj_CAMPPINGSTYLE_TURNIN) then +red = 255 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestTurnIn") +elseif (style == bj_CAMPPINGSTYLE_BOSS) then +red = 255 +green = 0 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestBoss") +elseif (style == bj_CAMPPINGSTYLE_CONTROL_ALLY) then +red = 0 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestControlPoint") +elseif (style == bj_CAMPPINGSTYLE_CONTROL_NEUTRAL) then +red = 255 +green = 255 +blue = 255 +path = SkinManagerGetLocalPath("MinimapQuestControlPoint") +elseif (style == bj_CAMPPINGSTYLE_CONTROL_ENEMY) then +red = 255 +green = 0 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestControlPoint") +end +CreateMinimapIconOnUnitBJ(whichUnit, red, green, blue, path, FOG_OF_WAR_MASKED) +SetMinimapIconOrphanDestroy(bj_lastCreatedMinimapIcon, true) +end + +function CampaignMinimapIconLocBJ(where, style) +local red +local green +local blue +local path + +if (style == bj_CAMPPINGSTYLE_PRIMARY) then +red = 0 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectivePrimary") +elseif (style == bj_CAMPPINGSTYLE_PRIMARY_GREEN) then +red = 0 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectivePrimary") +elseif (style == bj_CAMPPINGSTYLE_PRIMARY_RED) then +red = 255 +green = 0 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectivePrimary") +elseif (style == bj_CAMPPINGSTYLE_BONUS) then +red = 255 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestObjectiveBonus") +elseif (style == bj_CAMPPINGSTYLE_TURNIN) then +red = 255 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestTurnIn") +elseif (style == bj_CAMPPINGSTYLE_BOSS) then +red = 255 +green = 0 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestBoss") +elseif (style == bj_CAMPPINGSTYLE_CONTROL_ALLY) then +red = 0 +green = 255 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestControlPoint") +elseif (style == bj_CAMPPINGSTYLE_CONTROL_NEUTRAL) then +red = 255 +green = 255 +blue = 255 +path = SkinManagerGetLocalPath("MinimapQuestControlPoint") +elseif (style == bj_CAMPPINGSTYLE_CONTROL_ENEMY) then +red = 255 +green = 0 +blue = 0 +path = SkinManagerGetLocalPath("MinimapQuestControlPoint") +end +CreateMinimapIconAtLocBJ(where, red, green, blue, path, FOG_OF_WAR_MASKED) +end + +function PlaySoundBJ(soundHandle) +bj_lastPlayedSound = soundHandle +if (soundHandle ~= nil) then +StartSound(soundHandle) +end +end + +function StopSoundBJ(soundHandle, fadeOut) +StopSound(soundHandle, false, fadeOut) +end + +function SetSoundVolumeBJ(soundHandle, volumePercent) +SetSoundVolume(soundHandle, PercentToInt(volumePercent, 127)) +end + +function SetSoundOffsetBJ(newOffset, soundHandle) +SetSoundPlayPosition(soundHandle, R2I(newOffset * 1000)) +end + +function SetSoundDistanceCutoffBJ(soundHandle, cutoff) +SetSoundDistanceCutoff(soundHandle, cutoff) +end + +function SetSoundPitchBJ(soundHandle, pitch) +SetSoundPitch(soundHandle, pitch) +end + +function SetSoundPositionLocBJ(soundHandle, loc, z) +SetSoundPosition(soundHandle, GetLocationX(loc), GetLocationY(loc), z) +end + +function AttachSoundToUnitBJ(soundHandle, whichUnit) +AttachSoundToUnit(soundHandle, whichUnit) +end + +function SetSoundConeAnglesBJ(soundHandle, inside, outside, outsideVolumePercent) +SetSoundConeAngles(soundHandle, inside, outside, PercentToInt(outsideVolumePercent, 127)) +end + +function KillSoundWhenDoneBJ(soundHandle) +KillSoundWhenDone(soundHandle) +end + +function PlaySoundAtPointBJ(soundHandle, volumePercent, loc, z) +SetSoundPositionLocBJ(soundHandle, loc, z) +SetSoundVolumeBJ(soundHandle, volumePercent) +PlaySoundBJ(soundHandle) +end + +function PlaySoundOnUnitBJ(soundHandle, volumePercent, whichUnit) +AttachSoundToUnitBJ(soundHandle, whichUnit) +SetSoundVolumeBJ(soundHandle, volumePercent) +PlaySoundBJ(soundHandle) +end + +function PlaySoundFromOffsetBJ(soundHandle, volumePercent, startingOffset) +SetSoundVolumeBJ(soundHandle, volumePercent) +PlaySoundBJ(soundHandle) +SetSoundOffsetBJ(startingOffset, soundHandle) +end + +function PlayMusicBJ(musicFileName) +bj_lastPlayedMusic = musicFileName +PlayMusic(musicFileName) +end + +function PlayMusicExBJ(musicFileName, startingOffset, fadeInTime) +bj_lastPlayedMusic = musicFileName +PlayMusicEx(musicFileName, R2I(startingOffset * 1000), R2I(fadeInTime * 1000)) +end + +function SetMusicOffsetBJ(newOffset) +SetMusicPlayPosition(R2I(newOffset * 1000)) +end + +function PlayThematicMusicBJ(musicName) +PlayThematicMusic(musicName) +end + +function PlayThematicMusicExBJ(musicName, startingOffset) +PlayThematicMusicEx(musicName, R2I(startingOffset * 1000)) +end + +function SetThematicMusicOffsetBJ(newOffset) +SetThematicMusicPlayPosition(R2I(newOffset * 1000)) +end + +function EndThematicMusicBJ() +EndThematicMusic() +end + +function StopMusicBJ(fadeOut) +StopMusic(fadeOut) +end + +function ResumeMusicBJ() +ResumeMusic() +end + +function SetMusicVolumeBJ(volumePercent) +SetMusicVolume(PercentToInt(volumePercent, 127)) +end + +function SetThematicMusicVolumeBJ(volumePercent) +SetThematicMusicVolume(PercentToInt(volumePercent, 127)) +end + +function GetSoundDurationBJ(soundHandle) +if (soundHandle == nil) then +return bj_NOTHING_SOUND_DURATION +else +return I2R(GetSoundDuration(soundHandle)) * 0.001 +end +end + +function GetSoundFileDurationBJ(musicFileName) +return I2R(GetSoundFileDuration(musicFileName)) * 0.001 +end + +function GetLastPlayedSound() +return bj_lastPlayedSound +end + +function GetLastPlayedMusic() +return bj_lastPlayedMusic +end + +function VolumeGroupSetVolumeBJ(vgroup, percent) +VolumeGroupSetVolume(vgroup, percent * 0.01) +end + +function SetCineModeVolumeGroupsImmediateBJ() +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_UNITMOVEMENT, bj_CINEMODE_VOLUME_UNITMOVEMENT) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_UNITSOUNDS, bj_CINEMODE_VOLUME_UNITSOUNDS) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_COMBAT, bj_CINEMODE_VOLUME_COMBAT) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_SPELLS, bj_CINEMODE_VOLUME_SPELLS) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_UI, bj_CINEMODE_VOLUME_UI) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_MUSIC, bj_CINEMODE_VOLUME_MUSIC) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_AMBIENTSOUNDS, bj_CINEMODE_VOLUME_AMBIENTSOUNDS) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_FIRE, bj_CINEMODE_VOLUME_FIRE) +end + +function SetCineModeVolumeGroupsBJ() +if bj_gameStarted then +SetCineModeVolumeGroupsImmediateBJ() +else +TimerStart(bj_volumeGroupsTimer, bj_GAME_STARTED_THRESHOLD, false, SetCineModeVolumeGroupsImmediateBJ) +end +end + +function SetSpeechVolumeGroupsImmediateBJ() +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_UNITMOVEMENT, bj_SPEECH_VOLUME_UNITMOVEMENT) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_UNITSOUNDS, bj_SPEECH_VOLUME_UNITSOUNDS) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_COMBAT, bj_SPEECH_VOLUME_COMBAT) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_SPELLS, bj_SPEECH_VOLUME_SPELLS) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_UI, bj_SPEECH_VOLUME_UI) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_MUSIC, bj_SPEECH_VOLUME_MUSIC) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_AMBIENTSOUNDS, bj_SPEECH_VOLUME_AMBIENTSOUNDS) +VolumeGroupSetVolume(SOUND_VOLUMEGROUP_FIRE, bj_SPEECH_VOLUME_FIRE) +end + +function SetSpeechVolumeGroupsBJ() +if bj_gameStarted then +SetSpeechVolumeGroupsImmediateBJ() +else +TimerStart(bj_volumeGroupsTimer, bj_GAME_STARTED_THRESHOLD, false, SetSpeechVolumeGroupsImmediateBJ) +end +end + +function VolumeGroupResetImmediateBJ() +VolumeGroupReset() +end + +function VolumeGroupResetBJ() +if bj_gameStarted then +VolumeGroupResetImmediateBJ() +else +TimerStart(bj_volumeGroupsTimer, bj_GAME_STARTED_THRESHOLD, false, VolumeGroupResetImmediateBJ) +end +end + +function GetSoundIsPlayingBJ(soundHandle) +return (GetSoundIsLoading(soundHandle) or GetSoundIsPlaying(soundHandle)) +end + +function WaitForSoundBJ(soundHandle, offset) +TriggerWaitForSound(soundHandle, offset) +end + +function SetMapMusicIndexedBJ(musicName, index) +SetMapMusic(musicName, false, index) +end + +function SetMapMusicRandomBJ(musicName) +SetMapMusic(musicName, true, 0) +end + +function ClearMapMusicBJ() +ClearMapMusic() +end + +function SetStackedSoundBJ(add, soundHandle, r) +local width = GetRectMaxX(r) - GetRectMinX(r) +local height = GetRectMaxY(r) - GetRectMinY(r) + +SetSoundPosition(soundHandle, GetRectCenterX(r), GetRectCenterY(r), 0) +if add then +RegisterStackedSound(soundHandle, true, width, height) +else +UnregisterStackedSound(soundHandle, true, width, height) +end +end + +function StartSoundForPlayerBJ(whichPlayer, soundHandle) +if (whichPlayer == GetLocalPlayer()) then +StartSound(soundHandle) +end +end + +function VolumeGroupSetVolumeForPlayerBJ(whichPlayer, vgroup, scale) +if (GetLocalPlayer() == whichPlayer) then +VolumeGroupSetVolume(vgroup, scale) +end +end + +function EnableDawnDusk(flag) +bj_useDawnDuskSounds = flag +end + +function IsDawnDuskEnabled() +return bj_useDawnDuskSounds +end + +function SetAmbientDaySound(inLabel) +local ToD + +if (bj_dayAmbientSound ~= nil) then +StopSound(bj_dayAmbientSound, true, true) +end +bj_dayAmbientSound = CreateMIDISound(inLabel, 20, 20) +ToD = GetTimeOfDay() +if (ToD >= bj_TOD_DAWN and ToD < bj_TOD_DUSK) then +StartSound(bj_dayAmbientSound) +end +end + +function SetAmbientNightSound(inLabel) +local ToD + +if (bj_nightAmbientSound ~= nil) then +StopSound(bj_nightAmbientSound, true, true) +end +bj_nightAmbientSound = CreateMIDISound(inLabel, 20, 20) +ToD = GetTimeOfDay() +if (ToD < bj_TOD_DAWN or ToD >= bj_TOD_DUSK) then +StartSound(bj_nightAmbientSound) +end +end + +function AddSpecialEffectLocBJ(where, modelName) +bj_lastCreatedEffect = AddSpecialEffectLoc(modelName, where) +return bj_lastCreatedEffect +end + +function AddSpecialEffectTargetUnitBJ(attachPointName, targetWidget, modelName) +bj_lastCreatedEffect = AddSpecialEffectTarget(modelName, targetWidget, attachPointName) +return bj_lastCreatedEffect +end + +function DestroyEffectBJ(whichEffect) +DestroyEffect(whichEffect) +end + +function GetLastCreatedEffectBJ() +return bj_lastCreatedEffect +end + +function CreateCommandButtonEffectBJ(abilityId, order) +bj_lastCreatedCommandButtonEffect = CreateCommandButtonEffect(abilityId, order) +return bj_lastCreatedCommandButtonEffect +end + +function CreateTrainCommandButtonEffectBJ(unitId) +bj_lastCreatedCommandButtonEffect = CreateCommandButtonEffect(FourCC("Aque"), UnitId2String(unitId)) +return bj_lastCreatedCommandButtonEffect +end + +function CreateUpgradeCommandButtonEffectBJ(techId) +bj_lastCreatedCommandButtonEffect = CreateUpgradeCommandButtonEffect(techId) +return bj_lastCreatedCommandButtonEffect +end + +function CreateCommonCommandButtonEffectBJ(order) +bj_lastCreatedCommandButtonEffect = CreateCommandButtonEffect(0, order) +return bj_lastCreatedCommandButtonEffect +end + +function CreateLearnCommandButtonEffectBJ(abilityId) +bj_lastCreatedCommandButtonEffect = CreateLearnCommandButtonEffect(abilityId) +return bj_lastCreatedCommandButtonEffect +end + +function CreateBuildCommandButtonEffectBJ(unitId) +local r = GetPlayerRace(GetLocalPlayer()) +local abilityId + +if (r == RACE_HUMAN) then +abilityId = FourCC("AHbu") +elseif (r == RACE_ORC) then +abilityId = FourCC("AObu") +elseif (r == RACE_UNDEAD) then +abilityId = FourCC("AUbu") +elseif (r == RACE_NIGHTELF) then +abilityId = FourCC("AEbu") +else +abilityId = FourCC("ANbu") +end +bj_lastCreatedCommandButtonEffect = CreateCommandButtonEffect(abilityId, UnitId2String(unitId)) +return bj_lastCreatedCommandButtonEffect +end + +function GetLastCreatedCommandButtonEffectBJ() +return bj_lastCreatedCommandButtonEffect +end + +function GetItemLoc(whichItem) +return Location(GetItemX(whichItem), GetItemY(whichItem)) +end + +function GetItemLifeBJ(whichWidget) +return GetWidgetLife(whichWidget) +end + +function SetItemLifeBJ(whichWidget, life) +SetWidgetLife(whichWidget, life) +end + +function AddHeroXPSwapped(xpToAdd, whichHero, showEyeCandy) +AddHeroXP(whichHero, xpToAdd, showEyeCandy) +end + +function SetHeroLevelBJ(whichHero, newLevel, showEyeCandy) +local oldLevel = GetHeroLevel(whichHero) + +if (newLevel > oldLevel) then +SetHeroLevel(whichHero, newLevel, showEyeCandy) +elseif (newLevel < oldLevel) then +UnitStripHeroLevel(whichHero, oldLevel - newLevel) +else +end +end + +function DecUnitAbilityLevelSwapped(abilcode, whichUnit) +return DecUnitAbilityLevel(whichUnit, abilcode) +end + +function IncUnitAbilityLevelSwapped(abilcode, whichUnit) +return IncUnitAbilityLevel(whichUnit, abilcode) +end + +function SetUnitAbilityLevelSwapped(abilcode, whichUnit, level) +return SetUnitAbilityLevel(whichUnit, abilcode, level) +end + +function GetUnitAbilityLevelSwapped(abilcode, whichUnit) +return GetUnitAbilityLevel(whichUnit, abilcode) +end + +function UnitHasBuffBJ(whichUnit, buffcode) +return (GetUnitAbilityLevel(whichUnit, buffcode) > 0) +end + +function UnitRemoveBuffBJ(buffcode, whichUnit) +return UnitRemoveAbility(whichUnit, buffcode) +end + +function UnitAddItemSwapped(whichItem, whichHero) +return UnitAddItem(whichHero, whichItem) +end + +function UnitAddItemByIdSwapped(itemId, whichHero) +bj_lastCreatedItem = CreateItem(itemId, GetUnitX(whichHero), GetUnitY(whichHero)) +UnitAddItem(whichHero, bj_lastCreatedItem) +return bj_lastCreatedItem +end + +function UnitRemoveItemSwapped(whichItem, whichHero) +bj_lastRemovedItem = whichItem +UnitRemoveItem(whichHero, whichItem) +end + +function UnitRemoveItemFromSlotSwapped(itemSlot, whichHero) +bj_lastRemovedItem = UnitRemoveItemFromSlot(whichHero, itemSlot - 1) +return bj_lastRemovedItem +end + +function CreateItemLoc(itemId, loc) +bj_lastCreatedItem = CreateItem(itemId, GetLocationX(loc), GetLocationY(loc)) +return bj_lastCreatedItem +end + +function GetLastCreatedItem() +return bj_lastCreatedItem +end + +function GetLastRemovedItem() +return bj_lastRemovedItem +end + +function SetItemPositionLoc(whichItem, loc) +SetItemPosition(whichItem, GetLocationX(loc), GetLocationY(loc)) +end + +function GetLearnedSkillBJ() +return GetLearnedSkill() +end + +function SuspendHeroXPBJ(flag, whichHero) +SuspendHeroXP(whichHero, not flag) +end + +function SetPlayerHandicapDamageBJ(whichPlayer, handicapPercent) +SetPlayerHandicapDamage(whichPlayer, handicapPercent * 0.01) +end + +function GetPlayerHandicapDamageBJ(whichPlayer) +return GetPlayerHandicapDamage(whichPlayer) * 100 +end + +function SetPlayerHandicapReviveTimeBJ(whichPlayer, handicapPercent) +SetPlayerHandicapReviveTime(whichPlayer, handicapPercent * 0.01) +end + +function GetPlayerHandicapReviveTimeBJ(whichPlayer) +return GetPlayerHandicapReviveTime(whichPlayer) * 100 +end + +function SetPlayerHandicapXPBJ(whichPlayer, handicapPercent) +SetPlayerHandicapXP(whichPlayer, handicapPercent * 0.01) +end + +function GetPlayerHandicapXPBJ(whichPlayer) +return GetPlayerHandicapXP(whichPlayer) * 100 +end + +function SetPlayerHandicapBJ(whichPlayer, handicapPercent) +SetPlayerHandicap(whichPlayer, handicapPercent * 0.01) +end + +function GetPlayerHandicapBJ(whichPlayer) +return GetPlayerHandicap(whichPlayer) * 100 +end + +function GetHeroStatBJ(whichStat, whichHero, includeBonuses) +if (whichStat == bj_HEROSTAT_STR) then +return GetHeroStr(whichHero, includeBonuses) +elseif (whichStat == bj_HEROSTAT_AGI) then +return GetHeroAgi(whichHero, includeBonuses) +elseif (whichStat == bj_HEROSTAT_INT) then +return GetHeroInt(whichHero, includeBonuses) +else +return 0 +end +end + +function SetHeroStat(whichHero, whichStat, value) +if (value <= 0) then +return +end +if (whichStat == bj_HEROSTAT_STR) then +SetHeroStr(whichHero, value, true) +elseif (whichStat == bj_HEROSTAT_AGI) then +SetHeroAgi(whichHero, value, true) +elseif (whichStat == bj_HEROSTAT_INT) then +SetHeroInt(whichHero, value, true) +else +end +end + +function ModifyHeroStat(whichStat, whichHero, modifyMethod, value) +if (modifyMethod == bj_MODIFYMETHOD_ADD) then +SetHeroStat(whichHero, whichStat, GetHeroStatBJ(whichStat, whichHero, false) + value) +elseif (modifyMethod == bj_MODIFYMETHOD_SUB) then +SetHeroStat(whichHero, whichStat, GetHeroStatBJ(whichStat, whichHero, false) - value) +elseif (modifyMethod == bj_MODIFYMETHOD_SET) then +SetHeroStat(whichHero, whichStat, value) +else +end +end + +function ModifyHeroSkillPoints(whichHero, modifyMethod, value) +if (modifyMethod == bj_MODIFYMETHOD_ADD) then +return UnitModifySkillPoints(whichHero, value) +elseif (modifyMethod == bj_MODIFYMETHOD_SUB) then +return UnitModifySkillPoints(whichHero, -value) +elseif (modifyMethod == bj_MODIFYMETHOD_SET) then +return UnitModifySkillPoints(whichHero, value - GetHeroSkillPoints(whichHero)) +else +return false +end +end + +function UnitDropItemPointBJ(whichUnit, whichItem, x, y) +return UnitDropItemPoint(whichUnit, whichItem, x, y) +end + +function UnitDropItemPointLoc(whichUnit, whichItem, loc) +return UnitDropItemPoint(whichUnit, whichItem, GetLocationX(loc), GetLocationY(loc)) +end + +function UnitDropItemSlotBJ(whichUnit, whichItem, slot) +return UnitDropItemSlot(whichUnit, whichItem, slot - 1) +end + +function UnitDropItemTargetBJ(whichUnit, whichItem, target) +return UnitDropItemTarget(whichUnit, whichItem, target) +end + +function UnitUseItemDestructable(whichUnit, whichItem, target) +return UnitUseItemTarget(whichUnit, whichItem, target) +end + +function UnitUseItemPointLoc(whichUnit, whichItem, loc) +return UnitUseItemPoint(whichUnit, whichItem, GetLocationX(loc), GetLocationY(loc)) +end + +function UnitItemInSlotBJ(whichUnit, itemSlot) +return UnitItemInSlot(whichUnit, itemSlot - 1) +end + +function GetInventoryIndexOfItemTypeBJ(whichUnit, itemId) +local index +local indexItem + +index = 0 +while (true) do +indexItem = UnitItemInSlot(whichUnit, index) +if ((indexItem ~= nil) and (GetItemTypeId(indexItem) == itemId)) then +return index + 1 +end +index = index + 1 +if (index >= bj_MAX_INVENTORY) then break end +end +return 0 +end + +function GetItemOfTypeFromUnitBJ(whichUnit, itemId) +local index = GetInventoryIndexOfItemTypeBJ(whichUnit, itemId) + +if (index == 0) then +return nil +else +return UnitItemInSlot(whichUnit, index - 1) +end +end + +function UnitHasItemOfTypeBJ(whichUnit, itemId) +return GetInventoryIndexOfItemTypeBJ(whichUnit, itemId) > 0 +end + +function UnitInventoryCount(whichUnit) +local index = 0 +local count = 0 + +while (true) do +if (UnitItemInSlot(whichUnit, index) ~= nil) then +count = count + 1 +end +index = index + 1 +if (index >= bj_MAX_INVENTORY) then break end +end +return count +end + +function UnitInventorySizeBJ(whichUnit) +return UnitInventorySize(whichUnit) +end + +function SetItemInvulnerableBJ(whichItem, flag) +SetItemInvulnerable(whichItem, flag) +end + +function SetItemDropOnDeathBJ(whichItem, flag) +SetItemDropOnDeath(whichItem, flag) +end + +function SetItemDroppableBJ(whichItem, flag) +SetItemDroppable(whichItem, flag) +end + +function SetItemPlayerBJ(whichItem, whichPlayer, changeColor) +SetItemPlayer(whichItem, whichPlayer, changeColor) +end + +function SetItemVisibleBJ(show, whichItem) +SetItemVisible(whichItem, show) +end + +function IsItemHiddenBJ(whichItem) +return not IsItemVisible(whichItem) +end + +function ChooseRandomItemBJ(level) +return ChooseRandomItem(level) +end + +function ChooseRandomItemExBJ(level, whichType) +return ChooseRandomItemEx(whichType, level) +end + +function ChooseRandomNPBuildingBJ() +return ChooseRandomNPBuilding() +end + +function ChooseRandomCreepBJ(level) +return ChooseRandomCreep(level) +end + +function EnumItemsInRectBJ(r, actionFunc) +EnumItemsInRect(r, nil, actionFunc) +end + +function RandomItemInRectBJEnum() +bj_itemRandomConsidered = bj_itemRandomConsidered + 1 +if (GetRandomInt(1, bj_itemRandomConsidered) == 1) then +bj_itemRandomCurrentPick = GetEnumItem() +end +end + +function RandomItemInRectBJ(r, filter) +bj_itemRandomConsidered = 0 +bj_itemRandomCurrentPick = nil +EnumItemsInRect(r, filter, RandomItemInRectBJEnum) +DestroyBoolExpr(filter) +return bj_itemRandomCurrentPick +end + +function RandomItemInRectSimpleBJ(r) +return RandomItemInRectBJ(r, nil) +end + +function CheckItemStatus(whichItem, status) +if (status == bj_ITEM_STATUS_HIDDEN) then +return not IsItemVisible(whichItem) +elseif (status == bj_ITEM_STATUS_OWNED) then +return IsItemOwned(whichItem) +elseif (status == bj_ITEM_STATUS_INVULNERABLE) then +return IsItemInvulnerable(whichItem) +elseif (status == bj_ITEM_STATUS_POWERUP) then +return IsItemPowerup(whichItem) +elseif (status == bj_ITEM_STATUS_SELLABLE) then +return IsItemSellable(whichItem) +elseif (status == bj_ITEM_STATUS_PAWNABLE) then +return IsItemPawnable(whichItem) +else +return false +end +end + +function CheckItemcodeStatus(itemId, status) +if (status == bj_ITEMCODE_STATUS_POWERUP) then +return IsItemIdPowerup(itemId) +elseif (status == bj_ITEMCODE_STATUS_SELLABLE) then +return IsItemIdSellable(itemId) +elseif (status == bj_ITEMCODE_STATUS_PAWNABLE) then +return IsItemIdPawnable(itemId) +else +return false +end +end + +function UnitId2OrderIdBJ(unitId) +return unitId +end + +function String2UnitIdBJ(unitIdString) +return UnitId(unitIdString) +end + +function UnitId2StringBJ(unitId) +local unitString = UnitId2String(unitId) + +if (unitString ~= "") then +return unitString +end +return "" +end + +function String2OrderIdBJ(orderIdString) +local orderId + +orderId = OrderId(orderIdString) +if (orderId ~= 0) then +return orderId +end +orderId = UnitId(orderIdString) +if (orderId ~= 0) then +return orderId +end +return 0 +end + +function OrderId2StringBJ(orderId) +local orderString + +orderString = OrderId2String(orderId) +if (orderString ~= "") then +return orderString +end +orderString = UnitId2String(orderId) +if (orderString ~= "") then +return orderString +end +return "" +end + +function GetIssuedOrderIdBJ() +return GetIssuedOrderId() +end + +function GetKillingUnitBJ() +return GetKillingUnit() +end + +function CreateUnitAtLocSaveLast(id, unitid, loc, face) +if (unitid == FourCC("ugol")) then +bj_lastCreatedUnit = CreateBlightedGoldmine(id, GetLocationX(loc), GetLocationY(loc), face) +else +bj_lastCreatedUnit = CreateUnitAtLoc(id, unitid, loc, face) +end +return bj_lastCreatedUnit +end + +function GetLastCreatedUnit() +return bj_lastCreatedUnit +end + +function CreateNUnitsAtLoc(count, unitId, whichPlayer, loc, face) +GroupClear(bj_lastCreatedGroup) +while (true) do +count = count - 1 +if (count < 0) then break end +CreateUnitAtLocSaveLast(whichPlayer, unitId, loc, face) +GroupAddUnit(bj_lastCreatedGroup, bj_lastCreatedUnit) +end +return bj_lastCreatedGroup +end + +function CreateNUnitsAtLocFacingLocBJ(count, unitId, whichPlayer, loc, lookAt) +return CreateNUnitsAtLoc(count, unitId, whichPlayer, loc, AngleBetweenPoints(loc, lookAt)) +end + +function GetLastCreatedGroupEnum() +GroupAddUnit(bj_groupLastCreatedDest, GetEnumUnit()) +end + +function GetLastCreatedGroup() +bj_groupLastCreatedDest = CreateGroup() +ForGroup(bj_lastCreatedGroup, GetLastCreatedGroupEnum) +return bj_groupLastCreatedDest +end + +function CreateCorpseLocBJ(unitid, whichPlayer, loc) +bj_lastCreatedUnit = CreateCorpse(whichPlayer, unitid, GetLocationX(loc), GetLocationY(loc), GetRandomReal(0, 360)) +return bj_lastCreatedUnit +end + +function UnitSuspendDecayBJ(suspend, whichUnit) +UnitSuspendDecay(whichUnit, suspend) +end + +function DelayedSuspendDecayStopAnimEnum() +local enumUnit = GetEnumUnit() + +if (GetUnitState(enumUnit, UNIT_STATE_LIFE) <= 0) then +SetUnitTimeScale(enumUnit, 0.0001) +end +end + +function DelayedSuspendDecayBoneEnum() +local enumUnit = GetEnumUnit() + +if (GetUnitState(enumUnit, UNIT_STATE_LIFE) <= 0) then +UnitSuspendDecay(enumUnit, true) +SetUnitTimeScale(enumUnit, 0.0001) +end +end + +function DelayedSuspendDecayFleshEnum() +local enumUnit = GetEnumUnit() + +if (GetUnitState(enumUnit, UNIT_STATE_LIFE) <= 0) then +UnitSuspendDecay(enumUnit, true) +SetUnitTimeScale(enumUnit, 10.0) +SetUnitAnimation(enumUnit, "decay flesh") +end +end + +function DelayedSuspendDecay() +local boneGroup +local fleshGroup + +boneGroup = bj_suspendDecayBoneGroup +fleshGroup = bj_suspendDecayFleshGroup +bj_suspendDecayBoneGroup = CreateGroup() +bj_suspendDecayFleshGroup = CreateGroup() +ForGroup(fleshGroup, DelayedSuspendDecayStopAnimEnum) +ForGroup(boneGroup, DelayedSuspendDecayStopAnimEnum) +TriggerSleepAction(bj_CORPSE_MAX_DEATH_TIME) +ForGroup(fleshGroup, DelayedSuspendDecayFleshEnum) +ForGroup(boneGroup, DelayedSuspendDecayBoneEnum) +TriggerSleepAction(0.05) +ForGroup(fleshGroup, DelayedSuspendDecayStopAnimEnum) +DestroyGroup(boneGroup) +DestroyGroup(fleshGroup) +end + +function DelayedSuspendDecayCreate() +bj_delayedSuspendDecayTrig = CreateTrigger() +TriggerRegisterTimerExpireEvent(bj_delayedSuspendDecayTrig, bj_delayedSuspendDecayTimer) +TriggerAddAction(bj_delayedSuspendDecayTrig, DelayedSuspendDecay) +end + +function CreatePermanentCorpseLocBJ(style, unitid, whichPlayer, loc, facing) +bj_lastCreatedUnit = CreateCorpse(whichPlayer, unitid, GetLocationX(loc), GetLocationY(loc), facing) +SetUnitBlendTime(bj_lastCreatedUnit, 0) +if (style == bj_CORPSETYPE_FLESH) then +SetUnitAnimation(bj_lastCreatedUnit, "decay flesh") +GroupAddUnit(bj_suspendDecayFleshGroup, bj_lastCreatedUnit) +elseif (style == bj_CORPSETYPE_BONE) then +SetUnitAnimation(bj_lastCreatedUnit, "decay bone") +GroupAddUnit(bj_suspendDecayBoneGroup, bj_lastCreatedUnit) +else +SetUnitAnimation(bj_lastCreatedUnit, "decay bone") +GroupAddUnit(bj_suspendDecayBoneGroup, bj_lastCreatedUnit) +end +TimerStart(bj_delayedSuspendDecayTimer, 0.05, false, nil) +return bj_lastCreatedUnit +end + +function GetUnitStateSwap(whichState, whichUnit) +return GetUnitState(whichUnit, whichState) +end + +function GetUnitStatePercent(whichUnit, whichState, whichMaxState) +local value = GetUnitState(whichUnit, whichState) +local maxValue = GetUnitState(whichUnit, whichMaxState) + +if ((whichUnit == nil) or (maxValue == 0)) then +return 0.0 +end +return value / maxValue * 100.0 +end + +function GetUnitLifePercent(whichUnit) +return GetUnitStatePercent(whichUnit, UNIT_STATE_LIFE, UNIT_STATE_MAX_LIFE) +end + +function GetUnitManaPercent(whichUnit) +return GetUnitStatePercent(whichUnit, UNIT_STATE_MANA, UNIT_STATE_MAX_MANA) +end + +function SelectUnitSingle(whichUnit) +ClearSelection() +SelectUnit(whichUnit, true) +end + +function SelectGroupBJEnum() +SelectUnit(GetEnumUnit(), true) +end + +function SelectGroupBJ(g) +ClearSelection() +ForGroup(g, SelectGroupBJEnum) +end + +function SelectUnitAdd(whichUnit) +SelectUnit(whichUnit, true) +end + +function SelectUnitRemove(whichUnit) +SelectUnit(whichUnit, false) +end + +function ClearSelectionForPlayer(whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +ClearSelection() +end +end + +function SelectUnitForPlayerSingle(whichUnit, whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +ClearSelection() +SelectUnit(whichUnit, true) +end +end + +function SelectGroupForPlayerBJ(g, whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +ClearSelection() +ForGroup(g, SelectGroupBJEnum) +end +end + +function SelectUnitAddForPlayer(whichUnit, whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +SelectUnit(whichUnit, true) +end +end + +function SelectUnitRemoveForPlayer(whichUnit, whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +SelectUnit(whichUnit, false) +end +end + +function SetUnitLifeBJ(whichUnit, newValue) +SetUnitState(whichUnit, UNIT_STATE_LIFE, RMaxBJ(0, newValue)) +end + +function SetUnitManaBJ(whichUnit, newValue) +SetUnitState(whichUnit, UNIT_STATE_MANA, RMaxBJ(0, newValue)) +end + +function SetUnitLifePercentBJ(whichUnit, percent) +SetUnitState(whichUnit, UNIT_STATE_LIFE, GetUnitState(whichUnit, UNIT_STATE_MAX_LIFE) * RMaxBJ(0, percent) * 0.01) +end + +function SetUnitManaPercentBJ(whichUnit, percent) +SetUnitState(whichUnit, UNIT_STATE_MANA, GetUnitState(whichUnit, UNIT_STATE_MAX_MANA) * RMaxBJ(0, percent) * 0.01) +end + +function IsUnitDeadBJ(whichUnit) +return GetUnitState(whichUnit, UNIT_STATE_LIFE) <= 0 +end + +function IsUnitAliveBJ(whichUnit) +return not IsUnitDeadBJ(whichUnit) +end + +function IsUnitGroupDeadBJEnum() +if not IsUnitDeadBJ(GetEnumUnit()) then +bj_isUnitGroupDeadResult = false +end +end + +function IsUnitGroupDeadBJ(g) +local wantDestroy = bj_wantDestroyGroup + +bj_wantDestroyGroup = false +bj_isUnitGroupDeadResult = true +ForGroup(g, IsUnitGroupDeadBJEnum) +if (wantDestroy) then +DestroyGroup(g) +end +return bj_isUnitGroupDeadResult +end + +function IsUnitGroupEmptyBJEnum() +bj_isUnitGroupEmptyResult = false +end + +function IsUnitGroupEmptyBJ(g) +local wantDestroy = bj_wantDestroyGroup + +bj_wantDestroyGroup = false +bj_isUnitGroupEmptyResult = true +ForGroup(g, IsUnitGroupEmptyBJEnum) +if (wantDestroy) then +DestroyGroup(g) +end +return bj_isUnitGroupEmptyResult +end + +function IsUnitGroupInRectBJEnum() +if not RectContainsUnit(bj_isUnitGroupInRectRect, GetEnumUnit()) then +bj_isUnitGroupInRectResult = false +end +end + +function IsUnitGroupInRectBJ(g, r) +bj_isUnitGroupInRectResult = true +bj_isUnitGroupInRectRect = r +ForGroup(g, IsUnitGroupInRectBJEnum) +return bj_isUnitGroupInRectResult +end + +function IsUnitHiddenBJ(whichUnit) +return IsUnitHidden(whichUnit) +end + +function ShowUnitHide(whichUnit) +ShowUnit(whichUnit, false) +end + +function ShowUnitShow(whichUnit) +if (IsUnitType(whichUnit, UNIT_TYPE_HERO) and IsUnitDeadBJ(whichUnit)) then +return +end +ShowUnit(whichUnit, true) +end + +function IssueHauntOrderAtLocBJFilter() +return GetUnitTypeId(GetFilterUnit()) == FourCC("ngol") +end + +function IssueHauntOrderAtLocBJ(whichPeon, loc) +local g = nil +local goldMine = nil + +g = CreateGroup() +GroupEnumUnitsInRangeOfLoc(g, loc, 2 * bj_CELLWIDTH, filterIssueHauntOrderAtLocBJ) +goldMine = FirstOfGroup(g) +DestroyGroup(g) +if (goldMine == nil) then +return false +end +return IssueTargetOrderById(whichPeon, FourCC("ugol"), goldMine) +end + +function IssueBuildOrderByIdLocBJ(whichPeon, unitId, loc) +if (unitId == FourCC("ugol")) then +return IssueHauntOrderAtLocBJ(whichPeon, loc) +else +return IssueBuildOrderById(whichPeon, unitId, GetLocationX(loc), GetLocationY(loc)) +end +end + +function IssueTrainOrderByIdBJ(whichUnit, unitId) +return IssueImmediateOrderById(whichUnit, unitId) +end + +function GroupTrainOrderByIdBJ(g, unitId) +return GroupImmediateOrderById(g, unitId) +end + +function IssueUpgradeOrderByIdBJ(whichUnit, techId) +return IssueImmediateOrderById(whichUnit, techId) +end + +function GetAttackedUnitBJ() +return GetTriggerUnit() +end + +function SetUnitFlyHeightBJ(whichUnit, newHeight, rate) +SetUnitFlyHeight(whichUnit, newHeight, rate) +end + +function SetUnitTurnSpeedBJ(whichUnit, turnSpeed) +SetUnitTurnSpeed(whichUnit, turnSpeed) +end + +function SetUnitPropWindowBJ(whichUnit, propWindow) +local angle = propWindow + +if (angle <= 0) then +angle = 1.0 +elseif (angle >= 360) then +angle = 359.0 +end +angle = angle * bj_DEGTORAD +SetUnitPropWindow(whichUnit, angle) +end + +function GetUnitPropWindowBJ(whichUnit) +return GetUnitPropWindow(whichUnit) * bj_RADTODEG +end + +function GetUnitDefaultPropWindowBJ(whichUnit) +return GetUnitDefaultPropWindow(whichUnit) +end + +function SetUnitBlendTimeBJ(whichUnit, blendTime) +SetUnitBlendTime(whichUnit, blendTime) +end + +function SetUnitAcquireRangeBJ(whichUnit, acquireRange) +SetUnitAcquireRange(whichUnit, acquireRange) +end + +function UnitSetCanSleepBJ(whichUnit, canSleep) +UnitAddSleep(whichUnit, canSleep) +end + +function UnitCanSleepBJ(whichUnit) +return UnitCanSleep(whichUnit) +end + +function UnitWakeUpBJ(whichUnit) +UnitWakeUp(whichUnit) +end + +function UnitIsSleepingBJ(whichUnit) +return UnitIsSleeping(whichUnit) +end + +function WakePlayerUnitsEnum() +UnitWakeUp(GetEnumUnit()) +end + +function WakePlayerUnits(whichPlayer) +local g = CreateGroup() + +GroupEnumUnitsOfPlayer(g, whichPlayer, nil) +ForGroup(g, WakePlayerUnitsEnum) +DestroyGroup(g) +end + +function EnableCreepSleepBJ(enable) +SetPlayerState(Player(PLAYER_NEUTRAL_AGGRESSIVE), PLAYER_STATE_NO_CREEP_SLEEP, IntegerTertiaryOp(enable, 0, 1)) +if (not enable) then +WakePlayerUnits(Player(PLAYER_NEUTRAL_AGGRESSIVE)) +end +end + +function UnitGenerateAlarms(whichUnit, generate) +return UnitIgnoreAlarm(whichUnit, not generate) +end + +function DoesUnitGenerateAlarms(whichUnit) +return not UnitIgnoreAlarmToggled(whichUnit) +end + +function PauseAllUnitsBJEnum() +PauseUnit(GetEnumUnit(), bj_pauseAllUnitsFlag) +end + +function PauseAllUnitsBJ(pause) +local index +local indexPlayer +local g + +bj_pauseAllUnitsFlag = pause +g = CreateGroup() +index = 0 +while (true) do +indexPlayer = Player(index) +if (GetPlayerController(indexPlayer) == MAP_CONTROL_COMPUTER) then +PauseCompAI(indexPlayer, pause) +end +GroupEnumUnitsOfPlayer(g, indexPlayer, nil) +ForGroup(g, PauseAllUnitsBJEnum) +GroupClear(g) +index = index + 1 +if (index == bj_MAX_PLAYER_SLOTS) then break end +end +DestroyGroup(g) +end + +function PauseUnitBJ(pause, whichUnit) +PauseUnit(whichUnit, pause) +end + +function IsUnitPausedBJ(whichUnit) +return IsUnitPaused(whichUnit) +end + +function UnitPauseTimedLifeBJ(flag, whichUnit) +UnitPauseTimedLife(whichUnit, flag) +end + +function UnitApplyTimedLifeBJ(duration, buffId, whichUnit) +UnitApplyTimedLife(whichUnit, buffId, duration) +end + +function UnitShareVisionBJ(share, whichUnit, whichPlayer) +UnitShareVision(whichUnit, whichPlayer, share) +end + +function UnitRemoveBuffsBJ(buffType, whichUnit) +if (buffType == bj_REMOVEBUFFS_POSITIVE) then +UnitRemoveBuffs(whichUnit, true, false) +elseif (buffType == bj_REMOVEBUFFS_NEGATIVE) then +UnitRemoveBuffs(whichUnit, false, true) +elseif (buffType == bj_REMOVEBUFFS_ALL) then +UnitRemoveBuffs(whichUnit, true, true) +elseif (buffType == bj_REMOVEBUFFS_NONTLIFE) then +UnitRemoveBuffsEx(whichUnit, true, true, false, false, false, true, false) +else +end +end + +function UnitRemoveBuffsExBJ(polarity, resist, whichUnit, bTLife, bAura) +local bPos = ((polarity == bj_BUFF_POLARITY_EITHER) or (polarity == bj_BUFF_POLARITY_POSITIVE)) +local bNeg = ((polarity == bj_BUFF_POLARITY_EITHER) or (polarity == bj_BUFF_POLARITY_NEGATIVE)) +local bMagic = ((resist == bj_BUFF_RESIST_BOTH) or (resist == bj_BUFF_RESIST_MAGIC)) +local bPhys = ((resist == bj_BUFF_RESIST_BOTH) or (resist == bj_BUFF_RESIST_PHYSICAL)) + +UnitRemoveBuffsEx(whichUnit, bPos, bNeg, bMagic, bPhys, bTLife, bAura, false) +end + +function UnitCountBuffsExBJ(polarity, resist, whichUnit, bTLife, bAura) +local bPos = ((polarity == bj_BUFF_POLARITY_EITHER) or (polarity == bj_BUFF_POLARITY_POSITIVE)) +local bNeg = ((polarity == bj_BUFF_POLARITY_EITHER) or (polarity == bj_BUFF_POLARITY_NEGATIVE)) +local bMagic = ((resist == bj_BUFF_RESIST_BOTH) or (resist == bj_BUFF_RESIST_MAGIC)) +local bPhys = ((resist == bj_BUFF_RESIST_BOTH) or (resist == bj_BUFF_RESIST_PHYSICAL)) + +return UnitCountBuffsEx(whichUnit, bPos, bNeg, bMagic, bPhys, bTLife, bAura, false) +end + +function UnitRemoveAbilityBJ(abilityId, whichUnit) +return UnitRemoveAbility(whichUnit, abilityId) +end + +function UnitAddAbilityBJ(abilityId, whichUnit) +return UnitAddAbility(whichUnit, abilityId) +end + +function UnitRemoveTypeBJ(whichType, whichUnit) +return UnitRemoveType(whichUnit, whichType) +end + +function UnitAddTypeBJ(whichType, whichUnit) +return UnitAddType(whichUnit, whichType) +end + +function UnitMakeAbilityPermanentBJ(permanent, abilityId, whichUnit) +return UnitMakeAbilityPermanent(whichUnit, permanent, abilityId) +end + +function SetUnitExplodedBJ(whichUnit, exploded) +SetUnitExploded(whichUnit, exploded) +end + +function ExplodeUnitBJ(whichUnit) +SetUnitExploded(whichUnit, true) +KillUnit(whichUnit) +end + +function GetTransportUnitBJ() +return GetTransportUnit() +end + +function GetLoadedUnitBJ() +return GetLoadedUnit() +end + +function IsUnitInTransportBJ(whichUnit, whichTransport) +return IsUnitInTransport(whichUnit, whichTransport) +end + +function IsUnitLoadedBJ(whichUnit) +return IsUnitLoaded(whichUnit) +end + +function IsUnitIllusionBJ(whichUnit) +return IsUnitIllusion(whichUnit) +end + +function ReplaceUnitBJ(whichUnit, newUnitId, unitStateMethod) +local oldUnit = whichUnit +local newUnit +local wasHidden +local index +local indexItem +local oldRatio + +if (oldUnit == nil) then +bj_lastReplacedUnit = oldUnit +return oldUnit +end +wasHidden = IsUnitHidden(oldUnit) +ShowUnit(oldUnit, false) +if (newUnitId == FourCC("ugol")) then +newUnit = CreateBlightedGoldmine(GetOwningPlayer(oldUnit), GetUnitX(oldUnit), GetUnitY(oldUnit), GetUnitFacing(oldUnit)) +else +newUnit = CreateUnit(GetOwningPlayer(oldUnit), newUnitId, GetUnitX(oldUnit), GetUnitY(oldUnit), GetUnitFacing(oldUnit)) +end +if (unitStateMethod == bj_UNIT_STATE_METHOD_RELATIVE) then +if (GetUnitState(oldUnit, UNIT_STATE_MAX_LIFE) > 0) then +oldRatio = GetUnitState(oldUnit, UNIT_STATE_LIFE) / GetUnitState(oldUnit, UNIT_STATE_MAX_LIFE) +SetUnitState(newUnit, UNIT_STATE_LIFE, oldRatio * GetUnitState(newUnit, UNIT_STATE_MAX_LIFE)) +end +if ((GetUnitState(oldUnit, UNIT_STATE_MAX_MANA) > 0) and (GetUnitState(newUnit, UNIT_STATE_MAX_MANA) > 0)) then +oldRatio = GetUnitState(oldUnit, UNIT_STATE_MANA) / GetUnitState(oldUnit, UNIT_STATE_MAX_MANA) +SetUnitState(newUnit, UNIT_STATE_MANA, oldRatio * GetUnitState(newUnit, UNIT_STATE_MAX_MANA)) +end +elseif (unitStateMethod == bj_UNIT_STATE_METHOD_ABSOLUTE) then +SetUnitState(newUnit, UNIT_STATE_LIFE, GetUnitState(oldUnit, UNIT_STATE_LIFE)) +if (GetUnitState(newUnit, UNIT_STATE_MAX_MANA) > 0) then +SetUnitState(newUnit, UNIT_STATE_MANA, GetUnitState(oldUnit, UNIT_STATE_MANA)) +end +elseif (unitStateMethod == bj_UNIT_STATE_METHOD_DEFAULTS) then +elseif (unitStateMethod == bj_UNIT_STATE_METHOD_MAXIMUM) then +SetUnitState(newUnit, UNIT_STATE_LIFE, GetUnitState(newUnit, UNIT_STATE_MAX_LIFE)) +SetUnitState(newUnit, UNIT_STATE_MANA, GetUnitState(newUnit, UNIT_STATE_MAX_MANA)) +else +end +SetResourceAmount(newUnit, GetResourceAmount(oldUnit)) +if (IsUnitType(oldUnit, UNIT_TYPE_HERO) and IsUnitType(newUnit, UNIT_TYPE_HERO)) then +SetHeroXP(newUnit, GetHeroXP(oldUnit), false) +index = 0 +while (true) do +indexItem = UnitItemInSlot(oldUnit, index) +if (indexItem ~= nil) then +UnitRemoveItem(oldUnit, indexItem) +UnitAddItem(newUnit, indexItem) +end +index = index + 1 +if (index >= bj_MAX_INVENTORY) then break end +end +end +if wasHidden then +KillUnit(oldUnit) +RemoveUnit(oldUnit) +else +RemoveUnit(oldUnit) +end +bj_lastReplacedUnit = newUnit +return newUnit +end + +function GetLastReplacedUnitBJ() +return bj_lastReplacedUnit +end + +function SetUnitPositionLocFacingBJ(whichUnit, loc, facing) +SetUnitPositionLoc(whichUnit, loc) +SetUnitFacing(whichUnit, facing) +end + +function SetUnitPositionLocFacingLocBJ(whichUnit, loc, lookAt) +SetUnitPositionLoc(whichUnit, loc) +SetUnitFacing(whichUnit, AngleBetweenPoints(loc, lookAt)) +end + +function AddItemToStockBJ(itemId, whichUnit, currentStock, stockMax) +AddItemToStock(whichUnit, itemId, currentStock, stockMax) +end + +function AddUnitToStockBJ(unitId, whichUnit, currentStock, stockMax) +AddUnitToStock(whichUnit, unitId, currentStock, stockMax) +end + +function RemoveItemFromStockBJ(itemId, whichUnit) +RemoveItemFromStock(whichUnit, itemId) +end + +function RemoveUnitFromStockBJ(unitId, whichUnit) +RemoveUnitFromStock(whichUnit, unitId) +end + +function SetUnitUseFoodBJ(enable, whichUnit) +SetUnitUseFood(whichUnit, enable) +end + +function UnitDamagePointLoc(whichUnit, delay, radius, loc, amount, whichAttack, whichDamage) +return UnitDamagePoint(whichUnit, delay, radius, GetLocationX(loc), GetLocationY(loc), amount, true, false, whichAttack, whichDamage, WEAPON_TYPE_WHOKNOWS) +end + +function UnitDamageTargetBJ(whichUnit, target, amount, whichAttack, whichDamage) +return UnitDamageTarget(whichUnit, target, amount, true, false, whichAttack, whichDamage, WEAPON_TYPE_WHOKNOWS) +end + +function CreateDestructableLoc(objectid, loc, facing, scale, variation) +bj_lastCreatedDestructable = CreateDestructable(objectid, GetLocationX(loc), GetLocationY(loc), facing, scale, variation) +return bj_lastCreatedDestructable +end + +function CreateDeadDestructableLocBJ(objectid, loc, facing, scale, variation) +bj_lastCreatedDestructable = CreateDeadDestructable(objectid, GetLocationX(loc), GetLocationY(loc), facing, scale, variation) +return bj_lastCreatedDestructable +end + +function GetLastCreatedDestructable() +return bj_lastCreatedDestructable +end + +function ShowDestructableBJ(flag, d) +ShowDestructable(d, flag) +end + +function SetDestructableInvulnerableBJ(d, flag) +SetDestructableInvulnerable(d, flag) +end + +function IsDestructableInvulnerableBJ(d) +return IsDestructableInvulnerable(d) +end + +function GetDestructableLoc(whichDestructable) +return Location(GetDestructableX(whichDestructable), GetDestructableY(whichDestructable)) +end + +function EnumDestructablesInRectAll(r, actionFunc) +EnumDestructablesInRect(r, nil, actionFunc) +end + +function EnumDestructablesInCircleBJFilter() +local destLoc = GetDestructableLoc(GetFilterDestructable()) +local result + +result = DistanceBetweenPoints(destLoc, bj_enumDestructableCenter) <= bj_enumDestructableRadius +RemoveLocation(destLoc) +return result +end + +function IsDestructableDeadBJ(d) +return GetDestructableLife(d) <= 0 +end + +function IsDestructableAliveBJ(d) +return not IsDestructableDeadBJ(d) +end + +function RandomDestructableInRectBJEnum() +bj_destRandomConsidered = bj_destRandomConsidered + 1 +if (GetRandomInt(1, bj_destRandomConsidered) == 1) then +bj_destRandomCurrentPick = GetEnumDestructable() +end +end + +function RandomDestructableInRectBJ(r, filter) +bj_destRandomConsidered = 0 +bj_destRandomCurrentPick = nil +EnumDestructablesInRect(r, filter, RandomDestructableInRectBJEnum) +DestroyBoolExpr(filter) +return bj_destRandomCurrentPick +end + +function RandomDestructableInRectSimpleBJ(r) +return RandomDestructableInRectBJ(r, nil) +end + +function EnumDestructablesInCircleBJ(radius, loc, actionFunc) +local r + +if (radius >= 0) then +bj_enumDestructableCenter = loc +bj_enumDestructableRadius = radius +r = GetRectFromCircleBJ(loc, radius) +EnumDestructablesInRect(r, filterEnumDestructablesInCircleBJ, actionFunc) +RemoveRect(r) +end +end + +function SetDestructableLifePercentBJ(d, percent) +SetDestructableLife(d, GetDestructableMaxLife(d) * percent * 0.01) +end + +function SetDestructableMaxLifeBJ(d, max) +SetDestructableMaxLife(d, max) +end + +function ModifyGateBJ(gateOperation, d) +if (gateOperation == bj_GATEOPERATION_CLOSE) then +if (GetDestructableLife(d) <= 0) then +DestructableRestoreLife(d, GetDestructableMaxLife(d), true) +end +SetDestructableAnimation(d, "stand") +elseif (gateOperation == bj_GATEOPERATION_OPEN) then +if (GetDestructableLife(d) > 0) then +KillDestructable(d) +end +SetDestructableAnimation(d, "death alternate") +elseif (gateOperation == bj_GATEOPERATION_DESTROY) then +if (GetDestructableLife(d) > 0) then +KillDestructable(d) +end +SetDestructableAnimation(d, "death") +else +end +end + +function GetElevatorHeight(d) +local height + +height = 1 + R2I(GetDestructableOccluderHeight(d) / bj_CLIFFHEIGHT) +if ((height < 1) or (height > 3)) then +height = 1 +end +return height +end + +function ChangeElevatorHeight(d, newHeight) +local oldHeight + +newHeight = IMaxBJ(1, newHeight) +newHeight = IMinBJ(3, newHeight) +oldHeight = GetElevatorHeight(d) +SetDestructableOccluderHeight(d, bj_CLIFFHEIGHT * (newHeight - 1)) +if (newHeight == 1) then +if (oldHeight == 2) then +SetDestructableAnimation(d, "birth") +QueueDestructableAnimation(d, "stand") +elseif (oldHeight == 3) then +SetDestructableAnimation(d, "birth third") +QueueDestructableAnimation(d, "stand") +else +SetDestructableAnimation(d, "stand") +end +elseif (newHeight == 2) then +if (oldHeight == 1) then +SetDestructableAnimation(d, "death") +QueueDestructableAnimation(d, "stand second") +elseif (oldHeight == 3) then +SetDestructableAnimation(d, "birth second") +QueueDestructableAnimation(d, "stand second") +else +SetDestructableAnimation(d, "stand second") +end +elseif (newHeight == 3) then +if (oldHeight == 1) then +SetDestructableAnimation(d, "death third") +QueueDestructableAnimation(d, "stand third") +elseif (oldHeight == 2) then +SetDestructableAnimation(d, "death second") +QueueDestructableAnimation(d, "stand third") +else +SetDestructableAnimation(d, "stand third") +end +else +end +end + +function NudgeUnitsInRectEnum() +local nudgee = GetEnumUnit() + +SetUnitPosition(nudgee, GetUnitX(nudgee), GetUnitY(nudgee)) +end + +function NudgeItemsInRectEnum() +local nudgee = GetEnumItem() + +SetItemPosition(nudgee, GetItemX(nudgee), GetItemY(nudgee)) +end + +function NudgeObjectsInRect(nudgeArea) +local g + +g = CreateGroup() +GroupEnumUnitsInRect(g, nudgeArea, nil) +ForGroup(g, NudgeUnitsInRectEnum) +DestroyGroup(g) +EnumItemsInRect(nudgeArea, nil, NudgeItemsInRectEnum) +end + +function NearbyElevatorExistsEnum() +local d = GetEnumDestructable() +local dType = GetDestructableTypeId(d) + +if ((dType == bj_ELEVATOR_CODE01) or (dType == bj_ELEVATOR_CODE02)) then +bj_elevatorNeighbor = d +end +end + +function NearbyElevatorExists(x, y) +local findThreshold = 32.0 +local r + +r = Rect(x - findThreshold, y - findThreshold, x + findThreshold, y + findThreshold) +bj_elevatorNeighbor = nil +EnumDestructablesInRect(r, nil, NearbyElevatorExistsEnum) +RemoveRect(r) +return bj_elevatorNeighbor ~= nil +end + +function FindElevatorWallBlockerEnum() +bj_elevatorWallBlocker = GetEnumDestructable() +end + +function ChangeElevatorWallBlocker(x, y, facing, open) +local blocker = nil +local findThreshold = 32.0 +local nudgeLength = 4.25 * bj_CELLWIDTH +local nudgeWidth = 1.25 * bj_CELLWIDTH +local r + +r = Rect(x - findThreshold, y - findThreshold, x + findThreshold, y + findThreshold) +bj_elevatorWallBlocker = nil +EnumDestructablesInRect(r, nil, FindElevatorWallBlockerEnum) +RemoveRect(r) +blocker = bj_elevatorWallBlocker +if (blocker == nil) then +blocker = CreateDeadDestructable(bj_ELEVATOR_BLOCKER_CODE, x, y, facing, 1, 0) +elseif (GetDestructableTypeId(blocker) ~= bj_ELEVATOR_BLOCKER_CODE) then +return +end +if (open) then +if (GetDestructableLife(blocker) > 0) then +KillDestructable(blocker) +end +else +if (GetDestructableLife(blocker) <= 0) then +DestructableRestoreLife(blocker, GetDestructableMaxLife(blocker), false) +end +if (facing == 0) then +r = Rect(x - nudgeWidth / 2, y - nudgeLength / 2, x + nudgeWidth / 2, y + nudgeLength / 2) +NudgeObjectsInRect(r) +RemoveRect(r) +elseif (facing == 90) then +r = Rect(x - nudgeLength / 2, y - nudgeWidth / 2, x + nudgeLength / 2, y + nudgeWidth / 2) +NudgeObjectsInRect(r) +RemoveRect(r) +else +end +end +end + +function ChangeElevatorWalls(open, walls, d) +local x = GetDestructableX(d) +local y = GetDestructableY(d) +local distToBlocker = 192.0 +local distToNeighbor = 256.0 + +if ((walls == bj_ELEVATOR_WALL_TYPE_ALL) or (walls == bj_ELEVATOR_WALL_TYPE_EAST)) then +if (not NearbyElevatorExists(x + distToNeighbor, y)) then +ChangeElevatorWallBlocker(x + distToBlocker, y, 0, open) +end +end +if ((walls == bj_ELEVATOR_WALL_TYPE_ALL) or (walls == bj_ELEVATOR_WALL_TYPE_NORTH)) then +if (not NearbyElevatorExists(x, y + distToNeighbor)) then +ChangeElevatorWallBlocker(x, y + distToBlocker, 90, open) +end +end +if ((walls == bj_ELEVATOR_WALL_TYPE_ALL) or (walls == bj_ELEVATOR_WALL_TYPE_SOUTH)) then +if (not NearbyElevatorExists(x, y - distToNeighbor)) then +ChangeElevatorWallBlocker(x, y - distToBlocker, 90, open) +end +end +if ((walls == bj_ELEVATOR_WALL_TYPE_ALL) or (walls == bj_ELEVATOR_WALL_TYPE_WEST)) then +if (not NearbyElevatorExists(x - distToNeighbor, y)) then +ChangeElevatorWallBlocker(x - distToBlocker, y, 0, open) +end +end +end + +function WaygateActivateBJ(activate, waygate) +WaygateActivate(waygate, activate) +end + +function WaygateIsActiveBJ(waygate) +return WaygateIsActive(waygate) +end + +function WaygateSetDestinationLocBJ(waygate, loc) +WaygateSetDestination(waygate, GetLocationX(loc), GetLocationY(loc)) +end + +function WaygateGetDestinationLocBJ(waygate) +return Location(WaygateGetDestinationX(waygate), WaygateGetDestinationY(waygate)) +end + +function UnitSetUsesAltIconBJ(flag, whichUnit) +UnitSetUsesAltIcon(whichUnit, flag) +end + +function ForceUIKeyBJ(whichPlayer, key) +if (GetLocalPlayer() == whichPlayer) then +ForceUIKey(key) +end +end + +function ForceUICancelBJ(whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +ForceUICancel() +end +end + +function ForGroupBJ(whichGroup, callback) +local wantDestroy = bj_wantDestroyGroup + +bj_wantDestroyGroup = false +ForGroup(whichGroup, callback) +if (wantDestroy) then +DestroyGroup(whichGroup) +end +end + +function GroupAddUnitSimple(whichUnit, whichGroup) +GroupAddUnit(whichGroup, whichUnit) +end + +function GroupRemoveUnitSimple(whichUnit, whichGroup) +GroupRemoveUnit(whichGroup, whichUnit) +end + +function GroupAddGroupEnum() +GroupAddUnit(bj_groupAddGroupDest, GetEnumUnit()) +end + +function GroupAddGroup(sourceGroup, destGroup) +local wantDestroy = bj_wantDestroyGroup + +bj_wantDestroyGroup = false +bj_groupAddGroupDest = destGroup +ForGroup(sourceGroup, GroupAddGroupEnum) +if (wantDestroy) then +DestroyGroup(sourceGroup) +end +end + +function GroupRemoveGroupEnum() +GroupRemoveUnit(bj_groupRemoveGroupDest, GetEnumUnit()) +end + +function GroupRemoveGroup(sourceGroup, destGroup) +local wantDestroy = bj_wantDestroyGroup + +bj_wantDestroyGroup = false +bj_groupRemoveGroupDest = destGroup +ForGroup(sourceGroup, GroupRemoveGroupEnum) +if (wantDestroy) then +DestroyGroup(sourceGroup) +end +end + +function ForceAddPlayerSimple(whichPlayer, whichForce) +ForceAddPlayer(whichForce, whichPlayer) +end + +function ForceRemovePlayerSimple(whichPlayer, whichForce) +ForceRemovePlayer(whichForce, whichPlayer) +end + +function GroupPickRandomUnitEnum() +bj_groupRandomConsidered = bj_groupRandomConsidered + 1 +if (GetRandomInt(1, bj_groupRandomConsidered) == 1) then +bj_groupRandomCurrentPick = GetEnumUnit() +end +end + +function GroupPickRandomUnit(whichGroup) +local wantDestroy = bj_wantDestroyGroup + +bj_wantDestroyGroup = false +bj_groupRandomConsidered = 0 +bj_groupRandomCurrentPick = nil +ForGroup(whichGroup, GroupPickRandomUnitEnum) +if (wantDestroy) then +DestroyGroup(whichGroup) +end +return bj_groupRandomCurrentPick +end + +function ForcePickRandomPlayerEnum() +bj_forceRandomConsidered = bj_forceRandomConsidered + 1 +if (GetRandomInt(1, bj_forceRandomConsidered) == 1) then +bj_forceRandomCurrentPick = GetEnumPlayer() +end +end + +function ForcePickRandomPlayer(whichForce) +bj_forceRandomConsidered = 0 +bj_forceRandomCurrentPick = nil +ForForce(whichForce, ForcePickRandomPlayerEnum) +return bj_forceRandomCurrentPick +end + +function EnumUnitsSelected(whichPlayer, enumFilter, enumAction) +local g = CreateGroup() + +SyncSelections() +GroupEnumUnitsSelected(g, whichPlayer, enumFilter) +DestroyBoolExpr(enumFilter) +ForGroup(g, enumAction) +DestroyGroup(g) +end + +function GetUnitsInRectMatching(r, filter) +local g = CreateGroup() + +GroupEnumUnitsInRect(g, r, filter) +DestroyBoolExpr(filter) +return g +end + +function GetUnitsInRectAll(r) +return GetUnitsInRectMatching(r, nil) +end + +function GetUnitsInRectOfPlayerFilter() +return GetOwningPlayer(GetFilterUnit()) == bj_groupEnumOwningPlayer +end + +function GetUnitsInRectOfPlayer(r, whichPlayer) +local g = CreateGroup() + +bj_groupEnumOwningPlayer = whichPlayer +GroupEnumUnitsInRect(g, r, filterGetUnitsInRectOfPlayer) +return g +end + +function GetUnitsInRangeOfLocMatching(radius, whichLocation, filter) +local g = CreateGroup() + +GroupEnumUnitsInRangeOfLoc(g, whichLocation, radius, filter) +DestroyBoolExpr(filter) +return g +end + +function GetUnitsInRangeOfLocAll(radius, whichLocation) +return GetUnitsInRangeOfLocMatching(radius, whichLocation, nil) +end + +function GetUnitsOfTypeIdAllFilter() +return GetUnitTypeId(GetFilterUnit()) == bj_groupEnumTypeId +end + +function GetUnitsOfTypeIdAll(unitid) +local result = CreateGroup() +local g = CreateGroup() +local index + +index = 0 +while (true) do +bj_groupEnumTypeId = unitid +GroupClear(g) +GroupEnumUnitsOfPlayer(g, Player(index), filterGetUnitsOfTypeIdAll) +GroupAddGroup(g, result) +index = index + 1 +if (index == bj_MAX_PLAYER_SLOTS) then break end +end +DestroyGroup(g) +return result +end + +function GetUnitsOfPlayerMatching(whichPlayer, filter) +local g = CreateGroup() + +GroupEnumUnitsOfPlayer(g, whichPlayer, filter) +DestroyBoolExpr(filter) +return g +end + +function GetUnitsOfPlayerAll(whichPlayer) +return GetUnitsOfPlayerMatching(whichPlayer, nil) +end + +function GetUnitsOfPlayerAndTypeIdFilter() +return GetUnitTypeId(GetFilterUnit()) == bj_groupEnumTypeId +end + +function GetUnitsOfPlayerAndTypeId(whichPlayer, unitid) +local g = CreateGroup() + +bj_groupEnumTypeId = unitid +GroupEnumUnitsOfPlayer(g, whichPlayer, filterGetUnitsOfPlayerAndTypeId) +return g +end + +function GetUnitsSelectedAll(whichPlayer) +local g = CreateGroup() + +SyncSelections() +GroupEnumUnitsSelected(g, whichPlayer, nil) +return g +end + +function GetForceOfPlayer(whichPlayer) +local f = CreateForce() + +ForceAddPlayer(f, whichPlayer) +return f +end + +function GetPlayersAll() +return bj_FORCE_ALL_PLAYERS +end + +function GetPlayersByMapControl(whichControl) +local f = CreateForce() +local playerIndex +local indexPlayer + +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if GetPlayerController(indexPlayer) == whichControl then +ForceAddPlayer(f, indexPlayer) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYER_SLOTS) then break end +end +return f +end + +function GetPlayersAllies(whichPlayer) +local f = CreateForce() + +ForceEnumAllies(f, whichPlayer, nil) +return f +end + +function GetPlayersEnemies(whichPlayer) +local f = CreateForce() + +ForceEnumEnemies(f, whichPlayer, nil) +return f +end + +function GetPlayersMatching(filter) +local f = CreateForce() + +ForceEnumPlayers(f, filter) +DestroyBoolExpr(filter) +return f +end + +function CountUnitsInGroupEnum() +bj_groupCountUnits = bj_groupCountUnits + 1 +end + +function CountUnitsInGroup(g) +local wantDestroy = bj_wantDestroyGroup + +bj_wantDestroyGroup = false +bj_groupCountUnits = 0 +ForGroup(g, CountUnitsInGroupEnum) +if (wantDestroy) then +DestroyGroup(g) +end +return bj_groupCountUnits +end + +function CountPlayersInForceEnum() +bj_forceCountPlayers = bj_forceCountPlayers + 1 +end + +function CountPlayersInForceBJ(f) +bj_forceCountPlayers = 0 +ForForce(f, CountPlayersInForceEnum) +return bj_forceCountPlayers +end + +function GetRandomSubGroupEnum() +if (bj_randomSubGroupWant > 0) then +if ((bj_randomSubGroupWant >= bj_randomSubGroupTotal) or (GetRandomReal(0, 1) < bj_randomSubGroupChance)) then +GroupAddUnit(bj_randomSubGroupGroup, GetEnumUnit()) +bj_randomSubGroupWant = bj_randomSubGroupWant - 1 +end +end +bj_randomSubGroupTotal = bj_randomSubGroupTotal - 1 +end + +function GetRandomSubGroup(count, sourceGroup) +local g = CreateGroup() + +bj_randomSubGroupGroup = g +bj_randomSubGroupWant = count +bj_randomSubGroupTotal = CountUnitsInGroup(sourceGroup) +if (bj_randomSubGroupWant <= 0 or bj_randomSubGroupTotal <= 0) then +return g +end +bj_randomSubGroupChance = I2R(bj_randomSubGroupWant) / I2R(bj_randomSubGroupTotal) +ForGroup(sourceGroup, GetRandomSubGroupEnum) +return g +end + +function LivingPlayerUnitsOfTypeIdFilter() +local filterUnit = GetFilterUnit() + +return (IsUnitAliveBJ(filterUnit) and GetUnitTypeId(filterUnit) == bj_livingPlayerUnitsTypeId) +end + +function CountLivingPlayerUnitsOfTypeId(unitId, whichPlayer) +local g +local matchedCount + +g = CreateGroup() +bj_livingPlayerUnitsTypeId = unitId +GroupEnumUnitsOfPlayer(g, whichPlayer, filterLivingPlayerUnitsOfTypeId) +matchedCount = CountUnitsInGroup(g) +DestroyGroup(g) +return matchedCount +end + +function ResetUnitAnimation(whichUnit) +SetUnitAnimation(whichUnit, "stand") +end + +function SetUnitTimeScalePercent(whichUnit, percentScale) +SetUnitTimeScale(whichUnit, percentScale * 0.01) +end + +function SetUnitScalePercent(whichUnit, percentScaleX, percentScaleY, percentScaleZ) +SetUnitScale(whichUnit, percentScaleX * 0.01, percentScaleY * 0.01, percentScaleZ * 0.01) +end + +function SetUnitVertexColorBJ(whichUnit, red, green, blue, transparency) +SetUnitVertexColor(whichUnit, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function UnitAddIndicatorBJ(whichUnit, red, green, blue, transparency) +AddIndicator(whichUnit, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function DestructableAddIndicatorBJ(whichDestructable, red, green, blue, transparency) +AddIndicator(whichDestructable, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function ItemAddIndicatorBJ(whichItem, red, green, blue, transparency) +AddIndicator(whichItem, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function SetUnitFacingToFaceLocTimed(whichUnit, target, duration) +local unitLoc = GetUnitLoc(whichUnit) + +SetUnitFacingTimed(whichUnit, AngleBetweenPoints(unitLoc, target), duration) +RemoveLocation(unitLoc) +end + +function SetUnitFacingToFaceUnitTimed(whichUnit, target, duration) +local unitLoc = GetUnitLoc(target) + +SetUnitFacingToFaceLocTimed(whichUnit, unitLoc, duration) +RemoveLocation(unitLoc) +end + +function QueueUnitAnimationBJ(whichUnit, whichAnimation) +QueueUnitAnimation(whichUnit, whichAnimation) +end + +function SetDestructableAnimationBJ(d, whichAnimation) +SetDestructableAnimation(d, whichAnimation) +end + +function QueueDestructableAnimationBJ(d, whichAnimation) +QueueDestructableAnimation(d, whichAnimation) +end + +function SetDestAnimationSpeedPercent(d, percentScale) +SetDestructableAnimationSpeed(d, percentScale * 0.01) +end + +function DialogDisplayBJ(flag, whichDialog, whichPlayer) +DialogDisplay(whichPlayer, whichDialog, flag) +end + +function DialogSetMessageBJ(whichDialog, message) +DialogSetMessage(whichDialog, message) +end + +function DialogAddButtonBJ(whichDialog, buttonText) +bj_lastCreatedButton = DialogAddButton(whichDialog, buttonText, 0) +return bj_lastCreatedButton +end + +function DialogAddButtonWithHotkeyBJ(whichDialog, buttonText, hotkey) +bj_lastCreatedButton = DialogAddButton(whichDialog, buttonText, hotkey) +return bj_lastCreatedButton +end + +function DialogClearBJ(whichDialog) +DialogClear(whichDialog) +end + +function GetLastCreatedButtonBJ() +return bj_lastCreatedButton +end + +function GetClickedButtonBJ() +return GetClickedButton() +end + +function GetClickedDialogBJ() +return GetClickedDialog() +end + +function SetPlayerAllianceBJ(sourcePlayer, whichAllianceSetting, value, otherPlayer) +if (sourcePlayer == otherPlayer) then +return +end +SetPlayerAlliance(sourcePlayer, otherPlayer, whichAllianceSetting, value) +end + +function SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_PASSIVE, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_HELP_REQUEST, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_HELP_RESPONSE, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_SHARED_XP, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_SHARED_SPELLS, flag) +end + +function SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_SHARED_VISION, flag) +end + +function SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_SHARED_CONTROL, flag) +end + +function SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, flag) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_SHARED_ADVANCED_CONTROL, flag) +end + +function SetPlayerAllianceStateBJ(sourcePlayer, otherPlayer, allianceState) +if (sourcePlayer == otherPlayer) then +return +end +if allianceState == bj_ALLIANCE_UNALLIED then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, false) +elseif allianceState == bj_ALLIANCE_UNALLIED_VISION then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, false) +elseif allianceState == bj_ALLIANCE_ALLIED then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, false) +elseif allianceState == bj_ALLIANCE_ALLIED_VISION then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, false) +elseif allianceState == bj_ALLIANCE_ALLIED_UNITS then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, false) +elseif allianceState == bj_ALLIANCE_ALLIED_ADVUNITS then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, true) +elseif allianceState == bj_ALLIANCE_NEUTRAL then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_PASSIVE, true) +elseif allianceState == bj_ALLIANCE_NEUTRAL_VISION then +SetPlayerAllianceStateAllyBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateVisionBJ(sourcePlayer, otherPlayer, true) +SetPlayerAllianceStateControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAllianceStateFullControlBJ(sourcePlayer, otherPlayer, false) +SetPlayerAlliance(sourcePlayer, otherPlayer, ALLIANCE_PASSIVE, true) +else +end +end + +function SetForceAllianceStateBJ(sourceForce, targetForce, allianceState) +local sourceIndex +local targetIndex + +sourceIndex = 0 +while (true) do +if (sourceForce == bj_FORCE_ALL_PLAYERS or IsPlayerInForce(Player(sourceIndex), sourceForce)) then +targetIndex = 0 +while (true) do +if (targetForce == bj_FORCE_ALL_PLAYERS or IsPlayerInForce(Player(targetIndex), targetForce)) then +SetPlayerAllianceStateBJ(Player(sourceIndex), Player(targetIndex), allianceState) +end +targetIndex = targetIndex + 1 +if (targetIndex == bj_MAX_PLAYER_SLOTS) then break end +end +end +sourceIndex = sourceIndex + 1 +if (sourceIndex == bj_MAX_PLAYER_SLOTS) then break end +end +end + +function PlayersAreCoAllied(playerA, playerB) +if (playerA == playerB) then +return true +end +if GetPlayerAlliance(playerA, playerB, ALLIANCE_PASSIVE) then +if GetPlayerAlliance(playerB, playerA, ALLIANCE_PASSIVE) then +return true +end +end +return false +end + +function ShareEverythingWithTeamAI(whichPlayer) +local playerIndex +local indexPlayer + +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (PlayersAreCoAllied(whichPlayer, indexPlayer) and whichPlayer ~= indexPlayer) then +if (GetPlayerController(indexPlayer) == MAP_CONTROL_COMPUTER) then +SetPlayerAlliance(whichPlayer, indexPlayer, ALLIANCE_SHARED_VISION, true) +SetPlayerAlliance(whichPlayer, indexPlayer, ALLIANCE_SHARED_CONTROL, true) +SetPlayerAlliance(whichPlayer, indexPlayer, ALLIANCE_SHARED_ADVANCED_CONTROL, true) +end +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +end + +function ShareEverythingWithTeam(whichPlayer) +local playerIndex +local indexPlayer + +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (PlayersAreCoAllied(whichPlayer, indexPlayer) and whichPlayer ~= indexPlayer) then +SetPlayerAlliance(whichPlayer, indexPlayer, ALLIANCE_SHARED_VISION, true) +SetPlayerAlliance(whichPlayer, indexPlayer, ALLIANCE_SHARED_CONTROL, true) +SetPlayerAlliance(indexPlayer, whichPlayer, ALLIANCE_SHARED_CONTROL, true) +SetPlayerAlliance(whichPlayer, indexPlayer, ALLIANCE_SHARED_ADVANCED_CONTROL, true) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +end + +function ConfigureNeutralVictim() +local index +local indexPlayer +local neutralVictim = Player(bj_PLAYER_NEUTRAL_VICTIM) + +index = 0 +while (true) do +indexPlayer = Player(index) +SetPlayerAlliance(neutralVictim, indexPlayer, ALLIANCE_PASSIVE, true) +SetPlayerAlliance(indexPlayer, neutralVictim, ALLIANCE_PASSIVE, false) +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +indexPlayer = Player(PLAYER_NEUTRAL_AGGRESSIVE) +SetPlayerAlliance(neutralVictim, indexPlayer, ALLIANCE_PASSIVE, true) +SetPlayerAlliance(indexPlayer, neutralVictim, ALLIANCE_PASSIVE, true) +SetPlayerState(neutralVictim, PLAYER_STATE_GIVES_BOUNTY, 0) +end + +function MakeUnitsPassiveForPlayerEnum() +SetUnitOwner(GetEnumUnit(), Player(bj_PLAYER_NEUTRAL_VICTIM), false) +end + +function MakeUnitsPassiveForPlayer(whichPlayer) +local playerUnits = CreateGroup() + +CachePlayerHeroData(whichPlayer) +GroupEnumUnitsOfPlayer(playerUnits, whichPlayer, nil) +ForGroup(playerUnits, MakeUnitsPassiveForPlayerEnum) +DestroyGroup(playerUnits) +end + +function MakeUnitsPassiveForTeam(whichPlayer) +local playerIndex +local indexPlayer + +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if PlayersAreCoAllied(whichPlayer, indexPlayer) then +MakeUnitsPassiveForPlayer(indexPlayer) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +end + +function AllowVictoryDefeat(gameResult) +if (gameResult == PLAYER_GAME_RESULT_VICTORY) then +return not IsNoVictoryCheat() +end +if (gameResult == PLAYER_GAME_RESULT_DEFEAT) then +return not IsNoDefeatCheat() +end +if (gameResult == PLAYER_GAME_RESULT_NEUTRAL) then +return ((not IsNoVictoryCheat()) and (not IsNoDefeatCheat())) +end +return true +end + +function EndGameBJ() +EndGame(true) +end + +function MeleeVictoryDialogBJ(whichPlayer, leftGame) +local t = CreateTrigger() +local d = DialogCreate() +local formatString + +if (leftGame) then +formatString = GetLocalizedString("PLAYER_LEFT_GAME") +else +formatString = GetLocalizedString("PLAYER_VICTORIOUS") +end +DisplayTimedTextFromPlayer(whichPlayer, 0, 0, 60, formatString) +DialogSetMessage(d, GetLocalizedString("GAMEOVER_VICTORY_MSG")) +DialogAddButton(d, GetLocalizedString("GAMEOVER_CONTINUE_GAME"), GetLocalizedHotkey("GAMEOVER_CONTINUE_GAME")) +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddQuitButton(d, true, GetLocalizedString("GAMEOVER_QUIT_GAME"), GetLocalizedHotkey("GAMEOVER_QUIT_GAME"))) +DialogDisplay(whichPlayer, d, true) +StartSoundForPlayerBJ(whichPlayer, bj_victoryDialogSound) +end + +function MeleeDefeatDialogBJ(whichPlayer, leftGame) +local t = CreateTrigger() +local d = DialogCreate() +local formatString + +if (leftGame) then +formatString = GetLocalizedString("PLAYER_LEFT_GAME") +else +formatString = GetLocalizedString("PLAYER_DEFEATED") +end +DisplayTimedTextFromPlayer(whichPlayer, 0, 0, 60, formatString) +DialogSetMessage(d, GetLocalizedString("GAMEOVER_DEFEAT_MSG")) +if (not bj_meleeGameOver and IsMapFlagSet(MAP_OBSERVERS_ON_DEATH)) then +DialogAddButton(d, GetLocalizedString("GAMEOVER_CONTINUE_OBSERVING"), GetLocalizedHotkey("GAMEOVER_CONTINUE_OBSERVING")) +end +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddQuitButton(d, true, GetLocalizedString("GAMEOVER_QUIT_GAME"), GetLocalizedHotkey("GAMEOVER_QUIT_GAME"))) +DialogDisplay(whichPlayer, d, true) +StartSoundForPlayerBJ(whichPlayer, bj_defeatDialogSound) +end + +function GameOverDialogBJ(whichPlayer, leftGame) +local t = CreateTrigger() +local d = DialogCreate() +local s + +DisplayTimedTextFromPlayer(whichPlayer, 0, 0, 60, GetLocalizedString("PLAYER_LEFT_GAME")) +if (GetIntegerGameState(GAME_STATE_DISCONNECTED) ~= 0) then +s = GetLocalizedString("GAMEOVER_DISCONNECTED") +else +s = GetLocalizedString("GAMEOVER_GAME_OVER") +end +DialogSetMessage(d, s) +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddQuitButton(d, true, GetLocalizedString("GAMEOVER_OK"), GetLocalizedHotkey("GAMEOVER_OK"))) +DialogDisplay(whichPlayer, d, true) +StartSoundForPlayerBJ(whichPlayer, bj_defeatDialogSound) +end + +function RemovePlayerPreserveUnitsBJ(whichPlayer, gameResult, leftGame) +if AllowVictoryDefeat(gameResult) then +RemovePlayer(whichPlayer, gameResult) +if (gameResult == PLAYER_GAME_RESULT_VICTORY) then +MeleeVictoryDialogBJ(whichPlayer, leftGame) +return +elseif (gameResult == PLAYER_GAME_RESULT_DEFEAT) then +MeleeDefeatDialogBJ(whichPlayer, leftGame) +else +GameOverDialogBJ(whichPlayer, leftGame) +end +end +end + +function CustomVictoryOkBJ() +if bj_isSinglePlayer then +PauseGame(false) +SetGameDifficulty(GetDefaultDifficulty()) +end +if (bj_changeLevelMapName == "") then +EndGame(bj_changeLevelShowScores) +else +ChangeLevel(bj_changeLevelMapName, bj_changeLevelShowScores) +end +end + +function CustomVictoryQuitBJ() +if bj_isSinglePlayer then +PauseGame(false) +SetGameDifficulty(GetDefaultDifficulty()) +end +EndGame(bj_changeLevelShowScores) +end + +function CustomVictoryDialogBJ(whichPlayer) +local t = CreateTrigger() +local d = DialogCreate() + +DialogSetMessage(d, GetLocalizedString("GAMEOVER_VICTORY_MSG")) +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddButton(d, GetLocalizedString("GAMEOVER_CONTINUE"), GetLocalizedHotkey("GAMEOVER_CONTINUE"))) +TriggerAddAction(t, CustomVictoryOkBJ) +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddButton(d, GetLocalizedString("GAMEOVER_QUIT_MISSION"), GetLocalizedHotkey("GAMEOVER_QUIT_MISSION"))) +TriggerAddAction(t, CustomVictoryQuitBJ) +if (GetLocalPlayer() == whichPlayer) then +EnableUserControl(true) +if bj_isSinglePlayer then +PauseGame(true) +end +EnableUserUI(false) +end +DialogDisplay(whichPlayer, d, true) +VolumeGroupSetVolumeForPlayerBJ(whichPlayer, SOUND_VOLUMEGROUP_UI, 1.0) +StartSoundForPlayerBJ(whichPlayer, bj_victoryDialogSound) +end + +function CustomVictorySkipBJ(whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +if bj_isSinglePlayer then +SetGameDifficulty(GetDefaultDifficulty()) +end +if (bj_changeLevelMapName == "") then +EndGame(bj_changeLevelShowScores) +else +ChangeLevel(bj_changeLevelMapName, bj_changeLevelShowScores) +end +end +end + +function CustomVictoryBJ(whichPlayer, showDialog, showScores) +if AllowVictoryDefeat(PLAYER_GAME_RESULT_VICTORY) then +RemovePlayer(whichPlayer, PLAYER_GAME_RESULT_VICTORY) +if not bj_isSinglePlayer then +DisplayTimedTextFromPlayer(whichPlayer, 0, 0, 60, GetLocalizedString("PLAYER_VICTORIOUS")) +end +if (GetPlayerController(whichPlayer) == MAP_CONTROL_USER) then +bj_changeLevelShowScores = showScores +if showDialog then +CustomVictoryDialogBJ(whichPlayer) +else +CustomVictorySkipBJ(whichPlayer) +end +end +end +end + +function CustomDefeatRestartBJ() +PauseGame(false) +RestartGame(true) +end + +function CustomDefeatReduceDifficultyBJ() +local diff = GetGameDifficulty() + +PauseGame(false) +if (diff == MAP_DIFFICULTY_EASY) then +elseif (diff == MAP_DIFFICULTY_NORMAL) then +SetGameDifficulty(MAP_DIFFICULTY_EASY) +elseif (diff == MAP_DIFFICULTY_HARD) then +SetGameDifficulty(MAP_DIFFICULTY_NORMAL) +else +end +RestartGame(true) +end + +function CustomDefeatLoadBJ() +PauseGame(false) +DisplayLoadDialog() +end + +function CustomDefeatQuitBJ() +if bj_isSinglePlayer then +PauseGame(false) +end +SetGameDifficulty(GetDefaultDifficulty()) +EndGame(true) +end + +function CustomDefeatDialogBJ(whichPlayer, message) +local t = CreateTrigger() +local d = DialogCreate() + +DialogSetMessage(d, message) +if bj_isSinglePlayer then +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddButton(d, GetLocalizedString("GAMEOVER_RESTART"), GetLocalizedHotkey("GAMEOVER_RESTART"))) +TriggerAddAction(t, CustomDefeatRestartBJ) +if (GetGameDifficulty() ~= MAP_DIFFICULTY_EASY) then +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddButton(d, GetLocalizedString("GAMEOVER_REDUCE_DIFFICULTY"), GetLocalizedHotkey("GAMEOVER_REDUCE_DIFFICULTY"))) +TriggerAddAction(t, CustomDefeatReduceDifficultyBJ) +end +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddButton(d, GetLocalizedString("GAMEOVER_LOAD"), GetLocalizedHotkey("GAMEOVER_LOAD"))) +TriggerAddAction(t, CustomDefeatLoadBJ) +end +t = CreateTrigger() +TriggerRegisterDialogButtonEvent(t, DialogAddButton(d, GetLocalizedString("GAMEOVER_QUIT_MISSION"), GetLocalizedHotkey("GAMEOVER_QUIT_MISSION"))) +TriggerAddAction(t, CustomDefeatQuitBJ) +if (GetLocalPlayer() == whichPlayer) then +EnableUserControl(true) +if bj_isSinglePlayer then +PauseGame(true) +end +EnableUserUI(false) +end +DialogDisplay(whichPlayer, d, true) +VolumeGroupSetVolumeForPlayerBJ(whichPlayer, SOUND_VOLUMEGROUP_UI, 1.0) +StartSoundForPlayerBJ(whichPlayer, bj_defeatDialogSound) +end + +function CustomDefeatBJ(whichPlayer, message) +if AllowVictoryDefeat(PLAYER_GAME_RESULT_DEFEAT) then +RemovePlayer(whichPlayer, PLAYER_GAME_RESULT_DEFEAT) +if not bj_isSinglePlayer then +DisplayTimedTextFromPlayer(whichPlayer, 0, 0, 60, GetLocalizedString("PLAYER_DEFEATED")) +end +if (GetPlayerController(whichPlayer) == MAP_CONTROL_USER) then +CustomDefeatDialogBJ(whichPlayer, message) +end +end +end + +function SetNextLevelBJ(nextLevel) +if (nextLevel == "") then +bj_changeLevelMapName = "" +else +bj_changeLevelMapName = nextLevel +end +end + +function SetPlayerOnScoreScreenBJ(flag, whichPlayer) +SetPlayerOnScoreScreen(whichPlayer, flag) +end + +function CreateQuestBJ(questType, title, description, iconPath) +local required = ((questType == bj_QUESTTYPE_REQ_DISCOVERED) or (questType == bj_QUESTTYPE_REQ_UNDISCOVERED)) +local discovered = ((questType == bj_QUESTTYPE_REQ_DISCOVERED) or (questType == bj_QUESTTYPE_OPT_DISCOVERED)) + +bj_lastCreatedQuest = CreateQuest() +QuestSetTitle(bj_lastCreatedQuest, title) +QuestSetDescription(bj_lastCreatedQuest, description) +QuestSetIconPath(bj_lastCreatedQuest, iconPath) +QuestSetRequired(bj_lastCreatedQuest, required) +QuestSetDiscovered(bj_lastCreatedQuest, discovered) +QuestSetCompleted(bj_lastCreatedQuest, false) +return bj_lastCreatedQuest +end + +function DestroyQuestBJ(whichQuest) +DestroyQuest(whichQuest) +end + +function QuestSetEnabledBJ(enabled, whichQuest) +QuestSetEnabled(whichQuest, enabled) +end + +function QuestSetTitleBJ(whichQuest, title) +QuestSetTitle(whichQuest, title) +end + +function QuestSetDescriptionBJ(whichQuest, description) +QuestSetDescription(whichQuest, description) +end + +function QuestSetCompletedBJ(whichQuest, completed) +QuestSetCompleted(whichQuest, completed) +end + +function QuestSetFailedBJ(whichQuest, failed) +QuestSetFailed(whichQuest, failed) +end + +function QuestSetDiscoveredBJ(whichQuest, discovered) +QuestSetDiscovered(whichQuest, discovered) +end + +function GetLastCreatedQuestBJ() +return bj_lastCreatedQuest +end + +function CreateQuestItemBJ(whichQuest, description) +bj_lastCreatedQuestItem = QuestCreateItem(whichQuest) +QuestItemSetDescription(bj_lastCreatedQuestItem, description) +QuestItemSetCompleted(bj_lastCreatedQuestItem, false) +return bj_lastCreatedQuestItem +end + +function QuestItemSetDescriptionBJ(whichQuestItem, description) +QuestItemSetDescription(whichQuestItem, description) +end + +function QuestItemSetCompletedBJ(whichQuestItem, completed) +QuestItemSetCompleted(whichQuestItem, completed) +end + +function GetLastCreatedQuestItemBJ() +return bj_lastCreatedQuestItem +end + +function CreateDefeatConditionBJ(description) +bj_lastCreatedDefeatCondition = CreateDefeatCondition() +DefeatConditionSetDescription(bj_lastCreatedDefeatCondition, description) +return bj_lastCreatedDefeatCondition +end + +function DestroyDefeatConditionBJ(whichCondition) +DestroyDefeatCondition(whichCondition) +end + +function DefeatConditionSetDescriptionBJ(whichCondition, description) +DefeatConditionSetDescription(whichCondition, description) +end + +function GetLastCreatedDefeatConditionBJ() +return bj_lastCreatedDefeatCondition +end + +function FlashQuestDialogButtonBJ() +FlashQuestDialogButton() +end + +function QuestMessageBJ(f, messageType, message) +if (IsPlayerInForce(GetLocalPlayer(), f)) then +if (messageType == bj_QUESTMESSAGE_DISCOVERED) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUEST, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUEST, message) +StartSound(bj_questDiscoveredSound) +FlashQuestDialogButton() +elseif (messageType == bj_QUESTMESSAGE_UPDATED) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUESTUPDATE, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUESTUPDATE, message) +StartSound(bj_questUpdatedSound) +FlashQuestDialogButton() +elseif (messageType == bj_QUESTMESSAGE_COMPLETED) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUESTDONE, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUESTDONE, message) +StartSound(bj_questCompletedSound) +FlashQuestDialogButton() +elseif (messageType == bj_QUESTMESSAGE_FAILED) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUESTFAILED, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUESTFAILED, message) +StartSound(bj_questFailedSound) +FlashQuestDialogButton() +elseif (messageType == bj_QUESTMESSAGE_REQUIREMENT) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_QUESTREQUIREMENT, message) +elseif (messageType == bj_QUESTMESSAGE_MISSIONFAILED) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_MISSIONFAILED, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_MISSIONFAILED, message) +StartSound(bj_questFailedSound) +elseif (messageType == bj_QUESTMESSAGE_HINT) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_HINT, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_HINT, message) +StartSound(bj_questHintSound) +elseif (messageType == bj_QUESTMESSAGE_ALWAYSHINT) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_ALWAYSHINT, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_ALWAYSHINT, message) +StartSound(bj_questHintSound) +elseif (messageType == bj_QUESTMESSAGE_SECRET) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_SECRET, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_SECRET, message) +StartSound(bj_questSecretSound) +elseif (messageType == bj_QUESTMESSAGE_UNITACQUIRED) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_UNITACQUIRED, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_UNITACQUIRED, message) +StartSound(bj_questHintSound) +elseif (messageType == bj_QUESTMESSAGE_UNITAVAILABLE) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_UNITAVAILABLE, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_UNITAVAILABLE, message) +StartSound(bj_questHintSound) +elseif (messageType == bj_QUESTMESSAGE_ITEMACQUIRED) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_ITEMACQUIRED, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_ITEMACQUIRED, message) +StartSound(bj_questItemAcquiredSound) +elseif (messageType == bj_QUESTMESSAGE_WARNING) then +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_WARNING, " ") +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_TEXT_DELAY_WARNING, message) +StartSound(bj_questWarningSound) +else +end +end +end + +function StartTimerBJ(t, periodic, timeout) +bj_lastStartedTimer = t +TimerStart(t, timeout, periodic, nil) +return bj_lastStartedTimer +end + +function CreateTimerBJ(periodic, timeout) +bj_lastStartedTimer = CreateTimer() +TimerStart(bj_lastStartedTimer, timeout, periodic, nil) +return bj_lastStartedTimer +end + +function DestroyTimerBJ(whichTimer) +DestroyTimer(whichTimer) +end + +function PauseTimerBJ(pause, whichTimer) +if pause then +PauseTimer(whichTimer) +else +ResumeTimer(whichTimer) +end +end + +function GetLastCreatedTimerBJ() +return bj_lastStartedTimer +end + +function CreateTimerDialogBJ(t, title) +bj_lastCreatedTimerDialog = CreateTimerDialog(t) +TimerDialogSetTitle(bj_lastCreatedTimerDialog, title) +TimerDialogDisplay(bj_lastCreatedTimerDialog, true) +return bj_lastCreatedTimerDialog +end + +function DestroyTimerDialogBJ(td) +DestroyTimerDialog(td) +end + +function TimerDialogSetTitleBJ(td, title) +TimerDialogSetTitle(td, title) +end + +function TimerDialogSetTitleColorBJ(td, red, green, blue, transparency) +TimerDialogSetTitleColor(td, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function TimerDialogSetTimeColorBJ(td, red, green, blue, transparency) +TimerDialogSetTimeColor(td, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function TimerDialogSetSpeedBJ(td, speedMultFactor) +TimerDialogSetSpeed(td, speedMultFactor) +end + +function TimerDialogDisplayForPlayerBJ(show, td, whichPlayer) +if (GetLocalPlayer() == whichPlayer) then +TimerDialogDisplay(td, show) +end +end + +function TimerDialogDisplayBJ(show, td) +TimerDialogDisplay(td, show) +end + +function GetLastCreatedTimerDialogBJ() +return bj_lastCreatedTimerDialog +end + +function LeaderboardResizeBJ(lb) +local size = LeaderboardGetItemCount(lb) + +if (LeaderboardGetLabelText(lb) == "") then +size = size - 1 +end +LeaderboardSetSizeByItemCount(lb, size) +end + +function LeaderboardSetPlayerItemValueBJ(whichPlayer, lb, val) +LeaderboardSetItemValue(lb, LeaderboardGetPlayerIndex(lb, whichPlayer), val) +end + +function LeaderboardSetPlayerItemLabelBJ(whichPlayer, lb, val) +LeaderboardSetItemLabel(lb, LeaderboardGetPlayerIndex(lb, whichPlayer), val) +end + +function LeaderboardSetPlayerItemStyleBJ(whichPlayer, lb, showLabel, showValue, showIcon) +LeaderboardSetItemStyle(lb, LeaderboardGetPlayerIndex(lb, whichPlayer), showLabel, showValue, showIcon) +end + +function LeaderboardSetPlayerItemLabelColorBJ(whichPlayer, lb, red, green, blue, transparency) +LeaderboardSetItemLabelColor(lb, LeaderboardGetPlayerIndex(lb, whichPlayer), PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function LeaderboardSetPlayerItemValueColorBJ(whichPlayer, lb, red, green, blue, transparency) +LeaderboardSetItemValueColor(lb, LeaderboardGetPlayerIndex(lb, whichPlayer), PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function LeaderboardSetLabelColorBJ(lb, red, green, blue, transparency) +LeaderboardSetLabelColor(lb, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function LeaderboardSetValueColorBJ(lb, red, green, blue, transparency) +LeaderboardSetValueColor(lb, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function LeaderboardSetLabelBJ(lb, label) +LeaderboardSetLabel(lb, label) +LeaderboardResizeBJ(lb) +end + +function LeaderboardSetStyleBJ(lb, showLabel, showNames, showValues, showIcons) +LeaderboardSetStyle(lb, showLabel, showNames, showValues, showIcons) +end + +function LeaderboardGetItemCountBJ(lb) +return LeaderboardGetItemCount(lb) +end + +function LeaderboardHasPlayerItemBJ(lb, whichPlayer) +return LeaderboardHasPlayerItem(lb, whichPlayer) +end + +function ForceSetLeaderboardBJ(lb, toForce) +local index +local indexPlayer + +index = 0 +while (true) do +indexPlayer = Player(index) +if IsPlayerInForce(indexPlayer, toForce) then +PlayerSetLeaderboard(indexPlayer, lb) +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function CreateLeaderboardBJ(toForce, label) +bj_lastCreatedLeaderboard = CreateLeaderboard() +LeaderboardSetLabel(bj_lastCreatedLeaderboard, label) +ForceSetLeaderboardBJ(bj_lastCreatedLeaderboard, toForce) +LeaderboardDisplay(bj_lastCreatedLeaderboard, true) +return bj_lastCreatedLeaderboard +end + +function DestroyLeaderboardBJ(lb) +DestroyLeaderboard(lb) +end + +function LeaderboardDisplayBJ(show, lb) +LeaderboardDisplay(lb, show) +end + +function LeaderboardAddItemBJ(whichPlayer, lb, label, value) +if (LeaderboardHasPlayerItem(lb, whichPlayer)) then +LeaderboardRemovePlayerItem(lb, whichPlayer) +end +LeaderboardAddItem(lb, label, value, whichPlayer) +LeaderboardResizeBJ(lb) +end + +function LeaderboardRemovePlayerItemBJ(whichPlayer, lb) +LeaderboardRemovePlayerItem(lb, whichPlayer) +LeaderboardResizeBJ(lb) +end + +function LeaderboardSortItemsBJ(lb, sortType, ascending) +if (sortType == bj_SORTTYPE_SORTBYVALUE) then +LeaderboardSortItemsByValue(lb, ascending) +elseif (sortType == bj_SORTTYPE_SORTBYPLAYER) then +LeaderboardSortItemsByPlayer(lb, ascending) +elseif (sortType == bj_SORTTYPE_SORTBYLABEL) then +LeaderboardSortItemsByLabel(lb, ascending) +else +end +end + +function LeaderboardSortItemsByPlayerBJ(lb, ascending) +LeaderboardSortItemsByPlayer(lb, ascending) +end + +function LeaderboardSortItemsByLabelBJ(lb, ascending) +LeaderboardSortItemsByLabel(lb, ascending) +end + +function LeaderboardGetPlayerIndexBJ(whichPlayer, lb) +return LeaderboardGetPlayerIndex(lb, whichPlayer) + 1 +end + +function LeaderboardGetIndexedPlayerBJ(position, lb) +local index +local indexPlayer + +index = 0 +while (true) do +indexPlayer = Player(index) +if (LeaderboardGetPlayerIndex(lb, indexPlayer) == position - 1) then +return indexPlayer +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +return Player(PLAYER_NEUTRAL_PASSIVE) +end + +function PlayerGetLeaderboardBJ(whichPlayer) +return PlayerGetLeaderboard(whichPlayer) +end + +function GetLastCreatedLeaderboard() +return bj_lastCreatedLeaderboard +end + +function CreateMultiboardBJ(cols, rows, title) +bj_lastCreatedMultiboard = CreateMultiboard() +MultiboardSetRowCount(bj_lastCreatedMultiboard, rows) +MultiboardSetColumnCount(bj_lastCreatedMultiboard, cols) +MultiboardSetTitleText(bj_lastCreatedMultiboard, title) +MultiboardDisplay(bj_lastCreatedMultiboard, true) +return bj_lastCreatedMultiboard +end + +function DestroyMultiboardBJ(mb) +DestroyMultiboard(mb) +end + +function GetLastCreatedMultiboard() +return bj_lastCreatedMultiboard +end + +function MultiboardDisplayBJ(show, mb) +MultiboardDisplay(mb, show) +end + +function MultiboardMinimizeBJ(minimize, mb) +MultiboardMinimize(mb, minimize) +end + +function MultiboardSetTitleTextColorBJ(mb, red, green, blue, transparency) +MultiboardSetTitleTextColor(mb, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function MultiboardAllowDisplayBJ(flag) +MultiboardSuppressDisplay(not flag) +end + +function MultiboardSetItemStyleBJ(mb, col, row, showValue, showIcon) +local curRow = 0 +local curCol = 0 +local numRows = MultiboardGetRowCount(mb) +local numCols = MultiboardGetColumnCount(mb) +local mbitem = nil + +while (true) do +curRow = curRow + 1 +if (curRow > numRows) then break end +if (row == 0 or row == curRow) then +curCol = 0 +while (true) do +curCol = curCol + 1 +if (curCol > numCols) then break end +if (col == 0 or col == curCol) then +mbitem = MultiboardGetItem(mb, curRow - 1, curCol - 1) +MultiboardSetItemStyle(mbitem, showValue, showIcon) +MultiboardReleaseItem(mbitem) +end +end +end +end +end + +function MultiboardSetItemValueBJ(mb, col, row, val) +local curRow = 0 +local curCol = 0 +local numRows = MultiboardGetRowCount(mb) +local numCols = MultiboardGetColumnCount(mb) +local mbitem = nil + +while (true) do +curRow = curRow + 1 +if (curRow > numRows) then break end +if (row == 0 or row == curRow) then +curCol = 0 +while (true) do +curCol = curCol + 1 +if (curCol > numCols) then break end +if (col == 0 or col == curCol) then +mbitem = MultiboardGetItem(mb, curRow - 1, curCol - 1) +MultiboardSetItemValue(mbitem, val) +MultiboardReleaseItem(mbitem) +end +end +end +end +end + +function MultiboardSetItemColorBJ(mb, col, row, red, green, blue, transparency) +local curRow = 0 +local curCol = 0 +local numRows = MultiboardGetRowCount(mb) +local numCols = MultiboardGetColumnCount(mb) +local mbitem = nil + +while (true) do +curRow = curRow + 1 +if (curRow > numRows) then break end +if (row == 0 or row == curRow) then +curCol = 0 +while (true) do +curCol = curCol + 1 +if (curCol > numCols) then break end +if (col == 0 or col == curCol) then +mbitem = MultiboardGetItem(mb, curRow - 1, curCol - 1) +MultiboardSetItemValueColor(mbitem, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +MultiboardReleaseItem(mbitem) +end +end +end +end +end + +function MultiboardSetItemWidthBJ(mb, col, row, width) +local curRow = 0 +local curCol = 0 +local numRows = MultiboardGetRowCount(mb) +local numCols = MultiboardGetColumnCount(mb) +local mbitem = nil + +while (true) do +curRow = curRow + 1 +if (curRow > numRows) then break end +if (row == 0 or row == curRow) then +curCol = 0 +while (true) do +curCol = curCol + 1 +if (curCol > numCols) then break end +if (col == 0 or col == curCol) then +mbitem = MultiboardGetItem(mb, curRow - 1, curCol - 1) +MultiboardSetItemWidth(mbitem, width / 100.0) +MultiboardReleaseItem(mbitem) +end +end +end +end +end + +function MultiboardSetItemIconBJ(mb, col, row, iconFileName) +local curRow = 0 +local curCol = 0 +local numRows = MultiboardGetRowCount(mb) +local numCols = MultiboardGetColumnCount(mb) +local mbitem = nil + +while (true) do +curRow = curRow + 1 +if (curRow > numRows) then break end +if (row == 0 or row == curRow) then +curCol = 0 +while (true) do +curCol = curCol + 1 +if (curCol > numCols) then break end +if (col == 0 or col == curCol) then +mbitem = MultiboardGetItem(mb, curRow - 1, curCol - 1) +MultiboardSetItemIcon(mbitem, iconFileName) +MultiboardReleaseItem(mbitem) +end +end +end +end +end + +function TextTagSize2Height(size) +return size * 0.023 / 10 +end + +function TextTagSpeed2Velocity(speed) +return speed * 0.071 / 128 +end + +function SetTextTagColorBJ(tt, red, green, blue, transparency) +SetTextTagColor(tt, PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - transparency)) +end + +function SetTextTagVelocityBJ(tt, speed, angle) +local vel = TextTagSpeed2Velocity(speed) +local xvel = vel * Cos(angle * bj_DEGTORAD) +local yvel = vel * Sin(angle * bj_DEGTORAD) + +SetTextTagVelocity(tt, xvel, yvel) +end + +function SetTextTagTextBJ(tt, s, size) +local textHeight = TextTagSize2Height(size) + +SetTextTagText(tt, s, textHeight) +end + +function SetTextTagPosBJ(tt, loc, zOffset) +SetTextTagPos(tt, GetLocationX(loc), GetLocationY(loc), zOffset) +end + +function SetTextTagPosUnitBJ(tt, whichUnit, zOffset) +SetTextTagPosUnit(tt, whichUnit, zOffset) +end + +function SetTextTagSuspendedBJ(tt, flag) +SetTextTagSuspended(tt, flag) +end + +function SetTextTagPermanentBJ(tt, flag) +SetTextTagPermanent(tt, flag) +end + +function SetTextTagAgeBJ(tt, age) +SetTextTagAge(tt, age) +end + +function SetTextTagLifespanBJ(tt, lifespan) +SetTextTagLifespan(tt, lifespan) +end + +function SetTextTagFadepointBJ(tt, fadepoint) +SetTextTagFadepoint(tt, fadepoint) +end + +function CreateTextTagLocBJ(s, loc, zOffset, size, red, green, blue, transparency) +bj_lastCreatedTextTag = CreateTextTag() +SetTextTagTextBJ(bj_lastCreatedTextTag, s, size) +SetTextTagPosBJ(bj_lastCreatedTextTag, loc, zOffset) +SetTextTagColorBJ(bj_lastCreatedTextTag, red, green, blue, transparency) +return bj_lastCreatedTextTag +end + +function CreateTextTagUnitBJ(s, whichUnit, zOffset, size, red, green, blue, transparency) +bj_lastCreatedTextTag = CreateTextTag() +SetTextTagTextBJ(bj_lastCreatedTextTag, s, size) +SetTextTagPosUnitBJ(bj_lastCreatedTextTag, whichUnit, zOffset) +SetTextTagColorBJ(bj_lastCreatedTextTag, red, green, blue, transparency) +return bj_lastCreatedTextTag +end + +function DestroyTextTagBJ(tt) +DestroyTextTag(tt) +end + +function ShowTextTagForceBJ(show, tt, whichForce) +if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then +SetTextTagVisibility(tt, show) +end +end + +function GetLastCreatedTextTag() +return bj_lastCreatedTextTag +end + +function PauseGameOn() +PauseGame(true) +end + +function PauseGameOff() +PauseGame(false) +end + +function SetUserControlForceOn(whichForce) +if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then +EnableUserControl(true) +end +end + +function SetUserControlForceOff(whichForce) +if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then +EnableUserControl(false) +end +end + +function ShowInterfaceForceOn(whichForce, fadeDuration) +if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then +ShowInterface(true, fadeDuration) +end +end + +function ShowInterfaceForceOff(whichForce, fadeDuration) +if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then +ShowInterface(false, fadeDuration) +end +end + +function PingMinimapForForce(whichForce, x, y, duration) +if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then +PingMinimap(x, y, duration) +end +end + +function PingMinimapLocForForce(whichForce, loc, duration) +PingMinimapForForce(whichForce, GetLocationX(loc), GetLocationY(loc), duration) +end + +function PingMinimapForPlayer(whichPlayer, x, y, duration) +if (GetLocalPlayer() == whichPlayer) then +PingMinimap(x, y, duration) +end +end + +function PingMinimapLocForPlayer(whichPlayer, loc, duration) +PingMinimapForPlayer(whichPlayer, GetLocationX(loc), GetLocationY(loc), duration) +end + +function PingMinimapForForceEx(whichForce, x, y, duration, style, red, green, blue) +local red255 = PercentTo255(red) +local green255 = PercentTo255(green) +local blue255 = PercentTo255(blue) + +if (IsPlayerInForce(GetLocalPlayer(), whichForce)) then +if ((red255 == 255) and ((green255 == 0) and (blue255 == 0))) then +red255 = 254 +end +if (style == bj_MINIMAPPINGSTYLE_SIMPLE) then +PingMinimapEx(x, y, duration, red255, green255, blue255, false) +elseif (style == bj_MINIMAPPINGSTYLE_FLASHY) then +PingMinimapEx(x, y, duration, red255, green255, blue255, true) +elseif (style == bj_MINIMAPPINGSTYLE_ATTACK) then +PingMinimapEx(x, y, duration, 255, 0, 0, false) +else +end +end +end + +function PingMinimapLocForForceEx(whichForce, loc, duration, style, red, green, blue) +PingMinimapForForceEx(whichForce, GetLocationX(loc), GetLocationY(loc), duration, style, red, green, blue) +end + +function EnableWorldFogBoundaryBJ(enable, f) +if (IsPlayerInForce(GetLocalPlayer(), f)) then +EnableWorldFogBoundary(enable) +end +end + +function EnableOcclusionBJ(enable, f) +if (IsPlayerInForce(GetLocalPlayer(), f)) then +EnableOcclusion(enable) +end +end + +function CancelCineSceneBJ() +StopSoundBJ(bj_cineSceneLastSound, true) +EndCinematicScene() +end + +function TryInitCinematicBehaviorBJ() +local index + +if (bj_cineSceneBeingSkipped == nil) then +bj_cineSceneBeingSkipped = CreateTrigger() +index = 0 +while (true) do +TriggerRegisterPlayerEvent(bj_cineSceneBeingSkipped, Player(index), EVENT_PLAYER_END_CINEMATIC) +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +TriggerAddAction(bj_cineSceneBeingSkipped, CancelCineSceneBJ) +end +end + +function SetCinematicSceneBJ(soundHandle, portraitUnitId, color, speakerTitle, text, sceneDuration, voiceoverDuration) +bj_cineSceneLastSound = soundHandle +SetCinematicScene(portraitUnitId, color, speakerTitle, text, sceneDuration, voiceoverDuration) +PlaySoundBJ(soundHandle) +end + +function GetTransmissionDuration(soundHandle, timeType, timeVal) +local duration + +if (timeType == bj_TIMETYPE_ADD) then +duration = GetSoundDurationBJ(soundHandle) + timeVal +elseif (timeType == bj_TIMETYPE_SET) then +duration = timeVal +elseif (timeType == bj_TIMETYPE_SUB) then +duration = GetSoundDurationBJ(soundHandle) - timeVal +else +duration = GetSoundDurationBJ(soundHandle) +end +if (duration < 0) then +duration = 0.0 +end +return duration +end + +function WaitTransmissionDuration(soundHandle, timeType, timeVal) +if (timeType == bj_TIMETYPE_SET) then +TriggerSleepAction(timeVal) +elseif (soundHandle == nil) then +TriggerSleepAction(bj_NOTHING_SOUND_DURATION) +elseif (timeType == bj_TIMETYPE_SUB) then +WaitForSoundBJ(soundHandle, timeVal) +elseif (timeType == bj_TIMETYPE_ADD) then +WaitForSoundBJ(soundHandle, 0) +TriggerSleepAction(timeVal) +else +end +end + +function DoTransmissionBasicsXYBJ(unitId, color, x, y, soundHandle, unitName, message, duration) +SetCinematicSceneBJ(soundHandle, unitId, color, unitName, message, duration + bj_TRANSMISSION_PORT_HANGTIME, duration) +if (unitId ~= 0) then +PingMinimap(x, y, bj_TRANSMISSION_PING_TIME) +end +end + +function TransmissionFromUnitWithNameBJ(toForce, whichUnit, unitName, soundHandle, message, timeType, timeVal, wait) +TryInitCinematicBehaviorBJ() +AttachSoundToUnit(soundHandle, whichUnit) +timeVal = RMaxBJ(timeVal, 0) +bj_lastTransmissionDuration = GetTransmissionDuration(soundHandle, timeType, timeVal) +bj_lastPlayedSound = soundHandle +if (IsPlayerInForce(GetLocalPlayer(), toForce)) then +if (whichUnit == nil) then +DoTransmissionBasicsXYBJ(0, PLAYER_COLOR_RED, 0, 0, soundHandle, unitName, message, bj_lastTransmissionDuration) +else +DoTransmissionBasicsXYBJ(GetUnitTypeId(whichUnit), GetPlayerColor(GetOwningPlayer(whichUnit)), GetUnitX(whichUnit), GetUnitY(whichUnit), soundHandle, unitName, message, bj_lastTransmissionDuration) +if (not IsUnitHidden(whichUnit)) then +UnitAddIndicator(whichUnit, bj_TRANSMISSION_IND_RED, bj_TRANSMISSION_IND_BLUE, bj_TRANSMISSION_IND_GREEN, bj_TRANSMISSION_IND_ALPHA) +end +end +end +if (wait and (bj_lastTransmissionDuration > 0)) then +WaitTransmissionDuration(soundHandle, timeType, timeVal) +end +end + +function PlayDialogueFromSpeakerEx(toForce, speaker, speakerType, soundHandle, timeType, timeVal, wait) +if GetUnitTypeId(speaker) ~= speakerType then +if _DEBUG then +BJDebugMsg(("Attempted to play FacialAnimation with the wrong speaker UnitType - Param: " .. I2S(speakerType) .. " Runtime: " .. I2S(GetUnitTypeId(speaker)))) +end +end +TryInitCinematicBehaviorBJ() +AttachSoundToUnit(soundHandle, speaker) +timeVal = RMaxBJ(timeVal, 0) +bj_lastTransmissionDuration = GetTransmissionDuration(soundHandle, timeType, timeVal) +bj_lastPlayedSound = soundHandle +if (IsPlayerInForce(GetLocalPlayer(), toForce)) then +SetCinematicSceneBJ(soundHandle, speakerType, GetPlayerColor(GetOwningPlayer(speaker)), GetLocalizedString(GetDialogueSpeakerNameKey(soundHandle)), GetLocalizedString(GetDialogueTextKey(soundHandle)), bj_lastTransmissionDuration + bj_TRANSMISSION_PORT_HANGTIME, bj_lastTransmissionDuration) +end +if (wait and (bj_lastTransmissionDuration > 0)) then +WaitTransmissionDuration(soundHandle, timeType, timeVal) +end +return true +end + +function PlayDialogueFromSpeakerTypeEx(toForce, fromPlayer, speakerType, loc, soundHandle, timeType, timeVal, wait) +TryInitCinematicBehaviorBJ() +timeVal = RMaxBJ(timeVal, 0) +bj_lastTransmissionDuration = GetTransmissionDuration(soundHandle, timeType, timeVal) +bj_lastPlayedSound = soundHandle +if (IsPlayerInForce(GetLocalPlayer(), toForce)) then +SetCinematicSceneBJ(soundHandle, speakerType, GetPlayerColor(fromPlayer), GetLocalizedString(GetDialogueSpeakerNameKey(soundHandle)), GetLocalizedString(GetDialogueTextKey(soundHandle)), bj_lastTransmissionDuration + bj_TRANSMISSION_PORT_HANGTIME, bj_lastTransmissionDuration) +if (speakerType ~= 0) then +PingMinimap(GetLocationX(loc), GetLocationY(loc), bj_TRANSMISSION_PING_TIME) +end +end +if (wait and (bj_lastTransmissionDuration > 0)) then +WaitTransmissionDuration(soundHandle, timeType, timeVal) +end +return true +end + +function TransmissionFromUnitTypeWithNameBJ(toForce, fromPlayer, unitId, unitName, loc, soundHandle, message, timeType, timeVal, wait) +TryInitCinematicBehaviorBJ() +timeVal = RMaxBJ(timeVal, 0) +bj_lastTransmissionDuration = GetTransmissionDuration(soundHandle, timeType, timeVal) +bj_lastPlayedSound = soundHandle +if (IsPlayerInForce(GetLocalPlayer(), toForce)) then +DoTransmissionBasicsXYBJ(unitId, GetPlayerColor(fromPlayer), GetLocationX(loc), GetLocationY(loc), soundHandle, unitName, message, bj_lastTransmissionDuration) +end +if (wait and (bj_lastTransmissionDuration > 0)) then +WaitTransmissionDuration(soundHandle, timeType, timeVal) +end +end + +function GetLastTransmissionDurationBJ() +return bj_lastTransmissionDuration +end + +function ForceCinematicSubtitlesBJ(flag) +ForceCinematicSubtitles(flag) +end + +function CinematicModeExBJ(cineMode, forForce, interfaceFadeTime) +if (not bj_gameStarted) then +interfaceFadeTime = 0.0 +end +if (cineMode) then +if (not bj_cineModeAlreadyIn) then +SetCinematicAudio(true) +bj_cineModeAlreadyIn = true +bj_cineModePriorSpeed = GetGameSpeed() +bj_cineModePriorFogSetting = IsFogEnabled() +bj_cineModePriorMaskSetting = IsFogMaskEnabled() +bj_cineModePriorDawnDusk = IsDawnDuskEnabled() +bj_cineModeSavedSeed = GetRandomInt(0, 1000000) +end +if (IsPlayerInForce(GetLocalPlayer(), forForce)) then +ClearTextMessages() +ShowInterface(false, interfaceFadeTime) +EnableUserControl(false) +EnableOcclusion(false) +SetCineModeVolumeGroupsBJ() +end +SetGameSpeed(bj_CINEMODE_GAMESPEED) +SetMapFlag(MAP_LOCK_SPEED, true) +FogMaskEnable(false) +FogEnable(false) +EnableWorldFogBoundary(false) +EnableDawnDusk(false) +SetRandomSeed(0) +else +bj_cineModeAlreadyIn = false +SetCinematicAudio(false) +if (IsPlayerInForce(GetLocalPlayer(), forForce)) then +ShowInterface(true, interfaceFadeTime) +EnableUserControl(true) +EnableOcclusion(true) +VolumeGroupReset() +EndThematicMusic() +CameraResetSmoothingFactorBJ() +end +SetMapFlag(MAP_LOCK_SPEED, false) +SetGameSpeed(bj_cineModePriorSpeed) +FogMaskEnable(bj_cineModePriorMaskSetting) +FogEnable(bj_cineModePriorFogSetting) +EnableWorldFogBoundary(true) +EnableDawnDusk(bj_cineModePriorDawnDusk) +SetRandomSeed(bj_cineModeSavedSeed) +end +end + +function CinematicModeBJ(cineMode, forForce) +CinematicModeExBJ(cineMode, forForce, bj_CINEMODE_INTERFACEFADE) +end + +function DisplayCineFilterBJ(flag) +DisplayCineFilter(flag) +end + +function CinematicFadeCommonBJ(red, green, blue, duration, tex, startTrans, endTrans) +if (duration == 0) then +startTrans = endTrans +end +EnableUserUI(false) +SetCineFilterTexture(tex) +SetCineFilterBlendMode(BLEND_MODE_BLEND) +SetCineFilterTexMapFlags(TEXMAP_FLAG_NONE) +SetCineFilterStartUV(0, 0, 1, 1) +SetCineFilterEndUV(0, 0, 1, 1) +SetCineFilterStartColor(PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - startTrans)) +SetCineFilterEndColor(PercentTo255(red), PercentTo255(green), PercentTo255(blue), PercentTo255(100.0 - endTrans)) +SetCineFilterDuration(duration) +DisplayCineFilter(true) +end + +function FinishCinematicFadeBJ() +DestroyTimer(bj_cineFadeFinishTimer) +bj_cineFadeFinishTimer = nil +DisplayCineFilter(false) +EnableUserUI(true) +end + +function FinishCinematicFadeAfterBJ(duration) +bj_cineFadeFinishTimer = CreateTimer() +TimerStart(bj_cineFadeFinishTimer, duration, false, FinishCinematicFadeBJ) +end + +function ContinueCinematicFadeBJ() +DestroyTimer(bj_cineFadeContinueTimer) +bj_cineFadeContinueTimer = nil +CinematicFadeCommonBJ(bj_cineFadeContinueRed, bj_cineFadeContinueGreen, bj_cineFadeContinueBlue, bj_cineFadeContinueDuration, bj_cineFadeContinueTex, bj_cineFadeContinueTrans, 100) +end + +function ContinueCinematicFadeAfterBJ(duration, red, green, blue, trans, tex) +bj_cineFadeContinueRed = red +bj_cineFadeContinueGreen = green +bj_cineFadeContinueBlue = blue +bj_cineFadeContinueTrans = trans +bj_cineFadeContinueDuration = duration +bj_cineFadeContinueTex = tex +bj_cineFadeContinueTimer = CreateTimer() +TimerStart(bj_cineFadeContinueTimer, duration, false, ContinueCinematicFadeBJ) +end + +function AbortCinematicFadeBJ() +if (bj_cineFadeContinueTimer ~= nil) then +DestroyTimer(bj_cineFadeContinueTimer) +end +if (bj_cineFadeFinishTimer ~= nil) then +DestroyTimer(bj_cineFadeFinishTimer) +end +end + +function CinematicFadeBJ(fadetype, duration, tex, red, green, blue, trans) +if (fadetype == bj_CINEFADETYPE_FADEOUT) then +AbortCinematicFadeBJ() +CinematicFadeCommonBJ(red, green, blue, duration, tex, 100, trans) +elseif (fadetype == bj_CINEFADETYPE_FADEIN) then +AbortCinematicFadeBJ() +CinematicFadeCommonBJ(red, green, blue, duration, tex, trans, 100) +FinishCinematicFadeAfterBJ(duration) +elseif (fadetype == bj_CINEFADETYPE_FADEOUTIN) then +if (duration > 0) then +AbortCinematicFadeBJ() +CinematicFadeCommonBJ(red, green, blue, duration * 0.5, tex, 100, trans) +ContinueCinematicFadeAfterBJ(duration * 0.5, red, green, blue, trans, tex) +FinishCinematicFadeAfterBJ(duration) +end +else +end +end + +function CinematicFilterGenericBJ(duration, bmode, tex, red0, green0, blue0, trans0, red1, green1, blue1, trans1) +AbortCinematicFadeBJ() +SetCineFilterTexture(tex) +SetCineFilterBlendMode(bmode) +SetCineFilterTexMapFlags(TEXMAP_FLAG_NONE) +SetCineFilterStartUV(0, 0, 1, 1) +SetCineFilterEndUV(0, 0, 1, 1) +SetCineFilterStartColor(PercentTo255(red0), PercentTo255(green0), PercentTo255(blue0), PercentTo255(100.0 - trans0)) +SetCineFilterEndColor(PercentTo255(red1), PercentTo255(green1), PercentTo255(blue1), PercentTo255(100.0 - trans1)) +SetCineFilterDuration(duration) +DisplayCineFilter(true) +end + +function RescueUnitBJ(whichUnit, rescuer, changeColor) +if (IsUnitDeadBJ(whichUnit) or (GetOwningPlayer(whichUnit) == rescuer)) then +return +end +StartSound(bj_rescueSound) +SetUnitOwner(whichUnit, rescuer, changeColor) +UnitAddIndicator(whichUnit, 0, 255, 0, 255) +PingMinimapForPlayer(rescuer, GetUnitX(whichUnit), GetUnitY(whichUnit), bj_RESCUE_PING_TIME) +end + +function TriggerActionUnitRescuedBJ() +local theUnit = GetTriggerUnit() + +if IsUnitType(theUnit, UNIT_TYPE_STRUCTURE) then +RescueUnitBJ(theUnit, GetOwningPlayer(GetRescuer()), bj_rescueChangeColorBldg) +else +RescueUnitBJ(theUnit, GetOwningPlayer(GetRescuer()), bj_rescueChangeColorUnit) +end +end + +function TryInitRescuableTriggersBJ() +local index + +if (bj_rescueUnitBehavior == nil) then +bj_rescueUnitBehavior = CreateTrigger() +index = 0 +while (true) do +TriggerRegisterPlayerUnitEvent(bj_rescueUnitBehavior, Player(index), EVENT_PLAYER_UNIT_RESCUED, nil) +index = index + 1 +if (index == bj_MAX_PLAYER_SLOTS) then break end +end +TriggerAddAction(bj_rescueUnitBehavior, TriggerActionUnitRescuedBJ) +end +end + +function SetRescueUnitColorChangeBJ(changeColor) +bj_rescueChangeColorUnit = changeColor +end + +function SetRescueBuildingColorChangeBJ(changeColor) +bj_rescueChangeColorBldg = changeColor +end + +function MakeUnitRescuableToForceBJEnum() +TryInitRescuableTriggersBJ() +SetUnitRescuable(bj_makeUnitRescuableUnit, GetEnumPlayer(), bj_makeUnitRescuableFlag) +end + +function MakeUnitRescuableToForceBJ(whichUnit, isRescuable, whichForce) +bj_makeUnitRescuableUnit = whichUnit +bj_makeUnitRescuableFlag = isRescuable +ForForce(whichForce, MakeUnitRescuableToForceBJEnum) +end + +function InitRescuableBehaviorBJ() +local index + +index = 0 +while (true) do +if (GetPlayerController(Player(index)) == MAP_CONTROL_RESCUABLE) then +TryInitRescuableTriggersBJ() +return +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function SetPlayerTechResearchedSwap(techid, levels, whichPlayer) +SetPlayerTechResearched(whichPlayer, techid, levels) +end + +function SetPlayerTechMaxAllowedSwap(techid, maximum, whichPlayer) +SetPlayerTechMaxAllowed(whichPlayer, techid, maximum) +end + +function SetPlayerMaxHeroesAllowed(maximum, whichPlayer) +SetPlayerTechMaxAllowed(whichPlayer, FourCC("HERO"), maximum) +end + +function GetPlayerTechCountSimple(techid, whichPlayer) +return GetPlayerTechCount(whichPlayer, techid, true) +end + +function GetPlayerTechMaxAllowedSwap(techid, whichPlayer) +return GetPlayerTechMaxAllowed(whichPlayer, techid) +end + +function SetPlayerAbilityAvailableBJ(avail, abilid, whichPlayer) +SetPlayerAbilityAvailable(whichPlayer, abilid, avail) +end + +function SetCampaignMenuRaceBJ(campaignNumber) +if (campaignNumber == bj_CAMPAIGN_INDEX_T) then +SetCampaignMenuRace(RACE_OTHER) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_H) then +SetCampaignMenuRace(RACE_HUMAN) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_U) then +SetCampaignMenuRace(RACE_UNDEAD) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_O) then +SetCampaignMenuRace(RACE_ORC) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_N) then +SetCampaignMenuRace(RACE_NIGHTELF) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_XN) then +SetCampaignMenuRaceEx(bj_CAMPAIGN_OFFSET_XN) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_XH) then +SetCampaignMenuRaceEx(bj_CAMPAIGN_OFFSET_XH) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_XU) then +SetCampaignMenuRaceEx(bj_CAMPAIGN_OFFSET_XU) +elseif (campaignNumber == bj_CAMPAIGN_INDEX_XO) then +SetCampaignMenuRaceEx(bj_CAMPAIGN_OFFSET_XO) +else +end +end + +function SetMissionAvailableBJ(available, missionIndex) +local campaignNumber = missionIndex // 1000 +local missionNumber = missionIndex - campaignNumber * 1000 + +SetMissionAvailable(campaignNumber, missionNumber, available) +end + +function SetCampaignAvailableBJ(available, campaignNumber) +local campaignOffset + +if (campaignNumber == bj_CAMPAIGN_INDEX_H) then +SetTutorialCleared(true) +end +if (campaignNumber == bj_CAMPAIGN_INDEX_XN) then +campaignOffset = bj_CAMPAIGN_OFFSET_XN +elseif (campaignNumber == bj_CAMPAIGN_INDEX_XH) then +campaignOffset = bj_CAMPAIGN_OFFSET_XH +elseif (campaignNumber == bj_CAMPAIGN_INDEX_XU) then +campaignOffset = bj_CAMPAIGN_OFFSET_XU +elseif (campaignNumber == bj_CAMPAIGN_INDEX_XO) then +campaignOffset = bj_CAMPAIGN_OFFSET_XO +else +campaignOffset = campaignNumber +end +SetCampaignAvailable(campaignOffset, available) +SetCampaignMenuRaceBJ(campaignNumber) +ForceCampaignSelectScreen() +end + +function SetCinematicAvailableBJ(available, cinematicIndex) +if (cinematicIndex == bj_CINEMATICINDEX_TOP) then +SetOpCinematicAvailable(bj_CAMPAIGN_INDEX_T, available) +PlayCinematic("TutorialOp") +elseif (cinematicIndex == bj_CINEMATICINDEX_HOP) then +SetOpCinematicAvailable(bj_CAMPAIGN_INDEX_H, available) +PlayCinematic("HumanOp") +elseif (cinematicIndex == bj_CINEMATICINDEX_HED) then +SetEdCinematicAvailable(bj_CAMPAIGN_INDEX_H, available) +PlayCinematic("HumanEd") +elseif (cinematicIndex == bj_CINEMATICINDEX_OOP) then +SetOpCinematicAvailable(bj_CAMPAIGN_INDEX_O, available) +PlayCinematic("OrcOp") +elseif (cinematicIndex == bj_CINEMATICINDEX_OED) then +SetEdCinematicAvailable(bj_CAMPAIGN_INDEX_O, available) +PlayCinematic("OrcEd") +elseif (cinematicIndex == bj_CINEMATICINDEX_UOP) then +SetEdCinematicAvailable(bj_CAMPAIGN_INDEX_U, available) +PlayCinematic("UndeadOp") +elseif (cinematicIndex == bj_CINEMATICINDEX_UED) then +SetEdCinematicAvailable(bj_CAMPAIGN_INDEX_U, available) +PlayCinematic("UndeadEd") +elseif (cinematicIndex == bj_CINEMATICINDEX_NOP) then +SetEdCinematicAvailable(bj_CAMPAIGN_INDEX_N, available) +PlayCinematic("NightElfOp") +elseif (cinematicIndex == bj_CINEMATICINDEX_NED) then +SetEdCinematicAvailable(bj_CAMPAIGN_INDEX_N, available) +PlayCinematic("NightElfEd") +elseif (cinematicIndex == bj_CINEMATICINDEX_XOP) then +SetOpCinematicAvailable(bj_CAMPAIGN_OFFSET_XN, available) +elseif (cinematicIndex == bj_CINEMATICINDEX_XED) then +SetEdCinematicAvailable(bj_CAMPAIGN_OFFSET_XU, available) +PlayCinematic("OutroX") +else +end +end + +function InitGameCacheBJ(campaignFile) +bj_lastCreatedGameCache = InitGameCache(campaignFile) +return bj_lastCreatedGameCache +end + +function SaveGameCacheBJ(cache) +return SaveGameCache(cache) +end + +function GetLastCreatedGameCacheBJ() +return bj_lastCreatedGameCache +end + +function InitHashtableBJ() +bj_lastCreatedHashtable = InitHashtable() +return bj_lastCreatedHashtable +end + +function GetLastCreatedHashtableBJ() +return bj_lastCreatedHashtable +end + +function StoreRealBJ(value, key, missionKey, cache) +StoreReal(cache, missionKey, key, value) +end + +function StoreIntegerBJ(value, key, missionKey, cache) +StoreInteger(cache, missionKey, key, value) +end + +function StoreBooleanBJ(value, key, missionKey, cache) +StoreBoolean(cache, missionKey, key, value) +end + +function StoreStringBJ(value, key, missionKey, cache) +return StoreString(cache, missionKey, key, value) +end + +function StoreUnitBJ(whichUnit, key, missionKey, cache) +return StoreUnit(cache, missionKey, key, whichUnit) +end + +function SaveRealBJ(value, key, missionKey, table) +SaveReal(table, missionKey, key, value) +end + +function SaveIntegerBJ(value, key, missionKey, table) +SaveInteger(table, missionKey, key, value) +end + +function SaveBooleanBJ(value, key, missionKey, table) +SaveBoolean(table, missionKey, key, value) +end + +function SaveStringBJ(value, key, missionKey, table) +return SaveStr(table, missionKey, key, value) +end + +function SavePlayerHandleBJ(whichPlayer, key, missionKey, table) +return SavePlayerHandle(table, missionKey, key, whichPlayer) +end + +function SaveWidgetHandleBJ(whichWidget, key, missionKey, table) +return SaveWidgetHandle(table, missionKey, key, whichWidget) +end + +function SaveDestructableHandleBJ(whichDestructable, key, missionKey, table) +return SaveDestructableHandle(table, missionKey, key, whichDestructable) +end + +function SaveItemHandleBJ(whichItem, key, missionKey, table) +return SaveItemHandle(table, missionKey, key, whichItem) +end + +function SaveUnitHandleBJ(whichUnit, key, missionKey, table) +return SaveUnitHandle(table, missionKey, key, whichUnit) +end + +function SaveAbilityHandleBJ(whichAbility, key, missionKey, table) +return SaveAbilityHandle(table, missionKey, key, whichAbility) +end + +function SaveTimerHandleBJ(whichTimer, key, missionKey, table) +return SaveTimerHandle(table, missionKey, key, whichTimer) +end + +function SaveTriggerHandleBJ(whichTrigger, key, missionKey, table) +return SaveTriggerHandle(table, missionKey, key, whichTrigger) +end + +function SaveTriggerConditionHandleBJ(whichTriggercondition, key, missionKey, table) +return SaveTriggerConditionHandle(table, missionKey, key, whichTriggercondition) +end + +function SaveTriggerActionHandleBJ(whichTriggeraction, key, missionKey, table) +return SaveTriggerActionHandle(table, missionKey, key, whichTriggeraction) +end + +function SaveTriggerEventHandleBJ(whichEvent, key, missionKey, table) +return SaveTriggerEventHandle(table, missionKey, key, whichEvent) +end + +function SaveForceHandleBJ(whichForce, key, missionKey, table) +return SaveForceHandle(table, missionKey, key, whichForce) +end + +function SaveGroupHandleBJ(whichGroup, key, missionKey, table) +return SaveGroupHandle(table, missionKey, key, whichGroup) +end + +function SaveLocationHandleBJ(whichLocation, key, missionKey, table) +return SaveLocationHandle(table, missionKey, key, whichLocation) +end + +function SaveRectHandleBJ(whichRect, key, missionKey, table) +return SaveRectHandle(table, missionKey, key, whichRect) +end + +function SaveBooleanExprHandleBJ(whichBoolexpr, key, missionKey, table) +return SaveBooleanExprHandle(table, missionKey, key, whichBoolexpr) +end + +function SaveSoundHandleBJ(whichSound, key, missionKey, table) +return SaveSoundHandle(table, missionKey, key, whichSound) +end + +function SaveEffectHandleBJ(whichEffect, key, missionKey, table) +return SaveEffectHandle(table, missionKey, key, whichEffect) +end + +function SaveUnitPoolHandleBJ(whichUnitpool, key, missionKey, table) +return SaveUnitPoolHandle(table, missionKey, key, whichUnitpool) +end + +function SaveItemPoolHandleBJ(whichItempool, key, missionKey, table) +return SaveItemPoolHandle(table, missionKey, key, whichItempool) +end + +function SaveQuestHandleBJ(whichQuest, key, missionKey, table) +return SaveQuestHandle(table, missionKey, key, whichQuest) +end + +function SaveQuestItemHandleBJ(whichQuestitem, key, missionKey, table) +return SaveQuestItemHandle(table, missionKey, key, whichQuestitem) +end + +function SaveDefeatConditionHandleBJ(whichDefeatcondition, key, missionKey, table) +return SaveDefeatConditionHandle(table, missionKey, key, whichDefeatcondition) +end + +function SaveTimerDialogHandleBJ(whichTimerdialog, key, missionKey, table) +return SaveTimerDialogHandle(table, missionKey, key, whichTimerdialog) +end + +function SaveLeaderboardHandleBJ(whichLeaderboard, key, missionKey, table) +return SaveLeaderboardHandle(table, missionKey, key, whichLeaderboard) +end + +function SaveMultiboardHandleBJ(whichMultiboard, key, missionKey, table) +return SaveMultiboardHandle(table, missionKey, key, whichMultiboard) +end + +function SaveMultiboardItemHandleBJ(whichMultiboarditem, key, missionKey, table) +return SaveMultiboardItemHandle(table, missionKey, key, whichMultiboarditem) +end + +function SaveTrackableHandleBJ(whichTrackable, key, missionKey, table) +return SaveTrackableHandle(table, missionKey, key, whichTrackable) +end + +function SaveDialogHandleBJ(whichDialog, key, missionKey, table) +return SaveDialogHandle(table, missionKey, key, whichDialog) +end + +function SaveButtonHandleBJ(whichButton, key, missionKey, table) +return SaveButtonHandle(table, missionKey, key, whichButton) +end + +function SaveTextTagHandleBJ(whichTexttag, key, missionKey, table) +return SaveTextTagHandle(table, missionKey, key, whichTexttag) +end + +function SaveLightningHandleBJ(whichLightning, key, missionKey, table) +return SaveLightningHandle(table, missionKey, key, whichLightning) +end + +function SaveImageHandleBJ(whichImage, key, missionKey, table) +return SaveImageHandle(table, missionKey, key, whichImage) +end + +function SaveUbersplatHandleBJ(whichUbersplat, key, missionKey, table) +return SaveUbersplatHandle(table, missionKey, key, whichUbersplat) +end + +function SaveRegionHandleBJ(whichRegion, key, missionKey, table) +return SaveRegionHandle(table, missionKey, key, whichRegion) +end + +function SaveFogStateHandleBJ(whichFogState, key, missionKey, table) +return SaveFogStateHandle(table, missionKey, key, whichFogState) +end + +function SaveFogModifierHandleBJ(whichFogModifier, key, missionKey, table) +return SaveFogModifierHandle(table, missionKey, key, whichFogModifier) +end + +function SaveAgentHandleBJ(whichAgent, key, missionKey, table) +return SaveAgentHandle(table, missionKey, key, whichAgent) +end + +function SaveHashtableHandleBJ(whichHashtable, key, missionKey, table) +return SaveHashtableHandle(table, missionKey, key, whichHashtable) +end + +function GetStoredRealBJ(key, missionKey, cache) +return GetStoredReal(cache, missionKey, key) +end + +function GetStoredIntegerBJ(key, missionKey, cache) +return GetStoredInteger(cache, missionKey, key) +end + +function GetStoredBooleanBJ(key, missionKey, cache) +return GetStoredBoolean(cache, missionKey, key) +end + +function GetStoredStringBJ(key, missionKey, cache) +local s + +s = GetStoredString(cache, missionKey, key) +if (s == "") then +return "" +else +return s +end +end + +function LoadRealBJ(key, missionKey, table) +return LoadReal(table, missionKey, key) +end + +function LoadIntegerBJ(key, missionKey, table) +return LoadInteger(table, missionKey, key) +end + +function LoadBooleanBJ(key, missionKey, table) +return LoadBoolean(table, missionKey, key) +end + +function LoadStringBJ(key, missionKey, table) +local s + +s = LoadStr(table, missionKey, key) +if (s == "") then +return "" +else +return s +end +end + +function LoadPlayerHandleBJ(key, missionKey, table) +return LoadPlayerHandle(table, missionKey, key) +end + +function LoadWidgetHandleBJ(key, missionKey, table) +return LoadWidgetHandle(table, missionKey, key) +end + +function LoadDestructableHandleBJ(key, missionKey, table) +return LoadDestructableHandle(table, missionKey, key) +end + +function LoadItemHandleBJ(key, missionKey, table) +return LoadItemHandle(table, missionKey, key) +end + +function LoadUnitHandleBJ(key, missionKey, table) +return LoadUnitHandle(table, missionKey, key) +end + +function LoadAbilityHandleBJ(key, missionKey, table) +return LoadAbilityHandle(table, missionKey, key) +end + +function LoadTimerHandleBJ(key, missionKey, table) +return LoadTimerHandle(table, missionKey, key) +end + +function LoadTriggerHandleBJ(key, missionKey, table) +return LoadTriggerHandle(table, missionKey, key) +end + +function LoadTriggerConditionHandleBJ(key, missionKey, table) +return LoadTriggerConditionHandle(table, missionKey, key) +end + +function LoadTriggerActionHandleBJ(key, missionKey, table) +return LoadTriggerActionHandle(table, missionKey, key) +end + +function LoadTriggerEventHandleBJ(key, missionKey, table) +return LoadTriggerEventHandle(table, missionKey, key) +end + +function LoadForceHandleBJ(key, missionKey, table) +return LoadForceHandle(table, missionKey, key) +end + +function LoadGroupHandleBJ(key, missionKey, table) +return LoadGroupHandle(table, missionKey, key) +end + +function LoadLocationHandleBJ(key, missionKey, table) +return LoadLocationHandle(table, missionKey, key) +end + +function LoadRectHandleBJ(key, missionKey, table) +return LoadRectHandle(table, missionKey, key) +end + +function LoadBooleanExprHandleBJ(key, missionKey, table) +return LoadBooleanExprHandle(table, missionKey, key) +end + +function LoadSoundHandleBJ(key, missionKey, table) +return LoadSoundHandle(table, missionKey, key) +end + +function LoadEffectHandleBJ(key, missionKey, table) +return LoadEffectHandle(table, missionKey, key) +end + +function LoadUnitPoolHandleBJ(key, missionKey, table) +return LoadUnitPoolHandle(table, missionKey, key) +end + +function LoadItemPoolHandleBJ(key, missionKey, table) +return LoadItemPoolHandle(table, missionKey, key) +end + +function LoadQuestHandleBJ(key, missionKey, table) +return LoadQuestHandle(table, missionKey, key) +end + +function LoadQuestItemHandleBJ(key, missionKey, table) +return LoadQuestItemHandle(table, missionKey, key) +end + +function LoadDefeatConditionHandleBJ(key, missionKey, table) +return LoadDefeatConditionHandle(table, missionKey, key) +end + +function LoadTimerDialogHandleBJ(key, missionKey, table) +return LoadTimerDialogHandle(table, missionKey, key) +end + +function LoadLeaderboardHandleBJ(key, missionKey, table) +return LoadLeaderboardHandle(table, missionKey, key) +end + +function LoadMultiboardHandleBJ(key, missionKey, table) +return LoadMultiboardHandle(table, missionKey, key) +end + +function LoadMultiboardItemHandleBJ(key, missionKey, table) +return LoadMultiboardItemHandle(table, missionKey, key) +end + +function LoadTrackableHandleBJ(key, missionKey, table) +return LoadTrackableHandle(table, missionKey, key) +end + +function LoadDialogHandleBJ(key, missionKey, table) +return LoadDialogHandle(table, missionKey, key) +end + +function LoadButtonHandleBJ(key, missionKey, table) +return LoadButtonHandle(table, missionKey, key) +end + +function LoadTextTagHandleBJ(key, missionKey, table) +return LoadTextTagHandle(table, missionKey, key) +end + +function LoadLightningHandleBJ(key, missionKey, table) +return LoadLightningHandle(table, missionKey, key) +end + +function LoadImageHandleBJ(key, missionKey, table) +return LoadImageHandle(table, missionKey, key) +end + +function LoadUbersplatHandleBJ(key, missionKey, table) +return LoadUbersplatHandle(table, missionKey, key) +end + +function LoadRegionHandleBJ(key, missionKey, table) +return LoadRegionHandle(table, missionKey, key) +end + +function LoadFogStateHandleBJ(key, missionKey, table) +return LoadFogStateHandle(table, missionKey, key) +end + +function LoadFogModifierHandleBJ(key, missionKey, table) +return LoadFogModifierHandle(table, missionKey, key) +end + +function LoadHashtableHandleBJ(key, missionKey, table) +return LoadHashtableHandle(table, missionKey, key) +end + +function RestoreUnitLocFacingAngleBJ(key, missionKey, cache, forWhichPlayer, loc, facing) +bj_lastLoadedUnit = RestoreUnit(cache, missionKey, key, forWhichPlayer, GetLocationX(loc), GetLocationY(loc), facing) +return bj_lastLoadedUnit +end + +function RestoreUnitLocFacingPointBJ(key, missionKey, cache, forWhichPlayer, loc, lookAt) +return RestoreUnitLocFacingAngleBJ(key, missionKey, cache, forWhichPlayer, loc, AngleBetweenPoints(loc, lookAt)) +end + +function GetLastRestoredUnitBJ() +return bj_lastLoadedUnit +end + +function FlushGameCacheBJ(cache) +FlushGameCache(cache) +end + +function FlushStoredMissionBJ(missionKey, cache) +FlushStoredMission(cache, missionKey) +end + +function FlushParentHashtableBJ(table) +FlushParentHashtable(table) +end + +function FlushChildHashtableBJ(missionKey, table) +FlushChildHashtable(table, missionKey) +end + +function HaveStoredValue(key, valueType, missionKey, cache) +if (valueType == bj_GAMECACHE_BOOLEAN) then +return HaveStoredBoolean(cache, missionKey, key) +elseif (valueType == bj_GAMECACHE_INTEGER) then +return HaveStoredInteger(cache, missionKey, key) +elseif (valueType == bj_GAMECACHE_REAL) then +return HaveStoredReal(cache, missionKey, key) +elseif (valueType == bj_GAMECACHE_UNIT) then +return HaveStoredUnit(cache, missionKey, key) +elseif (valueType == bj_GAMECACHE_STRING) then +return HaveStoredString(cache, missionKey, key) +else +return false +end +end + +function HaveSavedValue(key, valueType, missionKey, table) +if (valueType == bj_HASHTABLE_BOOLEAN) then +return HaveSavedBoolean(table, missionKey, key) +elseif (valueType == bj_HASHTABLE_INTEGER) then +return HaveSavedInteger(table, missionKey, key) +elseif (valueType == bj_HASHTABLE_REAL) then +return HaveSavedReal(table, missionKey, key) +elseif (valueType == bj_HASHTABLE_STRING) then +return HaveSavedString(table, missionKey, key) +elseif (valueType == bj_HASHTABLE_HANDLE) then +return HaveSavedHandle(table, missionKey, key) +else +return false +end +end + +function ShowCustomCampaignButton(show, whichButton) +SetCustomCampaignButtonVisible(whichButton - 1, show) +end + +function IsCustomCampaignButtonVisibile(whichButton) +return GetCustomCampaignButtonVisible(whichButton - 1) +end + +function SaveGameCheckPointBJ(mapSaveName, doCheckpointHint) +SaveGameCheckpoint(mapSaveName, doCheckpointHint) +end + +function LoadGameBJ(loadFileName, doScoreScreen) +LoadGame(loadFileName, doScoreScreen) +end + +function SaveAndChangeLevelBJ(saveFileName, newLevel, doScoreScreen) +SaveGame(saveFileName) +ChangeLevel(newLevel, doScoreScreen) +end + +function SaveAndLoadGameBJ(saveFileName, loadFileName, doScoreScreen) +SaveGame(saveFileName) +LoadGame(loadFileName, doScoreScreen) +end + +function RenameSaveDirectoryBJ(sourceDirName, destDirName) +return RenameSaveDirectory(sourceDirName, destDirName) +end + +function RemoveSaveDirectoryBJ(sourceDirName) +return RemoveSaveDirectory(sourceDirName) +end + +function CopySaveGameBJ(sourceSaveName, destSaveName) +return CopySaveGame(sourceSaveName, destSaveName) +end + +function GetPlayerStartLocationX(whichPlayer) +return GetStartLocationX(GetPlayerStartLocation(whichPlayer)) +end + +function GetPlayerStartLocationY(whichPlayer) +return GetStartLocationY(GetPlayerStartLocation(whichPlayer)) +end + +function GetPlayerStartLocationLoc(whichPlayer) +return GetStartLocationLoc(GetPlayerStartLocation(whichPlayer)) +end + +function GetRectCenter(whichRect) +return Location(GetRectCenterX(whichRect), GetRectCenterY(whichRect)) +end + +function IsPlayerSlotState(whichPlayer, whichState) +return GetPlayerSlotState(whichPlayer) == whichState +end + +function GetFadeFromSeconds(seconds) +if (seconds ~= 0) then +return 128 // R2I(seconds) +end +return 10000 +end + +function GetFadeFromSecondsAsReal(seconds) +if (seconds ~= 0) then +return 128.00 / seconds +end +return 10000.00 +end + +function AdjustPlayerStateSimpleBJ(whichPlayer, whichPlayerState, delta) +SetPlayerState(whichPlayer, whichPlayerState, GetPlayerState(whichPlayer, whichPlayerState) + delta) +end + +function AdjustPlayerStateBJ(delta, whichPlayer, whichPlayerState) +if (delta > 0) then +if (whichPlayerState == PLAYER_STATE_RESOURCE_GOLD) then +AdjustPlayerStateSimpleBJ(whichPlayer, PLAYER_STATE_GOLD_GATHERED, delta) +elseif (whichPlayerState == PLAYER_STATE_RESOURCE_LUMBER) then +AdjustPlayerStateSimpleBJ(whichPlayer, PLAYER_STATE_LUMBER_GATHERED, delta) +end +end +AdjustPlayerStateSimpleBJ(whichPlayer, whichPlayerState, delta) +end + +function SetPlayerStateBJ(whichPlayer, whichPlayerState, value) +local oldValue = GetPlayerState(whichPlayer, whichPlayerState) + +AdjustPlayerStateBJ(value - oldValue, whichPlayer, whichPlayerState) +end + +function SetPlayerFlagBJ(whichPlayerFlag, flag, whichPlayer) +SetPlayerState(whichPlayer, whichPlayerFlag, IntegerTertiaryOp(flag, 1, 0)) +end + +function SetPlayerTaxRateBJ(rate, whichResource, sourcePlayer, otherPlayer) +SetPlayerTaxRate(sourcePlayer, otherPlayer, whichResource, rate) +end + +function GetPlayerTaxRateBJ(whichResource, sourcePlayer, otherPlayer) +return GetPlayerTaxRate(sourcePlayer, otherPlayer, whichResource) +end + +function IsPlayerFlagSetBJ(whichPlayerFlag, whichPlayer) +return GetPlayerState(whichPlayer, whichPlayerFlag) == 1 +end + +function AddResourceAmountBJ(delta, whichUnit) +AddResourceAmount(whichUnit, delta) +end + +function GetConvertedPlayerId(whichPlayer) +return GetPlayerId(whichPlayer) + 1 +end + +function ConvertedPlayer(convertedPlayerId) +return Player(convertedPlayerId - 1) +end + +function GetRectWidthBJ(r) +return GetRectMaxX(r) - GetRectMinX(r) +end + +function GetRectHeightBJ(r) +return GetRectMaxY(r) - GetRectMinY(r) +end + +function BlightGoldMineForPlayerBJ(goldMine, whichPlayer) +local mineX +local mineY +local mineGold +local newMine + +if GetUnitTypeId(goldMine) ~= FourCC("ngol") then +return nil +end +mineX = GetUnitX(goldMine) +mineY = GetUnitY(goldMine) +mineGold = GetResourceAmount(goldMine) +RemoveUnit(goldMine) +newMine = CreateBlightedGoldmine(whichPlayer, mineX, mineY, bj_UNIT_FACING) +SetResourceAmount(newMine, mineGold) +return newMine +end + +function BlightGoldMineForPlayer(goldMine, whichPlayer) +bj_lastHauntedGoldMine = BlightGoldMineForPlayerBJ(goldMine, whichPlayer) +return bj_lastHauntedGoldMine +end + +function GetLastHauntedGoldMine() +return bj_lastHauntedGoldMine +end + +function IsPointBlightedBJ(where) +return IsPointBlighted(GetLocationX(where), GetLocationY(where)) +end + +function SetPlayerColorBJEnum() +SetUnitColor(GetEnumUnit(), bj_setPlayerTargetColor) +end + +function SetPlayerColorBJ(whichPlayer, color, changeExisting) +local g + +SetPlayerColor(whichPlayer, color) +if changeExisting then +bj_setPlayerTargetColor = color +g = CreateGroup() +GroupEnumUnitsOfPlayer(g, whichPlayer, nil) +ForGroup(g, SetPlayerColorBJEnum) +DestroyGroup(g) +end +end + +function SetPlayerUnitAvailableBJ(unitId, allowed, whichPlayer) +if allowed then +SetPlayerTechMaxAllowed(whichPlayer, unitId, -1) +else +SetPlayerTechMaxAllowed(whichPlayer, unitId, 0) +end +end + +function LockGameSpeedBJ() +SetMapFlag(MAP_LOCK_SPEED, true) +end + +function UnlockGameSpeedBJ() +SetMapFlag(MAP_LOCK_SPEED, false) +end + +function IssueTargetOrderBJ(whichUnit, order, targetWidget) +return IssueTargetOrder(whichUnit, order, targetWidget) +end + +function IssuePointOrderLocBJ(whichUnit, order, whichLocation) +return IssuePointOrderLoc(whichUnit, order, whichLocation) +end + +function IssueTargetDestructableOrder(whichUnit, order, targetWidget) +return IssueTargetOrder(whichUnit, order, targetWidget) +end + +function IssueTargetItemOrder(whichUnit, order, targetWidget) +return IssueTargetOrder(whichUnit, order, targetWidget) +end + +function IssueImmediateOrderBJ(whichUnit, order) +return IssueImmediateOrder(whichUnit, order) +end + +function GroupTargetOrderBJ(whichGroup, order, targetWidget) +return GroupTargetOrder(whichGroup, order, targetWidget) +end + +function GroupPointOrderLocBJ(whichGroup, order, whichLocation) +return GroupPointOrderLoc(whichGroup, order, whichLocation) +end + +function GroupImmediateOrderBJ(whichGroup, order) +return GroupImmediateOrder(whichGroup, order) +end + +function GroupTargetDestructableOrder(whichGroup, order, targetWidget) +return GroupTargetOrder(whichGroup, order, targetWidget) +end + +function GroupTargetItemOrder(whichGroup, order, targetWidget) +return GroupTargetOrder(whichGroup, order, targetWidget) +end + +function GetDyingDestructable() +return GetTriggerDestructable() +end + +function SetUnitRallyPoint(whichUnit, targPos) +IssuePointOrderLocBJ(whichUnit, "setrally", targPos) +end + +function SetUnitRallyUnit(whichUnit, targUnit) +IssueTargetOrder(whichUnit, "setrally", targUnit) +end + +function SetUnitRallyDestructable(whichUnit, targDest) +IssueTargetOrder(whichUnit, "setrally", targDest) +end + +function SaveDyingWidget() +bj_lastDyingWidget = GetTriggerWidget() +end + +function SetBlightRectBJ(addBlight, whichPlayer, r) +SetBlightRect(whichPlayer, r, addBlight) +end + +function SetBlightRadiusLocBJ(addBlight, whichPlayer, loc, radius) +SetBlightLoc(whichPlayer, loc, radius, addBlight) +end + +function GetAbilityName(abilcode) +return GetObjectName(abilcode) +end + +function MeleeStartingVisibility() +SetFloatGameState(GAME_STATE_TIME_OF_DAY, bj_MELEE_STARTING_TOD) +end + +function MeleeStartingResources() +local index +local indexPlayer +local v +local startingGold +local startingLumber + +v = VersionGet() +if (v == VERSION_REIGN_OF_CHAOS) then +startingGold = bj_MELEE_STARTING_GOLD_V0 +startingLumber = bj_MELEE_STARTING_LUMBER_V0 +else +startingGold = bj_MELEE_STARTING_GOLD_V1 +startingLumber = bj_MELEE_STARTING_LUMBER_V1 +end +index = 0 +while (true) do +indexPlayer = Player(index) +if (GetPlayerSlotState(indexPlayer) == PLAYER_SLOT_STATE_PLAYING) then +SetPlayerState(indexPlayer, PLAYER_STATE_RESOURCE_GOLD, startingGold) +SetPlayerState(indexPlayer, PLAYER_STATE_RESOURCE_LUMBER, startingLumber) +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function ReducePlayerTechMaxAllowed(whichPlayer, techId, limit) +local oldMax = GetPlayerTechMaxAllowed(whichPlayer, techId) + +if (oldMax < 0 or oldMax > limit) then +SetPlayerTechMaxAllowed(whichPlayer, techId, limit) +end +end + +function MeleeStartingHeroLimit() +local index + +index = 0 +while (true) do +SetPlayerMaxHeroesAllowed(bj_MELEE_HERO_LIMIT, Player(index)) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Hamg"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Hmkg"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Hpal"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Hblm"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Obla"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Ofar"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Otch"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Oshd"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Edem"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Ekee"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Emoo"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Ewar"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Udea"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Udre"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Ulic"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Ucrl"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Npbm"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Nbrn"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Nngs"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Nplh"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Nbst"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Nalc"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Ntin"), bj_MELEE_HERO_TYPE_LIMIT) +ReducePlayerTechMaxAllowed(Player(index), FourCC("Nfir"), bj_MELEE_HERO_TYPE_LIMIT) +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function MeleeTrainedUnitIsHeroBJFilter() +return IsUnitType(GetFilterUnit(), UNIT_TYPE_HERO) +end + +function MeleeGrantItemsToHero(whichUnit) +local owner = GetPlayerId(GetOwningPlayer(whichUnit)) + +if (bj_meleeTwinkedHeroes[owner] < bj_MELEE_MAX_TWINKED_HEROES) then +UnitAddItemById(whichUnit, FourCC("stwp")) +bj_meleeTwinkedHeroes[owner] = bj_meleeTwinkedHeroes[owner] + 1 +end +end + +function MeleeGrantItemsToTrainedHero() +MeleeGrantItemsToHero(GetTrainedUnit()) +end + +function MeleeGrantItemsToHiredHero() +MeleeGrantItemsToHero(GetSoldUnit()) +end + +function MeleeGrantHeroItems() +local index +local trig + +index = 0 +while (true) do +bj_meleeTwinkedHeroes[index] = 0 +index = index + 1 +if (index == bj_MAX_PLAYER_SLOTS) then break end +end +index = 0 +while (true) do +trig = CreateTrigger() +TriggerRegisterPlayerUnitEvent(trig, Player(index), EVENT_PLAYER_UNIT_TRAIN_FINISH, filterMeleeTrainedUnitIsHeroBJ) +TriggerAddAction(trig, MeleeGrantItemsToTrainedHero) +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +trig = CreateTrigger() +TriggerRegisterPlayerUnitEvent(trig, Player(PLAYER_NEUTRAL_PASSIVE), EVENT_PLAYER_UNIT_SELL, filterMeleeTrainedUnitIsHeroBJ) +TriggerAddAction(trig, MeleeGrantItemsToHiredHero) +bj_meleeGrantHeroItems = true +end + +function MeleeClearExcessUnit() +local theUnit = GetEnumUnit() +local owner = GetPlayerId(GetOwningPlayer(theUnit)) + +if (owner == PLAYER_NEUTRAL_AGGRESSIVE) then +RemoveUnit(GetEnumUnit()) +elseif (owner == PLAYER_NEUTRAL_PASSIVE) then +if not IsUnitType(theUnit, UNIT_TYPE_STRUCTURE) then +RemoveUnit(GetEnumUnit()) +end +end +end + +function MeleeClearNearbyUnits(x, y, range) +local nearbyUnits + +nearbyUnits = CreateGroup() +GroupEnumUnitsInRange(nearbyUnits, x, y, range, nil) +ForGroup(nearbyUnits, MeleeClearExcessUnit) +DestroyGroup(nearbyUnits) +end + +function MeleeClearExcessUnits() +local index +local locX +local locY +local indexPlayer + +index = 0 +while (true) do +indexPlayer = Player(index) +if (GetPlayerSlotState(indexPlayer) == PLAYER_SLOT_STATE_PLAYING) then +locX = GetStartLocationX(GetPlayerStartLocation(indexPlayer)) +locY = GetStartLocationY(GetPlayerStartLocation(indexPlayer)) +MeleeClearNearbyUnits(locX, locY, bj_MELEE_CLEAR_UNITS_RADIUS) +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function MeleeEnumFindNearestMine() +local enumUnit = GetEnumUnit() +local dist +local unitLoc + +if (GetUnitTypeId(enumUnit) == FourCC("ngol")) then +unitLoc = GetUnitLoc(enumUnit) +dist = DistanceBetweenPoints(unitLoc, bj_meleeNearestMineToLoc) +RemoveLocation(unitLoc) +if ((bj_meleeNearestMineDist < 0) or (dist < bj_meleeNearestMineDist)) then +bj_meleeNearestMine = enumUnit +bj_meleeNearestMineDist = dist +end +end +end + +function MeleeFindNearestMine(src, range) +local nearbyMines + +bj_meleeNearestMine = nil +bj_meleeNearestMineDist = -1 +bj_meleeNearestMineToLoc = src +nearbyMines = CreateGroup() +GroupEnumUnitsInRangeOfLoc(nearbyMines, src, range, nil) +ForGroup(nearbyMines, MeleeEnumFindNearestMine) +DestroyGroup(nearbyMines) +return bj_meleeNearestMine +end + +function MeleeRandomHeroLoc(p, id1, id2, id3, id4, loc) +local hero = nil +local roll +local pick +local v + +v = VersionGet() +if (v == VERSION_REIGN_OF_CHAOS) then +roll = GetRandomInt(1, 3) +else +roll = GetRandomInt(1, 4) +end +if roll == 1 then +pick = id1 +elseif roll == 2 then +pick = id2 +elseif roll == 3 then +pick = id3 +elseif roll == 4 then +pick = id4 +else +pick = id1 +end +hero = CreateUnitAtLoc(p, pick, loc, bj_UNIT_FACING) +if bj_meleeGrantHeroItems then +MeleeGrantItemsToHero(hero) +end +return hero +end + +function MeleeGetProjectedLoc(src, targ, distance, deltaAngle) +local srcX = GetLocationX(src) +local srcY = GetLocationY(src) +local direction = Atan2(GetLocationY(targ) - srcY, GetLocationX(targ) - srcX) + deltaAngle + +return Location(srcX + distance * Cos(direction), srcY + distance * Sin(direction)) +end + +function MeleeGetNearestValueWithin(val, minVal, maxVal) +if (val < minVal) then +return minVal +elseif (val > maxVal) then +return maxVal +else +return val +end +end + +function MeleeGetLocWithinRect(src, r) +local withinX = MeleeGetNearestValueWithin(GetLocationX(src), GetRectMinX(r), GetRectMaxX(r)) +local withinY = MeleeGetNearestValueWithin(GetLocationY(src), GetRectMinY(r), GetRectMaxY(r)) + +return Location(withinX, withinY) +end + +function MeleeStartingUnitsHuman(whichPlayer, startLoc, doHeroes, doCamera, doPreload) +local useRandomHero = IsMapFlagSet(MAP_RANDOM_HERO) +local unitSpacing = 64.00 +local nearestMine +local nearMineLoc +local heroLoc +local peonX +local peonY +local townHall = nil + +if (doPreload) then +Preloader("scripts\\HumanMelee.pld") +end +nearestMine = MeleeFindNearestMine(startLoc, bj_MELEE_MINE_SEARCH_RADIUS) +if (nearestMine ~= nil) then +townHall = CreateUnitAtLoc(whichPlayer, FourCC("htow"), startLoc, bj_UNIT_FACING) +nearMineLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 320, 0) +peonX = GetLocationX(nearMineLoc) +peonY = GetLocationY(nearMineLoc) +CreateUnit(whichPlayer, FourCC("hpea"), peonX + 0.00 * unitSpacing, peonY + 1.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX + 1.00 * unitSpacing, peonY + 0.15 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX - 1.00 * unitSpacing, peonY + 0.15 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX + 0.60 * unitSpacing, peonY - 1.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX - 0.60 * unitSpacing, peonY - 1.00 * unitSpacing, bj_UNIT_FACING) +heroLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 384, 45) +else +townHall = CreateUnitAtLoc(whichPlayer, FourCC("htow"), startLoc, bj_UNIT_FACING) +peonX = GetLocationX(startLoc) +peonY = GetLocationY(startLoc) - 224.00 +CreateUnit(whichPlayer, FourCC("hpea"), peonX + 2.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX + 1.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX + 0.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX - 1.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("hpea"), peonX - 2.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +heroLoc = Location(peonX, peonY - 2.00 * unitSpacing) +end +if (townHall ~= nil) then +UnitAddAbilityBJ(FourCC("Amic"), townHall) +UnitMakeAbilityPermanentBJ(true, FourCC("Amic"), townHall) +end +if (doHeroes) then +if useRandomHero then +MeleeRandomHeroLoc(whichPlayer, FourCC("Hamg"), FourCC("Hmkg"), FourCC("Hpal"), FourCC("Hblm"), heroLoc) +else +SetPlayerState(whichPlayer, PLAYER_STATE_RESOURCE_HERO_TOKENS, bj_MELEE_STARTING_HERO_TOKENS) +end +end +if (doCamera) then +SetCameraPositionForPlayer(whichPlayer, peonX, peonY) +SetCameraQuickPositionForPlayer(whichPlayer, peonX, peonY) +end +end + +function MeleeStartingUnitsOrc(whichPlayer, startLoc, doHeroes, doCamera, doPreload) +local useRandomHero = IsMapFlagSet(MAP_RANDOM_HERO) +local unitSpacing = 64.00 +local nearestMine +local nearMineLoc +local heroLoc +local peonX +local peonY + +if (doPreload) then +Preloader("scripts\\OrcMelee.pld") +end +nearestMine = MeleeFindNearestMine(startLoc, bj_MELEE_MINE_SEARCH_RADIUS) +if (nearestMine ~= nil) then +CreateUnitAtLoc(whichPlayer, FourCC("ogre"), startLoc, bj_UNIT_FACING) +nearMineLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 320, 0) +peonX = GetLocationX(nearMineLoc) +peonY = GetLocationY(nearMineLoc) +CreateUnit(whichPlayer, FourCC("opeo"), peonX + 0.00 * unitSpacing, peonY + 1.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX + 1.00 * unitSpacing, peonY + 0.15 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX - 1.00 * unitSpacing, peonY + 0.15 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX + 0.60 * unitSpacing, peonY - 1.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX - 0.60 * unitSpacing, peonY - 1.00 * unitSpacing, bj_UNIT_FACING) +heroLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 384, 45) +else +CreateUnitAtLoc(whichPlayer, FourCC("ogre"), startLoc, bj_UNIT_FACING) +peonX = GetLocationX(startLoc) +peonY = GetLocationY(startLoc) - 224.00 +CreateUnit(whichPlayer, FourCC("opeo"), peonX + 2.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX + 1.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX + 0.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX - 1.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("opeo"), peonX - 2.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +heroLoc = Location(peonX, peonY - 2.00 * unitSpacing) +end +if (doHeroes) then +if useRandomHero then +MeleeRandomHeroLoc(whichPlayer, FourCC("Obla"), FourCC("Ofar"), FourCC("Otch"), FourCC("Oshd"), heroLoc) +else +SetPlayerState(whichPlayer, PLAYER_STATE_RESOURCE_HERO_TOKENS, bj_MELEE_STARTING_HERO_TOKENS) +end +end +if (doCamera) then +SetCameraPositionForPlayer(whichPlayer, peonX, peonY) +SetCameraQuickPositionForPlayer(whichPlayer, peonX, peonY) +end +end + +function MeleeStartingUnitsUndead(whichPlayer, startLoc, doHeroes, doCamera, doPreload) +local useRandomHero = IsMapFlagSet(MAP_RANDOM_HERO) +local unitSpacing = 64.00 +local nearestMine +local nearMineLoc +local nearTownLoc +local heroLoc +local peonX +local peonY +local ghoulX +local ghoulY + +if (doPreload) then +Preloader("scripts\\UndeadMelee.pld") +end +nearestMine = MeleeFindNearestMine(startLoc, bj_MELEE_MINE_SEARCH_RADIUS) +if (nearestMine ~= nil) then +CreateUnitAtLoc(whichPlayer, FourCC("unpl"), startLoc, bj_UNIT_FACING) +nearestMine = BlightGoldMineForPlayerBJ(nearestMine, whichPlayer) +nearTownLoc = MeleeGetProjectedLoc(startLoc, GetUnitLoc(nearestMine), 288, 0) +ghoulX = GetLocationX(nearTownLoc) +ghoulY = GetLocationY(nearTownLoc) +bj_ghoul[GetPlayerId(whichPlayer)] = CreateUnit(whichPlayer, FourCC("ugho"), ghoulX + 0.00 * unitSpacing, ghoulY + 0.00 * unitSpacing, bj_UNIT_FACING) +nearMineLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 320, 0) +peonX = GetLocationX(nearMineLoc) +peonY = GetLocationY(nearMineLoc) +CreateUnit(whichPlayer, FourCC("uaco"), peonX + 0.00 * unitSpacing, peonY + 0.50 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("uaco"), peonX + 0.65 * unitSpacing, peonY - 0.50 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("uaco"), peonX - 0.65 * unitSpacing, peonY - 0.50 * unitSpacing, bj_UNIT_FACING) +SetBlightLoc(whichPlayer, nearMineLoc, 768, true) +heroLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 384, 45) +else +CreateUnitAtLoc(whichPlayer, FourCC("unpl"), startLoc, bj_UNIT_FACING) +peonX = GetLocationX(startLoc) +peonY = GetLocationY(startLoc) - 224.00 +CreateUnit(whichPlayer, FourCC("uaco"), peonX - 1.50 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("uaco"), peonX - 0.50 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("uaco"), peonX + 0.50 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ugho"), peonX + 1.50 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +SetBlightLoc(whichPlayer, startLoc, 768, true) +heroLoc = Location(peonX, peonY - 2.00 * unitSpacing) +end +if (doHeroes) then +if useRandomHero then +MeleeRandomHeroLoc(whichPlayer, FourCC("Udea"), FourCC("Udre"), FourCC("Ulic"), FourCC("Ucrl"), heroLoc) +else +SetPlayerState(whichPlayer, PLAYER_STATE_RESOURCE_HERO_TOKENS, bj_MELEE_STARTING_HERO_TOKENS) +end +end +if (doCamera) then +SetCameraPositionForPlayer(whichPlayer, peonX, peonY) +SetCameraQuickPositionForPlayer(whichPlayer, peonX, peonY) +end +end + +function MeleeStartingUnitsNightElf(whichPlayer, startLoc, doHeroes, doCamera, doPreload) +local useRandomHero = IsMapFlagSet(MAP_RANDOM_HERO) +local unitSpacing = 64.00 +local minTreeDist = 3.50 * bj_CELLWIDTH +local minWispDist = 1.75 * bj_CELLWIDTH +local nearestMine +local nearMineLoc +local wispLoc +local heroLoc +local peonX +local peonY +local tree + +if (doPreload) then +Preloader("scripts\\NightElfMelee.pld") +end +nearestMine = MeleeFindNearestMine(startLoc, bj_MELEE_MINE_SEARCH_RADIUS) +if (nearestMine ~= nil) then +nearMineLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 650, 0) +nearMineLoc = MeleeGetLocWithinRect(nearMineLoc, GetRectFromCircleBJ(GetUnitLoc(nearestMine), minTreeDist)) +tree = CreateUnitAtLoc(whichPlayer, FourCC("etol"), nearMineLoc, bj_UNIT_FACING) +IssueTargetOrder(tree, "entangleinstant", nearestMine) +wispLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 320, 0) +wispLoc = MeleeGetLocWithinRect(wispLoc, GetRectFromCircleBJ(GetUnitLoc(nearestMine), minWispDist)) +peonX = GetLocationX(wispLoc) +peonY = GetLocationY(wispLoc) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX + 0.00 * unitSpacing, peonY + 1.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX + 1.00 * unitSpacing, peonY + 0.15 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX - 1.00 * unitSpacing, peonY + 0.15 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX + 0.58 * unitSpacing, peonY - 1.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX - 0.58 * unitSpacing, peonY - 1.00 * unitSpacing, bj_UNIT_FACING) +heroLoc = MeleeGetProjectedLoc(GetUnitLoc(nearestMine), startLoc, 384, 45) +else +CreateUnitAtLoc(whichPlayer, FourCC("etol"), startLoc, bj_UNIT_FACING) +peonX = GetLocationX(startLoc) +peonY = GetLocationY(startLoc) - 224.00 +CreateUnit(whichPlayer, FourCC("ewsp"), peonX - 2.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX - 1.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX + 0.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX + 1.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +CreateUnit(whichPlayer, FourCC("ewsp"), peonX + 2.00 * unitSpacing, peonY + 0.00 * unitSpacing, bj_UNIT_FACING) +heroLoc = Location(peonX, peonY - 2.00 * unitSpacing) +end +if (doHeroes) then +if useRandomHero then +MeleeRandomHeroLoc(whichPlayer, FourCC("Edem"), FourCC("Ekee"), FourCC("Emoo"), FourCC("Ewar"), heroLoc) +else +SetPlayerState(whichPlayer, PLAYER_STATE_RESOURCE_HERO_TOKENS, bj_MELEE_STARTING_HERO_TOKENS) +end +end +if (doCamera) then +SetCameraPositionForPlayer(whichPlayer, peonX, peonY) +SetCameraQuickPositionForPlayer(whichPlayer, peonX, peonY) +end +end + +function MeleeStartingUnitsUnknownRace(whichPlayer, startLoc, doHeroes, doCamera, doPreload) +local index + +if (doPreload) then +end +index = 0 +while (true) do +CreateUnit(whichPlayer, FourCC("nshe"), GetLocationX(startLoc) + GetRandomReal(-256, 256), GetLocationY(startLoc) + GetRandomReal(-256, 256), GetRandomReal(0, 360)) +index = index + 1 +if (index == 12) then break end +end +if (doHeroes) then +SetPlayerState(whichPlayer, PLAYER_STATE_RESOURCE_HERO_TOKENS, bj_MELEE_STARTING_HERO_TOKENS) +end +if (doCamera) then +SetCameraPositionLocForPlayer(whichPlayer, startLoc) +SetCameraQuickPositionLocForPlayer(whichPlayer, startLoc) +end +end + +function MeleeStartingUnits() +local index +local indexPlayer +local indexStartLoc +local indexRace + +Preloader("scripts\\SharedMelee.pld") +index = 0 +while (true) do +indexPlayer = Player(index) +if (GetPlayerSlotState(indexPlayer) == PLAYER_SLOT_STATE_PLAYING) then +indexStartLoc = GetStartLocationLoc(GetPlayerStartLocation(indexPlayer)) +indexRace = GetPlayerRace(indexPlayer) +if (indexRace == RACE_HUMAN) then +MeleeStartingUnitsHuman(indexPlayer, indexStartLoc, true, true, true) +elseif (indexRace == RACE_ORC) then +MeleeStartingUnitsOrc(indexPlayer, indexStartLoc, true, true, true) +elseif (indexRace == RACE_UNDEAD) then +MeleeStartingUnitsUndead(indexPlayer, indexStartLoc, true, true, true) +elseif (indexRace == RACE_NIGHTELF) then +MeleeStartingUnitsNightElf(indexPlayer, indexStartLoc, true, true, true) +else +MeleeStartingUnitsUnknownRace(indexPlayer, indexStartLoc, true, true, true) +end +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function MeleeStartingUnitsForPlayer(whichRace, whichPlayer, loc, doHeroes) +if (whichRace == RACE_HUMAN) then +MeleeStartingUnitsHuman(whichPlayer, loc, doHeroes, false, false) +elseif (whichRace == RACE_ORC) then +MeleeStartingUnitsOrc(whichPlayer, loc, doHeroes, false, false) +elseif (whichRace == RACE_UNDEAD) then +MeleeStartingUnitsUndead(whichPlayer, loc, doHeroes, false, false) +elseif (whichRace == RACE_NIGHTELF) then +MeleeStartingUnitsNightElf(whichPlayer, loc, doHeroes, false, false) +else +end +end + +function PickMeleeAI(num, s1, s2, s3) +local pick + +if GetAIDifficulty(num) == AI_DIFFICULTY_NEWBIE then +StartMeleeAI(num, s1) +return +end +if s2 == "" then +pick = 1 +elseif s3 == "" then +pick = GetRandomInt(1, 2) +else +pick = GetRandomInt(1, 3) +end +if pick == 1 then +StartMeleeAI(num, s1) +elseif pick == 2 then +StartMeleeAI(num, s2) +else +StartMeleeAI(num, s3) +end +end + +function MeleeStartingAI() +local index +local indexPlayer +local indexRace + +index = 0 +while (true) do +indexPlayer = Player(index) +if (GetPlayerSlotState(indexPlayer) == PLAYER_SLOT_STATE_PLAYING) then +indexRace = GetPlayerRace(indexPlayer) +if (GetPlayerController(indexPlayer) == MAP_CONTROL_COMPUTER) then +if (indexRace == RACE_HUMAN) then +PickMeleeAI(indexPlayer, "human.ai", "", "") +elseif (indexRace == RACE_ORC) then +PickMeleeAI(indexPlayer, "orc.ai", "", "") +elseif (indexRace == RACE_UNDEAD) then +PickMeleeAI(indexPlayer, "undead.ai", "", "") +RecycleGuardPosition(bj_ghoul[index]) +elseif (indexRace == RACE_NIGHTELF) then +PickMeleeAI(indexPlayer, "elf.ai", "", "") +else +end +ShareEverythingWithTeamAI(indexPlayer) +end +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function LockGuardPosition(targ) +SetUnitCreepGuard(targ, true) +end + +function MeleePlayerIsOpponent(playerIndex, opponentIndex) +local thePlayer = Player(playerIndex) +local theOpponent = Player(opponentIndex) + +if (playerIndex == opponentIndex) then +return false +end +if (GetPlayerSlotState(theOpponent) ~= PLAYER_SLOT_STATE_PLAYING) then +return false +end +if (bj_meleeDefeated[opponentIndex]) then +return false +end +if GetPlayerAlliance(thePlayer, theOpponent, ALLIANCE_PASSIVE) then +if GetPlayerAlliance(theOpponent, thePlayer, ALLIANCE_PASSIVE) then +if (GetPlayerState(thePlayer, PLAYER_STATE_ALLIED_VICTORY) == 1) then +if (GetPlayerState(theOpponent, PLAYER_STATE_ALLIED_VICTORY) == 1) then +return false +end +end +end +end +return true +end + +function MeleeGetAllyStructureCount(whichPlayer) +local playerIndex +local buildingCount +local indexPlayer + +buildingCount = 0 +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (PlayersAreCoAllied(whichPlayer, indexPlayer)) then +buildingCount = buildingCount + GetPlayerStructureCount(indexPlayer, true) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +return buildingCount +end + +function MeleeGetAllyCount(whichPlayer) +local playerIndex +local playerCount +local indexPlayer + +playerCount = 0 +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (PlayersAreCoAllied(whichPlayer, indexPlayer) and (not bj_meleeDefeated[playerIndex] and (whichPlayer ~= indexPlayer))) then +playerCount = playerCount + 1 +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +return playerCount +end + +function MeleeGetAllyKeyStructureCount(whichPlayer) +local playerIndex +local indexPlayer +local keyStructs + +keyStructs = 0 +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (PlayersAreCoAllied(whichPlayer, indexPlayer)) then +keyStructs = keyStructs + BlzGetPlayerTownHallCount(indexPlayer) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +return keyStructs +end + +function MeleeDoDrawEnum() +local thePlayer = GetEnumPlayer() + +CachePlayerHeroData(thePlayer) +RemovePlayerPreserveUnitsBJ(thePlayer, PLAYER_GAME_RESULT_TIE, false) +end + +function MeleeDoVictoryEnum() +local thePlayer = GetEnumPlayer() +local playerIndex = GetPlayerId(thePlayer) + +if (not bj_meleeVictoried[playerIndex]) then +bj_meleeVictoried[playerIndex] = true +CachePlayerHeroData(thePlayer) +RemovePlayerPreserveUnitsBJ(thePlayer, PLAYER_GAME_RESULT_VICTORY, false) +end +end + +function MeleeDoDefeat(whichPlayer) +bj_meleeDefeated[GetPlayerId(whichPlayer)] = true +RemovePlayerPreserveUnitsBJ(whichPlayer, PLAYER_GAME_RESULT_DEFEAT, false) +end + +function MeleeDoDefeatEnum() +local thePlayer = GetEnumPlayer() + +CachePlayerHeroData(thePlayer) +MakeUnitsPassiveForTeam(thePlayer) +MeleeDoDefeat(thePlayer) +end + +function MeleeDoLeave(whichPlayer) +if (GetIntegerGameState(GAME_STATE_DISCONNECTED) ~= 0) then +GameOverDialogBJ(whichPlayer, true) +else +bj_meleeDefeated[GetPlayerId(whichPlayer)] = true +RemovePlayerPreserveUnitsBJ(whichPlayer, PLAYER_GAME_RESULT_DEFEAT, true) +end +end + +function MeleeRemoveObservers() +local playerIndex +local indexPlayer + +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (IsPlayerObserver(indexPlayer)) then +RemovePlayerPreserveUnitsBJ(indexPlayer, PLAYER_GAME_RESULT_NEUTRAL, false) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +end + +function MeleeCheckForVictors() +local playerIndex +local opponentIndex +local opponentlessPlayers = CreateForce() +local gameOver = false + +playerIndex = 0 +while (true) do +if (not bj_meleeDefeated[playerIndex]) then +opponentIndex = 0 +while (true) do +if MeleePlayerIsOpponent(playerIndex, opponentIndex) then +return CreateForce() +end +opponentIndex = opponentIndex + 1 +if (opponentIndex == bj_MAX_PLAYERS) then break end +end +ForceAddPlayer(opponentlessPlayers, Player(playerIndex)) +gameOver = true +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +bj_meleeGameOver = gameOver +return opponentlessPlayers +end + +function MeleeCheckForLosersAndVictors() +local playerIndex +local indexPlayer +local defeatedPlayers = CreateForce() +local victoriousPlayers +local gameOver = false + +if (bj_meleeGameOver) then +return +end +if (GetIntegerGameState(GAME_STATE_DISCONNECTED) ~= 0) then +bj_meleeGameOver = true +return +end +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (not bj_meleeDefeated[playerIndex] and not bj_meleeVictoried[playerIndex]) then +if (MeleeGetAllyStructureCount(indexPlayer) <= 0) then +ForceAddPlayer(defeatedPlayers, Player(playerIndex)) +bj_meleeDefeated[playerIndex] = true +end +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +victoriousPlayers = MeleeCheckForVictors() +ForForce(defeatedPlayers, MeleeDoDefeatEnum) +ForForce(victoriousPlayers, MeleeDoVictoryEnum) +if (bj_meleeGameOver) then +MeleeRemoveObservers() +end +end + +function MeleeGetCrippledWarningMessage(whichPlayer) +local r = GetPlayerRace(whichPlayer) + +if (r == RACE_HUMAN) then +return GetLocalizedString("CRIPPLE_WARNING_HUMAN") +elseif (r == RACE_ORC) then +return GetLocalizedString("CRIPPLE_WARNING_ORC") +elseif (r == RACE_NIGHTELF) then +return GetLocalizedString("CRIPPLE_WARNING_NIGHTELF") +elseif (r == RACE_UNDEAD) then +return GetLocalizedString("CRIPPLE_WARNING_UNDEAD") +else +return "" +end +end + +function MeleeGetCrippledTimerMessage(whichPlayer) +local r = GetPlayerRace(whichPlayer) + +if (r == RACE_HUMAN) then +return GetLocalizedString("CRIPPLE_TIMER_HUMAN") +elseif (r == RACE_ORC) then +return GetLocalizedString("CRIPPLE_TIMER_ORC") +elseif (r == RACE_NIGHTELF) then +return GetLocalizedString("CRIPPLE_TIMER_NIGHTELF") +elseif (r == RACE_UNDEAD) then +return GetLocalizedString("CRIPPLE_TIMER_UNDEAD") +else +return "" +end +end + +function MeleeGetCrippledRevealedMessage(whichPlayer) +return GetLocalizedString("CRIPPLE_REVEALING_PREFIX") .. GetPlayerName(whichPlayer) .. GetLocalizedString("CRIPPLE_REVEALING_POSTFIX") +end + +function MeleeExposePlayer(whichPlayer, expose) +local playerIndex +local indexPlayer +local toExposeTo = CreateForce() + +CripplePlayer(whichPlayer, toExposeTo, false) +bj_playerIsExposed[GetPlayerId(whichPlayer)] = expose +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if (not PlayersAreCoAllied(whichPlayer, indexPlayer)) then +ForceAddPlayer(toExposeTo, indexPlayer) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +CripplePlayer(whichPlayer, toExposeTo, expose) +DestroyForce(toExposeTo) +end + +function MeleeExposeAllPlayers() +local playerIndex +local indexPlayer +local playerIndex2 +local indexPlayer2 +local toExposeTo = CreateForce() + +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +ForceClear(toExposeTo) +CripplePlayer(indexPlayer, toExposeTo, false) +playerIndex2 = 0 +while (true) do +indexPlayer2 = Player(playerIndex2) +if playerIndex ~= playerIndex2 then +if (not PlayersAreCoAllied(indexPlayer, indexPlayer2)) then +ForceAddPlayer(toExposeTo, indexPlayer2) +end +end +playerIndex2 = playerIndex2 + 1 +if (playerIndex2 == bj_MAX_PLAYERS) then break end +end +CripplePlayer(indexPlayer, toExposeTo, true) +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +DestroyForce(toExposeTo) +end + +function MeleeCrippledPlayerTimeout() +local expiredTimer = GetExpiredTimer() +local playerIndex +local exposedPlayer + +playerIndex = 0 +while (true) do +if (bj_crippledTimer[playerIndex] == expiredTimer) then +if (true) then break end +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +if (playerIndex == bj_MAX_PLAYERS) then +return +end +exposedPlayer = Player(playerIndex) +if (GetLocalPlayer() == exposedPlayer) then +TimerDialogDisplay(bj_crippledTimerWindows[playerIndex], false) +end +DisplayTimedTextToPlayer(GetLocalPlayer(), 0, 0, bj_MELEE_CRIPPLE_MSG_DURATION, MeleeGetCrippledRevealedMessage(exposedPlayer)) +MeleeExposePlayer(exposedPlayer, true) +end + +function MeleePlayerIsCrippled(whichPlayer) +local playerStructures = GetPlayerStructureCount(whichPlayer, true) +local playerKeyStructures = BlzGetPlayerTownHallCount(whichPlayer) + +return ((playerStructures > 0) and (playerKeyStructures <= 0)) +end + +function MeleeCheckForCrippledPlayers() +local playerIndex +local indexPlayer +local crippledPlayers = CreateForce() +local isNowCrippled +local indexRace + +if bj_finishSoonAllExposed then +return +end +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +isNowCrippled = MeleePlayerIsCrippled(indexPlayer) +if (not bj_playerIsCrippled[playerIndex] and isNowCrippled) then +bj_playerIsCrippled[playerIndex] = true +TimerStart(bj_crippledTimer[playerIndex], bj_MELEE_CRIPPLE_TIMEOUT, false, MeleeCrippledPlayerTimeout) +if (GetLocalPlayer() == indexPlayer) then +TimerDialogDisplay(bj_crippledTimerWindows[playerIndex], true) +DisplayTimedTextToPlayer(indexPlayer, 0, 0, bj_MELEE_CRIPPLE_MSG_DURATION, MeleeGetCrippledWarningMessage(indexPlayer)) +end +elseif (bj_playerIsCrippled[playerIndex] and not isNowCrippled) then +bj_playerIsCrippled[playerIndex] = false +PauseTimer(bj_crippledTimer[playerIndex]) +if (GetLocalPlayer() == indexPlayer) then +TimerDialogDisplay(bj_crippledTimerWindows[playerIndex], false) +if (MeleeGetAllyStructureCount(indexPlayer) > 0) then +if (bj_playerIsExposed[playerIndex]) then +DisplayTimedTextToPlayer(indexPlayer, 0, 0, bj_MELEE_CRIPPLE_MSG_DURATION, GetLocalizedString("CRIPPLE_UNREVEALED")) +else +DisplayTimedTextToPlayer(indexPlayer, 0, 0, bj_MELEE_CRIPPLE_MSG_DURATION, GetLocalizedString("CRIPPLE_UNCRIPPLED")) +end +end +end +MeleeExposePlayer(indexPlayer, false) +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +end + +function MeleeCheckLostUnit(lostUnit) +local lostUnitOwner = GetOwningPlayer(lostUnit) + +if (GetPlayerStructureCount(lostUnitOwner, true) <= 0) then +MeleeCheckForLosersAndVictors() +end +MeleeCheckForCrippledPlayers() +end + +function MeleeCheckAddedUnit(addedUnit) +local addedUnitOwner = GetOwningPlayer(addedUnit) + +if (bj_playerIsCrippled[GetPlayerId(addedUnitOwner)]) then +MeleeCheckForCrippledPlayers() +end +end + +function MeleeTriggerActionConstructCancel() +MeleeCheckLostUnit(GetCancelledStructure()) +end + +function MeleeTriggerActionUnitDeath() +if (IsUnitType(GetDyingUnit(), UNIT_TYPE_STRUCTURE)) then +MeleeCheckLostUnit(GetDyingUnit()) +end +end + +function MeleeTriggerActionUnitConstructionStart() +MeleeCheckAddedUnit(GetConstructingStructure()) +end + +function MeleeTriggerActionPlayerDefeated() +local thePlayer = GetTriggerPlayer() + +CachePlayerHeroData(thePlayer) +if (MeleeGetAllyCount(thePlayer) > 0) then +ShareEverythingWithTeam(thePlayer) +if (not bj_meleeDefeated[GetPlayerId(thePlayer)]) then +MeleeDoDefeat(thePlayer) +end +else +MakeUnitsPassiveForTeam(thePlayer) +if (not bj_meleeDefeated[GetPlayerId(thePlayer)]) then +MeleeDoDefeat(thePlayer) +end +end +MeleeCheckForLosersAndVictors() +end + +function MeleeTriggerActionPlayerLeft() +local thePlayer = GetTriggerPlayer() + +if (IsPlayerObserver(thePlayer)) then +RemovePlayerPreserveUnitsBJ(thePlayer, PLAYER_GAME_RESULT_NEUTRAL, false) +return +end +CachePlayerHeroData(thePlayer) +if (MeleeGetAllyCount(thePlayer) > 0) then +ShareEverythingWithTeam(thePlayer) +MeleeDoLeave(thePlayer) +else +MakeUnitsPassiveForTeam(thePlayer) +MeleeDoLeave(thePlayer) +end +MeleeCheckForLosersAndVictors() +end + +function MeleeTriggerActionAllianceChange() +MeleeCheckForLosersAndVictors() +MeleeCheckForCrippledPlayers() +end + +function MeleeTriggerTournamentFinishSoon() +local playerIndex +local indexPlayer +local timeRemaining = GetTournamentFinishSoonTimeRemaining() + +if not bj_finishSoonAllExposed then +bj_finishSoonAllExposed = true +playerIndex = 0 +while (true) do +indexPlayer = Player(playerIndex) +if bj_playerIsCrippled[playerIndex] then +bj_playerIsCrippled[playerIndex] = false +PauseTimer(bj_crippledTimer[playerIndex]) +if (GetLocalPlayer() == indexPlayer) then +TimerDialogDisplay(bj_crippledTimerWindows[playerIndex], false) +end +end +playerIndex = playerIndex + 1 +if (playerIndex == bj_MAX_PLAYERS) then break end +end +MeleeExposeAllPlayers() +end +TimerDialogDisplay(bj_finishSoonTimerDialog, true) +TimerDialogSetRealTimeRemaining(bj_finishSoonTimerDialog, timeRemaining) +end + +function MeleeWasUserPlayer(whichPlayer) +local slotState + +if (GetPlayerController(whichPlayer) ~= MAP_CONTROL_USER) then +return false +end +slotState = GetPlayerSlotState(whichPlayer) +return (slotState == PLAYER_SLOT_STATE_PLAYING or slotState == PLAYER_SLOT_STATE_LEFT) +end + +function MeleeTournamentFinishNowRuleA(multiplier) +local playerScore = __jarray(0) +local teamScore = __jarray(0) +local teamForce = {} +local teamCount +local index +local indexPlayer +local index2 +local indexPlayer2 +local bestTeam +local bestScore +local draw + +index = 0 +while (true) do +indexPlayer = Player(index) +if MeleeWasUserPlayer(indexPlayer) then +playerScore[index] = GetTournamentScore(indexPlayer) +if playerScore[index] <= 0 then +playerScore[index] = 1 +end +else +playerScore[index] = 0 +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +teamCount = 0 +index = 0 +while (true) do +if playerScore[index] ~= 0 then +indexPlayer = Player(index) +teamScore[teamCount] = 0 +teamForce[teamCount] = CreateForce() +index2 = index +while (true) do +if playerScore[index2] ~= 0 then +indexPlayer2 = Player(index2) +if PlayersAreCoAllied(indexPlayer, indexPlayer2) then +teamScore[teamCount] = teamScore[teamCount] + playerScore[index2] +ForceAddPlayer(teamForce[teamCount], indexPlayer2) +playerScore[index2] = 0 +end +end +index2 = index2 + 1 +if (index2 == bj_MAX_PLAYERS) then break end +end +teamCount = teamCount + 1 +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +bj_meleeGameOver = true +if teamCount ~= 0 then +bestTeam = -1 +bestScore = -1 +index = 0 +while (true) do +if teamScore[index] > bestScore then +bestTeam = index +bestScore = teamScore[index] +end +index = index + 1 +if (index == teamCount) then break end +end +draw = false +index = 0 +while (true) do +if index ~= bestTeam then +if bestScore < (multiplier * teamScore[index]) then +draw = true +end +end +index = index + 1 +if (index == teamCount) then break end +end +if draw then +index = 0 +while (true) do +ForForce(teamForce[index], MeleeDoDrawEnum) +index = index + 1 +if (index == teamCount) then break end +end +else +index = 0 +while (true) do +if index ~= bestTeam then +ForForce(teamForce[index], MeleeDoDefeatEnum) +end +index = index + 1 +if (index == teamCount) then break end +end +ForForce(teamForce[bestTeam], MeleeDoVictoryEnum) +end +end +end + +function MeleeTriggerTournamentFinishNow() +local rule = GetTournamentFinishNowRule() + +if bj_meleeGameOver then +return +end +if (rule == 1) then +MeleeTournamentFinishNowRuleA(1) +else +MeleeTournamentFinishNowRuleA(3) +end +MeleeRemoveObservers() +end + +function MeleeInitVictoryDefeat() +local trig +local index +local indexPlayer + +bj_finishSoonTimerDialog = CreateTimerDialog(nil) +trig = CreateTrigger() +TriggerRegisterGameEvent(trig, EVENT_GAME_TOURNAMENT_FINISH_SOON) +TriggerAddAction(trig, MeleeTriggerTournamentFinishSoon) +trig = CreateTrigger() +TriggerRegisterGameEvent(trig, EVENT_GAME_TOURNAMENT_FINISH_NOW) +TriggerAddAction(trig, MeleeTriggerTournamentFinishNow) +index = 0 +while (true) do +indexPlayer = Player(index) +if (GetPlayerSlotState(indexPlayer) == PLAYER_SLOT_STATE_PLAYING) then +bj_meleeDefeated[index] = false +bj_meleeVictoried[index] = false +bj_playerIsCrippled[index] = false +bj_playerIsExposed[index] = false +bj_crippledTimer[index] = CreateTimer() +bj_crippledTimerWindows[index] = CreateTimerDialog(bj_crippledTimer[index]) +TimerDialogSetTitle(bj_crippledTimerWindows[index], MeleeGetCrippledTimerMessage(indexPlayer)) +trig = CreateTrigger() +TriggerRegisterPlayerUnitEvent(trig, indexPlayer, EVENT_PLAYER_UNIT_CONSTRUCT_CANCEL, nil) +TriggerAddAction(trig, MeleeTriggerActionConstructCancel) +trig = CreateTrigger() +TriggerRegisterPlayerUnitEvent(trig, indexPlayer, EVENT_PLAYER_UNIT_DEATH, nil) +TriggerAddAction(trig, MeleeTriggerActionUnitDeath) +trig = CreateTrigger() +TriggerRegisterPlayerUnitEvent(trig, indexPlayer, EVENT_PLAYER_UNIT_CONSTRUCT_START, nil) +TriggerAddAction(trig, MeleeTriggerActionUnitConstructionStart) +trig = CreateTrigger() +TriggerRegisterPlayerEvent(trig, indexPlayer, EVENT_PLAYER_DEFEAT) +TriggerAddAction(trig, MeleeTriggerActionPlayerDefeated) +trig = CreateTrigger() +TriggerRegisterPlayerEvent(trig, indexPlayer, EVENT_PLAYER_LEAVE) +TriggerAddAction(trig, MeleeTriggerActionPlayerLeft) +trig = CreateTrigger() +TriggerRegisterPlayerAllianceChange(trig, indexPlayer, ALLIANCE_PASSIVE) +TriggerRegisterPlayerStateEvent(trig, indexPlayer, PLAYER_STATE_ALLIED_VICTORY, EQUAL, 1) +TriggerAddAction(trig, MeleeTriggerActionAllianceChange) +else +bj_meleeDefeated[index] = true +bj_meleeVictoried[index] = false +if (IsPlayerObserver(indexPlayer)) then +trig = CreateTrigger() +TriggerRegisterPlayerEvent(trig, indexPlayer, EVENT_PLAYER_LEAVE) +TriggerAddAction(trig, MeleeTriggerActionPlayerLeft) +end +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +TimerStart(CreateTimer(), 2.0, false, MeleeTriggerActionAllianceChange) +end + +function CheckInitPlayerSlotAvailability() +local index + +if (not bj_slotControlReady) then +index = 0 +while (true) do +bj_slotControlUsed[index] = false +bj_slotControl[index] = MAP_CONTROL_USER +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +bj_slotControlReady = true +end +end + +function SetPlayerSlotAvailable(whichPlayer, control) +local playerIndex = GetPlayerId(whichPlayer) + +CheckInitPlayerSlotAvailability() +bj_slotControlUsed[playerIndex] = true +bj_slotControl[playerIndex] = control +end + +function TeamInitPlayerSlots(teamCount) +local index +local indexPlayer +local team + +SetTeams(teamCount) +CheckInitPlayerSlotAvailability() +index = 0 +team = 0 +while (true) do +if (bj_slotControlUsed[index]) then +indexPlayer = Player(index) +SetPlayerTeam(indexPlayer, team) +team = team + 1 +if (team >= teamCount) then +team = 0 +end +end +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function MeleeInitPlayerSlots() +TeamInitPlayerSlots(bj_MAX_PLAYERS) +end + +function FFAInitPlayerSlots() +TeamInitPlayerSlots(bj_MAX_PLAYERS) +end + +function OneOnOneInitPlayerSlots() +SetTeams(2) +SetPlayers(2) +TeamInitPlayerSlots(2) +end + +function InitGenericPlayerSlots() +local gType = GetGameTypeSelected() + +if (gType == GAME_TYPE_MELEE) then +MeleeInitPlayerSlots() +elseif (gType == GAME_TYPE_FFA) then +FFAInitPlayerSlots() +elseif (gType == GAME_TYPE_USE_MAP_SETTINGS) then +elseif (gType == GAME_TYPE_ONE_ON_ONE) then +OneOnOneInitPlayerSlots() +elseif (gType == GAME_TYPE_TWO_TEAM_PLAY) then +TeamInitPlayerSlots(2) +elseif (gType == GAME_TYPE_THREE_TEAM_PLAY) then +TeamInitPlayerSlots(3) +elseif (gType == GAME_TYPE_FOUR_TEAM_PLAY) then +TeamInitPlayerSlots(4) +else +end +end + +function SetDNCSoundsDawn() +if bj_useDawnDuskSounds then +StartSound(bj_dawnSound) +end +end + +function SetDNCSoundsDusk() +if bj_useDawnDuskSounds then +StartSound(bj_duskSound) +end +end + +function SetDNCSoundsDay() +local ToD = GetTimeOfDay() + +if ((ToD >= bj_TOD_DAWN and ToD < bj_TOD_DUSK) and not bj_dncIsDaytime) then +bj_dncIsDaytime = true +StopSound(bj_nightAmbientSound, false, true) +StartSound(bj_dayAmbientSound) +end +end + +function SetDNCSoundsNight() +local ToD = GetTimeOfDay() + +if ((ToD < bj_TOD_DAWN or ToD >= bj_TOD_DUSK) and bj_dncIsDaytime) then +bj_dncIsDaytime = false +StopSound(bj_dayAmbientSound, false, true) +StartSound(bj_nightAmbientSound) +end +end + +function InitDNCSounds() +bj_dawnSound = CreateSoundFromLabel("RoosterSound", false, false, false, 10000, 10000) +bj_duskSound = CreateSoundFromLabel("WolfSound", false, false, false, 10000, 10000) +bj_dncSoundsDawn = CreateTrigger() +TriggerRegisterGameStateEvent(bj_dncSoundsDawn, GAME_STATE_TIME_OF_DAY, EQUAL, bj_TOD_DAWN) +TriggerAddAction(bj_dncSoundsDawn, SetDNCSoundsDawn) +bj_dncSoundsDusk = CreateTrigger() +TriggerRegisterGameStateEvent(bj_dncSoundsDusk, GAME_STATE_TIME_OF_DAY, EQUAL, bj_TOD_DUSK) +TriggerAddAction(bj_dncSoundsDusk, SetDNCSoundsDusk) +bj_dncSoundsDay = CreateTrigger() +TriggerRegisterGameStateEvent(bj_dncSoundsDay, GAME_STATE_TIME_OF_DAY, GREATER_THAN_OR_EQUAL, bj_TOD_DAWN) +TriggerRegisterGameStateEvent(bj_dncSoundsDay, GAME_STATE_TIME_OF_DAY, LESS_THAN, bj_TOD_DUSK) +TriggerAddAction(bj_dncSoundsDay, SetDNCSoundsDay) +bj_dncSoundsNight = CreateTrigger() +TriggerRegisterGameStateEvent(bj_dncSoundsNight, GAME_STATE_TIME_OF_DAY, LESS_THAN, bj_TOD_DAWN) +TriggerRegisterGameStateEvent(bj_dncSoundsNight, GAME_STATE_TIME_OF_DAY, GREATER_THAN_OR_EQUAL, bj_TOD_DUSK) +TriggerAddAction(bj_dncSoundsNight, SetDNCSoundsNight) +end + +function InitBlizzardGlobals() +local index +local userControlledPlayers +local v + +filterIssueHauntOrderAtLocBJ = Filter(IssueHauntOrderAtLocBJFilter) +filterEnumDestructablesInCircleBJ = Filter(EnumDestructablesInCircleBJFilter) +filterGetUnitsInRectOfPlayer = Filter(GetUnitsInRectOfPlayerFilter) +filterGetUnitsOfTypeIdAll = Filter(GetUnitsOfTypeIdAllFilter) +filterGetUnitsOfPlayerAndTypeId = Filter(GetUnitsOfPlayerAndTypeIdFilter) +filterMeleeTrainedUnitIsHeroBJ = Filter(MeleeTrainedUnitIsHeroBJFilter) +filterLivingPlayerUnitsOfTypeId = Filter(LivingPlayerUnitsOfTypeIdFilter) +index = 0 +while (true) do +if (index == bj_MAX_PLAYER_SLOTS) then break end +bj_FORCE_PLAYER[index] = CreateForce() +ForceAddPlayer(bj_FORCE_PLAYER[index], Player(index)) +index = index + 1 +end +bj_FORCE_ALL_PLAYERS = CreateForce() +ForceEnumPlayers(bj_FORCE_ALL_PLAYERS, nil) +bj_cineModePriorSpeed = GetGameSpeed() +bj_cineModePriorFogSetting = IsFogEnabled() +bj_cineModePriorMaskSetting = IsFogMaskEnabled() +index = 0 +while (true) do +if (index >= bj_MAX_QUEUED_TRIGGERS) then break end +bj_queuedExecTriggers[index] = nil +bj_queuedExecUseConds[index] = false +index = index + 1 +end +bj_isSinglePlayer = false +userControlledPlayers = 0 +index = 0 +while (true) do +if (index >= bj_MAX_PLAYERS) then break end +if (GetPlayerController(Player(index)) == MAP_CONTROL_USER and GetPlayerSlotState(Player(index)) == PLAYER_SLOT_STATE_PLAYING) then +userControlledPlayers = userControlledPlayers + 1 +end +index = index + 1 +end +bj_isSinglePlayer = (userControlledPlayers == 1) +bj_rescueSound = CreateSoundFromLabel("Rescue", false, false, false, 10000, 10000) +bj_questDiscoveredSound = CreateSoundFromLabel("QuestNew", false, false, false, 10000, 10000) +bj_questUpdatedSound = CreateSoundFromLabel("QuestUpdate", false, false, false, 10000, 10000) +bj_questCompletedSound = CreateSoundFromLabel("QuestCompleted", false, false, false, 10000, 10000) +bj_questFailedSound = CreateSoundFromLabel("QuestFailed", false, false, false, 10000, 10000) +bj_questHintSound = CreateSoundFromLabel("Hint", false, false, false, 10000, 10000) +bj_questSecretSound = CreateSoundFromLabel("SecretFound", false, false, false, 10000, 10000) +bj_questItemAcquiredSound = CreateSoundFromLabel("ItemReward", false, false, false, 10000, 10000) +bj_questWarningSound = CreateSoundFromLabel("Warning", false, false, false, 10000, 10000) +bj_victoryDialogSound = CreateSoundFromLabel("QuestCompleted", false, false, false, 10000, 10000) +bj_defeatDialogSound = CreateSoundFromLabel("QuestFailed", false, false, false, 10000, 10000) +DelayedSuspendDecayCreate() +v = VersionGet() +if (v == VERSION_REIGN_OF_CHAOS) then +bj_MELEE_MAX_TWINKED_HEROES = bj_MELEE_MAX_TWINKED_HEROES_V0 +else +bj_MELEE_MAX_TWINKED_HEROES = bj_MELEE_MAX_TWINKED_HEROES_V1 +end +end + +function InitQueuedTriggers() +bj_queuedExecTimeout = CreateTrigger() +TriggerRegisterTimerExpireEvent(bj_queuedExecTimeout, bj_queuedExecTimeoutTimer) +TriggerAddAction(bj_queuedExecTimeout, QueuedTriggerDoneBJ) +end + +function InitMapRects() +bj_mapInitialPlayableArea = Rect(GetCameraBoundMinX() - GetCameraMargin(CAMERA_MARGIN_LEFT), GetCameraBoundMinY() - GetCameraMargin(CAMERA_MARGIN_BOTTOM), GetCameraBoundMaxX() + GetCameraMargin(CAMERA_MARGIN_RIGHT), GetCameraBoundMaxY() + GetCameraMargin(CAMERA_MARGIN_TOP)) +bj_mapInitialCameraBounds = GetCurrentCameraBoundsMapRectBJ() +end + +function InitSummonableCaps() +local index + +index = 0 +while (true) do +if (not GetPlayerTechResearched(Player(index), FourCC("Rhrt"), true)) then +SetPlayerTechMaxAllowed(Player(index), FourCC("hrtt"), 0) +end +if (not GetPlayerTechResearched(Player(index), FourCC("Robk"), true)) then +SetPlayerTechMaxAllowed(Player(index), FourCC("otbk"), 0) +end +SetPlayerTechMaxAllowed(Player(index), FourCC("uske"), bj_MAX_SKELETONS) +index = index + 1 +if (index == bj_MAX_PLAYERS) then break end +end +end + +function UpdateStockAvailability(whichItem) +local iType = GetItemType(whichItem) +local iLevel = GetItemLevel(whichItem) + +if (iType == ITEM_TYPE_PERMANENT) then +bj_stockAllowedPermanent[iLevel] = true +elseif (iType == ITEM_TYPE_CHARGED) then +bj_stockAllowedCharged[iLevel] = true +elseif (iType == ITEM_TYPE_ARTIFACT) then +bj_stockAllowedArtifact[iLevel] = true +else +end +end + +function UpdateEachStockBuildingEnum() +local iteration = 0 +local pickedItemId + +while (true) do +pickedItemId = ChooseRandomItemEx(bj_stockPickedItemType, bj_stockPickedItemLevel) +if (IsItemIdSellable(pickedItemId)) then break end +iteration = iteration + 1 +if (iteration > bj_STOCK_MAX_ITERATIONS) then +return +end +end +AddItemToStock(GetEnumUnit(), pickedItemId, 1, 1) +end + +function UpdateEachStockBuilding(iType, iLevel) +local g + +bj_stockPickedItemType = iType +bj_stockPickedItemLevel = iLevel +g = CreateGroup() +GroupEnumUnitsOfType(g, "marketplace", nil) +ForGroup(g, UpdateEachStockBuildingEnum) +DestroyGroup(g) +end + +function PerformStockUpdates() +local pickedItemId +local pickedItemType +local pickedItemLevel = 0 +local allowedCombinations = 0 +local iLevel + +iLevel = 1 +while (true) do +if (bj_stockAllowedPermanent[iLevel]) then +allowedCombinations = allowedCombinations + 1 +if (GetRandomInt(1, allowedCombinations) == 1) then +pickedItemType = ITEM_TYPE_PERMANENT +pickedItemLevel = iLevel +end +end +if (bj_stockAllowedCharged[iLevel]) then +allowedCombinations = allowedCombinations + 1 +if (GetRandomInt(1, allowedCombinations) == 1) then +pickedItemType = ITEM_TYPE_CHARGED +pickedItemLevel = iLevel +end +end +if (bj_stockAllowedArtifact[iLevel]) then +allowedCombinations = allowedCombinations + 1 +if (GetRandomInt(1, allowedCombinations) == 1) then +pickedItemType = ITEM_TYPE_ARTIFACT +pickedItemLevel = iLevel +end +end +iLevel = iLevel + 1 +if (iLevel > bj_MAX_ITEM_LEVEL) then break end +end +if (allowedCombinations == 0) then +return +end +UpdateEachStockBuilding(pickedItemType, pickedItemLevel) +end + +function StartStockUpdates() +PerformStockUpdates() +TimerStart(bj_stockUpdateTimer, bj_STOCK_RESTOCK_INTERVAL, true, PerformStockUpdates) +end + +function RemovePurchasedItem() +RemoveItemFromStock(GetSellingUnit(), GetItemTypeId(GetSoldItem())) +end + +function InitNeutralBuildings() +local iLevel + +iLevel = 0 +while (true) do +bj_stockAllowedPermanent[iLevel] = false +bj_stockAllowedCharged[iLevel] = false +bj_stockAllowedArtifact[iLevel] = false +iLevel = iLevel + 1 +if (iLevel > bj_MAX_ITEM_LEVEL) then break end +end +SetAllItemTypeSlots(bj_MAX_STOCK_ITEM_SLOTS) +SetAllUnitTypeSlots(bj_MAX_STOCK_UNIT_SLOTS) +bj_stockUpdateTimer = CreateTimer() +TimerStart(bj_stockUpdateTimer, bj_STOCK_RESTOCK_INITIAL_DELAY, false, StartStockUpdates) +bj_stockItemPurchased = CreateTrigger() +TriggerRegisterPlayerUnitEvent(bj_stockItemPurchased, Player(PLAYER_NEUTRAL_PASSIVE), EVENT_PLAYER_UNIT_SELL_ITEM, nil) +TriggerAddAction(bj_stockItemPurchased, RemovePurchasedItem) +end + +function MarkGameStarted() +bj_gameStarted = true +DestroyTimer(bj_gameStartedTimer) +end + +function DetectGameStarted() +bj_gameStartedTimer = CreateTimer() +TimerStart(bj_gameStartedTimer, bj_GAME_STARTED_THRESHOLD, false, MarkGameStarted) +end + +function InitBlizzard() +ConfigureNeutralVictim() +InitBlizzardGlobals() +InitQueuedTriggers() +InitRescuableBehaviorBJ() +InitDNCSounds() +InitMapRects() +InitSummonableCaps() +InitNeutralBuildings() +DetectGameStarted() +end + +function RandomDistReset() +bj_randDistCount = 0 +end + +function RandomDistAddItem(inID, inChance) +bj_randDistID[bj_randDistCount] = inID +bj_randDistChance[bj_randDistCount] = inChance +bj_randDistCount = bj_randDistCount + 1 +end + +function RandomDistChoose() +local sum = 0 +local chance = 0 +local index +local foundID = -1 +local done + +if (bj_randDistCount == 0) then +return -1 +end +index = 0 +while (true) do +sum = sum + bj_randDistChance[index] +index = index + 1 +if (index == bj_randDistCount) then break end +end +chance = GetRandomInt(1, sum) +index = 0 +sum = 0 +done = false +while (true) do +sum = sum + bj_randDistChance[index] +if (chance <= sum) then +foundID = bj_randDistID[index] +done = true +end +index = index + 1 +if (index == bj_randDistCount) then +done = true +end +if (done == true) then break end +end +return foundID +end + +function UnitDropItem(inUnit, inItemID) +local x +local y +local radius = 32.0 +local unitX +local unitY +local droppedItem + +if (inItemID == -1) then +return nil +end +unitX = GetUnitX(inUnit) +unitY = GetUnitY(inUnit) +x = GetRandomReal(unitX - radius, unitX + radius) +y = GetRandomReal(unitY - radius, unitY + radius) +droppedItem = CreateItem(inItemID, x, y) +SetItemDropID(droppedItem, GetUnitTypeId(inUnit)) +UpdateStockAvailability(droppedItem) +return droppedItem +end + +function WidgetDropItem(inWidget, inItemID) +local x +local y +local radius = 32.0 +local widgetX +local widgetY + +if (inItemID == -1) then +return nil +end +widgetX = GetWidgetX(inWidget) +widgetY = GetWidgetY(inWidget) +x = GetRandomReal(widgetX - radius, widgetX + radius) +y = GetRandomReal(widgetY - radius, widgetY + radius) +return CreateItem(inItemID, x, y) +end + +function BlzIsLastInstanceObjectFunctionSuccessful() +return bj_lastInstObjFuncSuccessful +end + +function BlzSetAbilityBooleanFieldBJ(whichAbility, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityBooleanField(whichAbility, whichField, value) +end + +function BlzSetAbilityIntegerFieldBJ(whichAbility, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityIntegerField(whichAbility, whichField, value) +end + +function BlzSetAbilityRealFieldBJ(whichAbility, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityRealField(whichAbility, whichField, value) +end + +function BlzSetAbilityStringFieldBJ(whichAbility, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityStringField(whichAbility, whichField, value) +end + +function BlzSetAbilityBooleanLevelFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityBooleanLevelField(whichAbility, whichField, level, value) +end + +function BlzSetAbilityIntegerLevelFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityIntegerLevelField(whichAbility, whichField, level, value) +end + +function BlzSetAbilityRealLevelFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityRealLevelField(whichAbility, whichField, level, value) +end + +function BlzSetAbilityStringLevelFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityStringLevelField(whichAbility, whichField, level, value) +end + +function BlzSetAbilityBooleanLevelArrayFieldBJ(whichAbility, whichField, level, index, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityBooleanLevelArrayField(whichAbility, whichField, level, index, value) +end + +function BlzSetAbilityIntegerLevelArrayFieldBJ(whichAbility, whichField, level, index, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityIntegerLevelArrayField(whichAbility, whichField, level, index, value) +end + +function BlzSetAbilityRealLevelArrayFieldBJ(whichAbility, whichField, level, index, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityRealLevelArrayField(whichAbility, whichField, level, index, value) +end + +function BlzSetAbilityStringLevelArrayFieldBJ(whichAbility, whichField, level, index, value) +bj_lastInstObjFuncSuccessful = BlzSetAbilityStringLevelArrayField(whichAbility, whichField, level, index, value) +end + +function BlzAddAbilityBooleanLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzAddAbilityBooleanLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzAddAbilityIntegerLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzAddAbilityIntegerLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzAddAbilityRealLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzAddAbilityRealLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzAddAbilityStringLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzAddAbilityStringLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzRemoveAbilityBooleanLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzRemoveAbilityBooleanLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzRemoveAbilityIntegerLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzRemoveAbilityIntegerLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzRemoveAbilityRealLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzRemoveAbilityRealLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzRemoveAbilityStringLevelArrayFieldBJ(whichAbility, whichField, level, value) +bj_lastInstObjFuncSuccessful = BlzRemoveAbilityStringLevelArrayField(whichAbility, whichField, level, value) +end + +function BlzItemAddAbilityBJ(whichItem, abilCode) +bj_lastInstObjFuncSuccessful = BlzItemAddAbility(whichItem, abilCode) +end + +function BlzItemRemoveAbilityBJ(whichItem, abilCode) +bj_lastInstObjFuncSuccessful = BlzItemRemoveAbility(whichItem, abilCode) +end + +function BlzSetItemBooleanFieldBJ(whichItem, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetItemBooleanField(whichItem, whichField, value) +end + +function BlzSetItemIntegerFieldBJ(whichItem, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetItemIntegerField(whichItem, whichField, value) +end + +function BlzSetItemRealFieldBJ(whichItem, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetItemRealField(whichItem, whichField, value) +end + +function BlzSetItemStringFieldBJ(whichItem, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetItemStringField(whichItem, whichField, value) +end + +function BlzSetUnitBooleanFieldBJ(whichUnit, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitBooleanField(whichUnit, whichField, value) +end + +function BlzSetUnitIntegerFieldBJ(whichUnit, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitIntegerField(whichUnit, whichField, value) +end + +function BlzSetUnitRealFieldBJ(whichUnit, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitRealField(whichUnit, whichField, value) +end + +function BlzSetUnitStringFieldBJ(whichUnit, whichField, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitStringField(whichUnit, whichField, value) +end + +function BlzSetUnitWeaponBooleanFieldBJ(whichUnit, whichField, index, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitWeaponBooleanField(whichUnit, whichField, index, value) +end + +function BlzSetUnitWeaponIntegerFieldBJ(whichUnit, whichField, index, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitWeaponIntegerField(whichUnit, whichField, index, value) +end + +function BlzSetUnitWeaponRealFieldBJ(whichUnit, whichField, index, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitWeaponRealField(whichUnit, whichField, index, value) +end + +function BlzSetUnitWeaponStringFieldBJ(whichUnit, whichField, index, value) +bj_lastInstObjFuncSuccessful = BlzSetUnitWeaponStringField(whichUnit, whichField, index, value) +end + diff --git a/de.peeeq.wurstscript/src/test/resources/luaruntime/common.j.lua b/de.peeeq.wurstscript/src/test/resources/luaruntime/common.j.lua new file mode 100644 index 000000000..952837b85 --- /dev/null +++ b/de.peeeq.wurstscript/src/test/resources/luaruntime/common.j.lua @@ -0,0 +1,1820 @@ +TypeDefine('agent', 'handle') +TypeDefine('event', 'agent') +TypeDefine('player', 'agent') +TypeDefine('widget', 'agent') +TypeDefine('unit', 'widget') +TypeDefine('destructable', 'widget') +TypeDefine('item', 'widget') +TypeDefine('ability', 'agent') +TypeDefine('buff', 'ability') +TypeDefine('force', 'agent') +TypeDefine('group', 'agent') +TypeDefine('trigger', 'agent') +TypeDefine('triggercondition', 'agent') +TypeDefine('triggeraction', 'handle') +TypeDefine('timer', 'agent') +TypeDefine('location', 'agent') +TypeDefine('region', 'agent') +TypeDefine('rect', 'agent') +TypeDefine('boolexpr', 'agent') +TypeDefine('sound', 'agent') +TypeDefine('conditionfunc', 'boolexpr') +TypeDefine('filterfunc', 'boolexpr') +TypeDefine('unitpool', 'handle') +TypeDefine('itempool', 'handle') +TypeDefine('race', 'handle') +TypeDefine('alliancetype', 'handle') +TypeDefine('racepreference', 'handle') +TypeDefine('gamestate', 'handle') +TypeDefine('igamestate', 'gamestate') +TypeDefine('fgamestate', 'gamestate') +TypeDefine('playerstate', 'handle') +TypeDefine('playerscore', 'handle') +TypeDefine('playergameresult', 'handle') +TypeDefine('unitstate', 'handle') +TypeDefine('aidifficulty', 'handle') +TypeDefine('eventid', 'handle') +TypeDefine('gameevent', 'eventid') +TypeDefine('playerevent', 'eventid') +TypeDefine('playerunitevent', 'eventid') +TypeDefine('unitevent', 'eventid') +TypeDefine('limitop', 'eventid') +TypeDefine('widgetevent', 'eventid') +TypeDefine('dialogevent', 'eventid') +TypeDefine('unittype', 'handle') +TypeDefine('gamespeed', 'handle') +TypeDefine('gamedifficulty', 'handle') +TypeDefine('gametype', 'handle') +TypeDefine('mapflag', 'handle') +TypeDefine('mapvisibility', 'handle') +TypeDefine('mapsetting', 'handle') +TypeDefine('mapdensity', 'handle') +TypeDefine('mapcontrol', 'handle') +TypeDefine('minimapicon', 'handle') +TypeDefine('playerslotstate', 'handle') +TypeDefine('volumegroup', 'handle') +TypeDefine('camerafield', 'handle') +TypeDefine('camerasetup', 'handle') +TypeDefine('playercolor', 'handle') +TypeDefine('placement', 'handle') +TypeDefine('startlocprio', 'handle') +TypeDefine('raritycontrol', 'handle') +TypeDefine('blendmode', 'handle') +TypeDefine('texmapflags', 'handle') +TypeDefine('effect', 'agent') +TypeDefine('effecttype', 'handle') +TypeDefine('weathereffect', 'handle') +TypeDefine('terraindeformation', 'handle') +TypeDefine('fogstate', 'handle') +TypeDefine('fogmodifier', 'agent') +TypeDefine('dialog', 'agent') +TypeDefine('button', 'agent') +TypeDefine('quest', 'agent') +TypeDefine('questitem', 'agent') +TypeDefine('defeatcondition', 'agent') +TypeDefine('timerdialog', 'agent') +TypeDefine('leaderboard', 'agent') +TypeDefine('multiboard', 'agent') +TypeDefine('multiboarditem', 'agent') +TypeDefine('trackable', 'agent') +TypeDefine('gamecache', 'agent') +TypeDefine('version', 'handle') +TypeDefine('itemtype', 'handle') +TypeDefine('texttag', 'handle') +TypeDefine('attacktype', 'handle') +TypeDefine('damagetype', 'handle') +TypeDefine('weapontype', 'handle') +TypeDefine('soundtype', 'handle') +TypeDefine('lightning', 'handle') +TypeDefine('pathingtype', 'handle') +TypeDefine('mousebuttontype', 'handle') +TypeDefine('animtype', 'handle') +TypeDefine('subanimtype', 'handle') +TypeDefine('image', 'handle') +TypeDefine('ubersplat', 'handle') +TypeDefine('hashtable', 'agent') +TypeDefine('framehandle', 'handle') +TypeDefine('originframetype', 'handle') +TypeDefine('framepointtype', 'handle') +TypeDefine('textaligntype', 'handle') +TypeDefine('frameeventtype', 'handle') +TypeDefine('oskeytype', 'handle') +TypeDefine('abilityintegerfield', 'handle') +TypeDefine('abilityrealfield', 'handle') +TypeDefine('abilitybooleanfield', 'handle') +TypeDefine('abilitystringfield', 'handle') +TypeDefine('abilityintegerlevelfield', 'handle') +TypeDefine('abilityreallevelfield', 'handle') +TypeDefine('abilitybooleanlevelfield', 'handle') +TypeDefine('abilitystringlevelfield', 'handle') +TypeDefine('abilityintegerlevelarrayfield', 'handle') +TypeDefine('abilityreallevelarrayfield', 'handle') +TypeDefine('abilitybooleanlevelarrayfield', 'handle') +TypeDefine('abilitystringlevelarrayfield', 'handle') +TypeDefine('unitintegerfield', 'handle') +TypeDefine('unitrealfield', 'handle') +TypeDefine('unitbooleanfield', 'handle') +TypeDefine('unitstringfield', 'handle') +TypeDefine('unitweaponintegerfield', 'handle') +TypeDefine('unitweaponrealfield', 'handle') +TypeDefine('unitweaponbooleanfield', 'handle') +TypeDefine('unitweaponstringfield', 'handle') +TypeDefine('itemintegerfield', 'handle') +TypeDefine('itemrealfield', 'handle') +TypeDefine('itembooleanfield', 'handle') +TypeDefine('itemstringfield', 'handle') +TypeDefine('movetype', 'handle') +TypeDefine('targetflag', 'handle') +TypeDefine('armortype', 'handle') +TypeDefine('heroattribute', 'handle') +TypeDefine('defensetype', 'handle') +TypeDefine('regentype', 'handle') +TypeDefine('unitcategory', 'handle') +TypeDefine('pathingflag', 'handle') +TypeDefine('commandbuttoneffect', 'handle') +FALSE = false +TRUE = true +JASS_MAX_ARRAY_SIZE = 32768 +PLAYER_NEUTRAL_PASSIVE = GetPlayerNeutralPassive() +PLAYER_NEUTRAL_AGGRESSIVE = GetPlayerNeutralAggressive() +PLAYER_COLOR_RED = ConvertPlayerColor(0) +PLAYER_COLOR_BLUE = ConvertPlayerColor(1) +PLAYER_COLOR_CYAN = ConvertPlayerColor(2) +PLAYER_COLOR_PURPLE = ConvertPlayerColor(3) +PLAYER_COLOR_YELLOW = ConvertPlayerColor(4) +PLAYER_COLOR_ORANGE = ConvertPlayerColor(5) +PLAYER_COLOR_GREEN = ConvertPlayerColor(6) +PLAYER_COLOR_PINK = ConvertPlayerColor(7) +PLAYER_COLOR_LIGHT_GRAY = ConvertPlayerColor(8) +PLAYER_COLOR_LIGHT_BLUE = ConvertPlayerColor(9) +PLAYER_COLOR_AQUA = ConvertPlayerColor(10) +PLAYER_COLOR_BROWN = ConvertPlayerColor(11) +PLAYER_COLOR_MAROON = ConvertPlayerColor(12) +PLAYER_COLOR_NAVY = ConvertPlayerColor(13) +PLAYER_COLOR_TURQUOISE = ConvertPlayerColor(14) +PLAYER_COLOR_VIOLET = ConvertPlayerColor(15) +PLAYER_COLOR_WHEAT = ConvertPlayerColor(16) +PLAYER_COLOR_PEACH = ConvertPlayerColor(17) +PLAYER_COLOR_MINT = ConvertPlayerColor(18) +PLAYER_COLOR_LAVENDER = ConvertPlayerColor(19) +PLAYER_COLOR_COAL = ConvertPlayerColor(20) +PLAYER_COLOR_SNOW = ConvertPlayerColor(21) +PLAYER_COLOR_EMERALD = ConvertPlayerColor(22) +PLAYER_COLOR_PEANUT = ConvertPlayerColor(23) +RACE_HUMAN = ConvertRace(1) +RACE_ORC = ConvertRace(2) +RACE_UNDEAD = ConvertRace(3) +RACE_NIGHTELF = ConvertRace(4) +RACE_DEMON = ConvertRace(5) +RACE_OTHER = ConvertRace(7) +PLAYER_GAME_RESULT_VICTORY = ConvertPlayerGameResult(0) +PLAYER_GAME_RESULT_DEFEAT = ConvertPlayerGameResult(1) +PLAYER_GAME_RESULT_TIE = ConvertPlayerGameResult(2) +PLAYER_GAME_RESULT_NEUTRAL = ConvertPlayerGameResult(3) +ALLIANCE_PASSIVE = ConvertAllianceType(0) +ALLIANCE_HELP_REQUEST = ConvertAllianceType(1) +ALLIANCE_HELP_RESPONSE = ConvertAllianceType(2) +ALLIANCE_SHARED_XP = ConvertAllianceType(3) +ALLIANCE_SHARED_SPELLS = ConvertAllianceType(4) +ALLIANCE_SHARED_VISION = ConvertAllianceType(5) +ALLIANCE_SHARED_CONTROL = ConvertAllianceType(6) +ALLIANCE_SHARED_ADVANCED_CONTROL = ConvertAllianceType(7) +ALLIANCE_RESCUABLE = ConvertAllianceType(8) +ALLIANCE_SHARED_VISION_FORCED = ConvertAllianceType(9) +VERSION_REIGN_OF_CHAOS = ConvertVersion(0) +VERSION_FROZEN_THRONE = ConvertVersion(1) +ATTACK_TYPE_NORMAL = ConvertAttackType(0) +ATTACK_TYPE_MELEE = ConvertAttackType(1) +ATTACK_TYPE_PIERCE = ConvertAttackType(2) +ATTACK_TYPE_SIEGE = ConvertAttackType(3) +ATTACK_TYPE_MAGIC = ConvertAttackType(4) +ATTACK_TYPE_CHAOS = ConvertAttackType(5) +ATTACK_TYPE_HERO = ConvertAttackType(6) +DAMAGE_TYPE_UNKNOWN = ConvertDamageType(0) +DAMAGE_TYPE_NORMAL = ConvertDamageType(4) +DAMAGE_TYPE_ENHANCED = ConvertDamageType(5) +DAMAGE_TYPE_FIRE = ConvertDamageType(8) +DAMAGE_TYPE_COLD = ConvertDamageType(9) +DAMAGE_TYPE_LIGHTNING = ConvertDamageType(10) +DAMAGE_TYPE_POISON = ConvertDamageType(11) +DAMAGE_TYPE_DISEASE = ConvertDamageType(12) +DAMAGE_TYPE_DIVINE = ConvertDamageType(13) +DAMAGE_TYPE_MAGIC = ConvertDamageType(14) +DAMAGE_TYPE_SONIC = ConvertDamageType(15) +DAMAGE_TYPE_ACID = ConvertDamageType(16) +DAMAGE_TYPE_FORCE = ConvertDamageType(17) +DAMAGE_TYPE_DEATH = ConvertDamageType(18) +DAMAGE_TYPE_MIND = ConvertDamageType(19) +DAMAGE_TYPE_PLANT = ConvertDamageType(20) +DAMAGE_TYPE_DEFENSIVE = ConvertDamageType(21) +DAMAGE_TYPE_DEMOLITION = ConvertDamageType(22) +DAMAGE_TYPE_SLOW_POISON = ConvertDamageType(23) +DAMAGE_TYPE_SPIRIT_LINK = ConvertDamageType(24) +DAMAGE_TYPE_SHADOW_STRIKE = ConvertDamageType(25) +DAMAGE_TYPE_UNIVERSAL = ConvertDamageType(26) +WEAPON_TYPE_WHOKNOWS = ConvertWeaponType(0) +WEAPON_TYPE_METAL_LIGHT_CHOP = ConvertWeaponType(1) +WEAPON_TYPE_METAL_MEDIUM_CHOP = ConvertWeaponType(2) +WEAPON_TYPE_METAL_HEAVY_CHOP = ConvertWeaponType(3) +WEAPON_TYPE_METAL_LIGHT_SLICE = ConvertWeaponType(4) +WEAPON_TYPE_METAL_MEDIUM_SLICE = ConvertWeaponType(5) +WEAPON_TYPE_METAL_HEAVY_SLICE = ConvertWeaponType(6) +WEAPON_TYPE_METAL_MEDIUM_BASH = ConvertWeaponType(7) +WEAPON_TYPE_METAL_HEAVY_BASH = ConvertWeaponType(8) +WEAPON_TYPE_METAL_MEDIUM_STAB = ConvertWeaponType(9) +WEAPON_TYPE_METAL_HEAVY_STAB = ConvertWeaponType(10) +WEAPON_TYPE_WOOD_LIGHT_SLICE = ConvertWeaponType(11) +WEAPON_TYPE_WOOD_MEDIUM_SLICE = ConvertWeaponType(12) +WEAPON_TYPE_WOOD_HEAVY_SLICE = ConvertWeaponType(13) +WEAPON_TYPE_WOOD_LIGHT_BASH = ConvertWeaponType(14) +WEAPON_TYPE_WOOD_MEDIUM_BASH = ConvertWeaponType(15) +WEAPON_TYPE_WOOD_HEAVY_BASH = ConvertWeaponType(16) +WEAPON_TYPE_WOOD_LIGHT_STAB = ConvertWeaponType(17) +WEAPON_TYPE_WOOD_MEDIUM_STAB = ConvertWeaponType(18) +WEAPON_TYPE_CLAW_LIGHT_SLICE = ConvertWeaponType(19) +WEAPON_TYPE_CLAW_MEDIUM_SLICE = ConvertWeaponType(20) +WEAPON_TYPE_CLAW_HEAVY_SLICE = ConvertWeaponType(21) +WEAPON_TYPE_AXE_MEDIUM_CHOP = ConvertWeaponType(22) +WEAPON_TYPE_ROCK_HEAVY_BASH = ConvertWeaponType(23) +PATHING_TYPE_ANY = ConvertPathingType(0) +PATHING_TYPE_WALKABILITY = ConvertPathingType(1) +PATHING_TYPE_FLYABILITY = ConvertPathingType(2) +PATHING_TYPE_BUILDABILITY = ConvertPathingType(3) +PATHING_TYPE_PEONHARVESTPATHING = ConvertPathingType(4) +PATHING_TYPE_BLIGHTPATHING = ConvertPathingType(5) +PATHING_TYPE_FLOATABILITY = ConvertPathingType(6) +PATHING_TYPE_AMPHIBIOUSPATHING = ConvertPathingType(7) +MOUSE_BUTTON_TYPE_LEFT = ConvertMouseButtonType(1) +MOUSE_BUTTON_TYPE_MIDDLE = ConvertMouseButtonType(2) +MOUSE_BUTTON_TYPE_RIGHT = ConvertMouseButtonType(3) +ANIM_TYPE_BIRTH = ConvertAnimType(0) +ANIM_TYPE_DEATH = ConvertAnimType(1) +ANIM_TYPE_DECAY = ConvertAnimType(2) +ANIM_TYPE_DISSIPATE = ConvertAnimType(3) +ANIM_TYPE_STAND = ConvertAnimType(4) +ANIM_TYPE_WALK = ConvertAnimType(5) +ANIM_TYPE_ATTACK = ConvertAnimType(6) +ANIM_TYPE_MORPH = ConvertAnimType(7) +ANIM_TYPE_SLEEP = ConvertAnimType(8) +ANIM_TYPE_SPELL = ConvertAnimType(9) +ANIM_TYPE_PORTRAIT = ConvertAnimType(10) +SUBANIM_TYPE_ROOTED = ConvertSubAnimType(11) +SUBANIM_TYPE_ALTERNATE_EX = ConvertSubAnimType(12) +SUBANIM_TYPE_LOOPING = ConvertSubAnimType(13) +SUBANIM_TYPE_SLAM = ConvertSubAnimType(14) +SUBANIM_TYPE_THROW = ConvertSubAnimType(15) +SUBANIM_TYPE_SPIKED = ConvertSubAnimType(16) +SUBANIM_TYPE_FAST = ConvertSubAnimType(17) +SUBANIM_TYPE_SPIN = ConvertSubAnimType(18) +SUBANIM_TYPE_READY = ConvertSubAnimType(19) +SUBANIM_TYPE_CHANNEL = ConvertSubAnimType(20) +SUBANIM_TYPE_DEFEND = ConvertSubAnimType(21) +SUBANIM_TYPE_VICTORY = ConvertSubAnimType(22) +SUBANIM_TYPE_TURN = ConvertSubAnimType(23) +SUBANIM_TYPE_LEFT = ConvertSubAnimType(24) +SUBANIM_TYPE_RIGHT = ConvertSubAnimType(25) +SUBANIM_TYPE_FIRE = ConvertSubAnimType(26) +SUBANIM_TYPE_FLESH = ConvertSubAnimType(27) +SUBANIM_TYPE_HIT = ConvertSubAnimType(28) +SUBANIM_TYPE_WOUNDED = ConvertSubAnimType(29) +SUBANIM_TYPE_LIGHT = ConvertSubAnimType(30) +SUBANIM_TYPE_MODERATE = ConvertSubAnimType(31) +SUBANIM_TYPE_SEVERE = ConvertSubAnimType(32) +SUBANIM_TYPE_CRITICAL = ConvertSubAnimType(33) +SUBANIM_TYPE_COMPLETE = ConvertSubAnimType(34) +SUBANIM_TYPE_GOLD = ConvertSubAnimType(35) +SUBANIM_TYPE_LUMBER = ConvertSubAnimType(36) +SUBANIM_TYPE_WORK = ConvertSubAnimType(37) +SUBANIM_TYPE_TALK = ConvertSubAnimType(38) +SUBANIM_TYPE_FIRST = ConvertSubAnimType(39) +SUBANIM_TYPE_SECOND = ConvertSubAnimType(40) +SUBANIM_TYPE_THIRD = ConvertSubAnimType(41) +SUBANIM_TYPE_FOURTH = ConvertSubAnimType(42) +SUBANIM_TYPE_FIFTH = ConvertSubAnimType(43) +SUBANIM_TYPE_ONE = ConvertSubAnimType(44) +SUBANIM_TYPE_TWO = ConvertSubAnimType(45) +SUBANIM_TYPE_THREE = ConvertSubAnimType(46) +SUBANIM_TYPE_FOUR = ConvertSubAnimType(47) +SUBANIM_TYPE_FIVE = ConvertSubAnimType(48) +SUBANIM_TYPE_SMALL = ConvertSubAnimType(49) +SUBANIM_TYPE_MEDIUM = ConvertSubAnimType(50) +SUBANIM_TYPE_LARGE = ConvertSubAnimType(51) +SUBANIM_TYPE_UPGRADE = ConvertSubAnimType(52) +SUBANIM_TYPE_DRAIN = ConvertSubAnimType(53) +SUBANIM_TYPE_FILL = ConvertSubAnimType(54) +SUBANIM_TYPE_CHAINLIGHTNING = ConvertSubAnimType(55) +SUBANIM_TYPE_EATTREE = ConvertSubAnimType(56) +SUBANIM_TYPE_PUKE = ConvertSubAnimType(57) +SUBANIM_TYPE_FLAIL = ConvertSubAnimType(58) +SUBANIM_TYPE_OFF = ConvertSubAnimType(59) +SUBANIM_TYPE_SWIM = ConvertSubAnimType(60) +SUBANIM_TYPE_ENTANGLE = ConvertSubAnimType(61) +SUBANIM_TYPE_BERSERK = ConvertSubAnimType(62) +RACE_PREF_HUMAN = ConvertRacePref(1) +RACE_PREF_ORC = ConvertRacePref(2) +RACE_PREF_NIGHTELF = ConvertRacePref(4) +RACE_PREF_UNDEAD = ConvertRacePref(8) +RACE_PREF_DEMON = ConvertRacePref(16) +RACE_PREF_RANDOM = ConvertRacePref(32) +RACE_PREF_USER_SELECTABLE = ConvertRacePref(64) +MAP_CONTROL_USER = ConvertMapControl(0) +MAP_CONTROL_COMPUTER = ConvertMapControl(1) +MAP_CONTROL_RESCUABLE = ConvertMapControl(2) +MAP_CONTROL_NEUTRAL = ConvertMapControl(3) +MAP_CONTROL_CREEP = ConvertMapControl(4) +MAP_CONTROL_NONE = ConvertMapControl(5) +GAME_TYPE_MELEE = ConvertGameType(1) +GAME_TYPE_FFA = ConvertGameType(2) +GAME_TYPE_USE_MAP_SETTINGS = ConvertGameType(4) +GAME_TYPE_BLIZ = ConvertGameType(8) +GAME_TYPE_ONE_ON_ONE = ConvertGameType(16) +GAME_TYPE_TWO_TEAM_PLAY = ConvertGameType(32) +GAME_TYPE_THREE_TEAM_PLAY = ConvertGameType(64) +GAME_TYPE_FOUR_TEAM_PLAY = ConvertGameType(128) +MAP_FOG_HIDE_TERRAIN = ConvertMapFlag(1) +MAP_FOG_MAP_EXPLORED = ConvertMapFlag(2) +MAP_FOG_ALWAYS_VISIBLE = ConvertMapFlag(4) +MAP_USE_HANDICAPS = ConvertMapFlag(8) +MAP_OBSERVERS = ConvertMapFlag(16) +MAP_OBSERVERS_ON_DEATH = ConvertMapFlag(32) +MAP_FIXED_COLORS = ConvertMapFlag(128) +MAP_LOCK_RESOURCE_TRADING = ConvertMapFlag(256) +MAP_RESOURCE_TRADING_ALLIES_ONLY = ConvertMapFlag(512) +MAP_LOCK_ALLIANCE_CHANGES = ConvertMapFlag(1024) +MAP_ALLIANCE_CHANGES_HIDDEN = ConvertMapFlag(2048) +MAP_CHEATS = ConvertMapFlag(4096) +MAP_CHEATS_HIDDEN = ConvertMapFlag(8192) +MAP_LOCK_SPEED = ConvertMapFlag(8192 * 2) +MAP_LOCK_RANDOM_SEED = ConvertMapFlag(8192 * 4) +MAP_SHARED_ADVANCED_CONTROL = ConvertMapFlag(8192 * 8) +MAP_RANDOM_HERO = ConvertMapFlag(8192 * 16) +MAP_RANDOM_RACES = ConvertMapFlag(8192 * 32) +MAP_RELOADED = ConvertMapFlag(8192 * 64) +MAP_PLACEMENT_RANDOM = ConvertPlacement(0) +MAP_PLACEMENT_FIXED = ConvertPlacement(1) +MAP_PLACEMENT_USE_MAP_SETTINGS = ConvertPlacement(2) +MAP_PLACEMENT_TEAMS_TOGETHER = ConvertPlacement(3) +MAP_LOC_PRIO_LOW = ConvertStartLocPrio(0) +MAP_LOC_PRIO_HIGH = ConvertStartLocPrio(1) +MAP_LOC_PRIO_NOT = ConvertStartLocPrio(2) +MAP_DENSITY_NONE = ConvertMapDensity(0) +MAP_DENSITY_LIGHT = ConvertMapDensity(1) +MAP_DENSITY_MEDIUM = ConvertMapDensity(2) +MAP_DENSITY_HEAVY = ConvertMapDensity(3) +MAP_DIFFICULTY_EASY = ConvertGameDifficulty(0) +MAP_DIFFICULTY_NORMAL = ConvertGameDifficulty(1) +MAP_DIFFICULTY_HARD = ConvertGameDifficulty(2) +MAP_DIFFICULTY_INSANE = ConvertGameDifficulty(3) +MAP_SPEED_SLOWEST = ConvertGameSpeed(0) +MAP_SPEED_SLOW = ConvertGameSpeed(1) +MAP_SPEED_NORMAL = ConvertGameSpeed(2) +MAP_SPEED_FAST = ConvertGameSpeed(3) +MAP_SPEED_FASTEST = ConvertGameSpeed(4) +PLAYER_SLOT_STATE_EMPTY = ConvertPlayerSlotState(0) +PLAYER_SLOT_STATE_PLAYING = ConvertPlayerSlotState(1) +PLAYER_SLOT_STATE_LEFT = ConvertPlayerSlotState(2) +SOUND_VOLUMEGROUP_UNITMOVEMENT = ConvertVolumeGroup(0) +SOUND_VOLUMEGROUP_UNITSOUNDS = ConvertVolumeGroup(1) +SOUND_VOLUMEGROUP_COMBAT = ConvertVolumeGroup(2) +SOUND_VOLUMEGROUP_SPELLS = ConvertVolumeGroup(3) +SOUND_VOLUMEGROUP_UI = ConvertVolumeGroup(4) +SOUND_VOLUMEGROUP_MUSIC = ConvertVolumeGroup(5) +SOUND_VOLUMEGROUP_AMBIENTSOUNDS = ConvertVolumeGroup(6) +SOUND_VOLUMEGROUP_FIRE = ConvertVolumeGroup(7) +SOUND_VOLUMEGROUP_CINEMATIC_GENERAL = ConvertVolumeGroup(8) +SOUND_VOLUMEGROUP_CINEMATIC_AMBIENT = ConvertVolumeGroup(9) +SOUND_VOLUMEGROUP_CINEMATIC_MUSIC = ConvertVolumeGroup(10) +SOUND_VOLUMEGROUP_CINEMATIC_DIALOGUE = ConvertVolumeGroup(11) +SOUND_VOLUMEGROUP_CINEMATIC_SOUND_EFFECTS_1 = ConvertVolumeGroup(12) +SOUND_VOLUMEGROUP_CINEMATIC_SOUND_EFFECTS_2 = ConvertVolumeGroup(13) +SOUND_VOLUMEGROUP_CINEMATIC_SOUND_EFFECTS_3 = ConvertVolumeGroup(14) +GAME_STATE_DIVINE_INTERVENTION = ConvertIGameState(0) +GAME_STATE_DISCONNECTED = ConvertIGameState(1) +GAME_STATE_TIME_OF_DAY = ConvertFGameState(2) +PLAYER_STATE_GAME_RESULT = ConvertPlayerState(0) +PLAYER_STATE_RESOURCE_GOLD = ConvertPlayerState(1) +PLAYER_STATE_RESOURCE_LUMBER = ConvertPlayerState(2) +PLAYER_STATE_RESOURCE_HERO_TOKENS = ConvertPlayerState(3) +PLAYER_STATE_RESOURCE_FOOD_CAP = ConvertPlayerState(4) +PLAYER_STATE_RESOURCE_FOOD_USED = ConvertPlayerState(5) +PLAYER_STATE_FOOD_CAP_CEILING = ConvertPlayerState(6) +PLAYER_STATE_GIVES_BOUNTY = ConvertPlayerState(7) +PLAYER_STATE_ALLIED_VICTORY = ConvertPlayerState(8) +PLAYER_STATE_PLACED = ConvertPlayerState(9) +PLAYER_STATE_OBSERVER_ON_DEATH = ConvertPlayerState(10) +PLAYER_STATE_OBSERVER = ConvertPlayerState(11) +PLAYER_STATE_UNFOLLOWABLE = ConvertPlayerState(12) +PLAYER_STATE_GOLD_UPKEEP_RATE = ConvertPlayerState(13) +PLAYER_STATE_LUMBER_UPKEEP_RATE = ConvertPlayerState(14) +PLAYER_STATE_GOLD_GATHERED = ConvertPlayerState(15) +PLAYER_STATE_LUMBER_GATHERED = ConvertPlayerState(16) +PLAYER_STATE_NO_CREEP_SLEEP = ConvertPlayerState(25) +UNIT_STATE_LIFE = ConvertUnitState(0) +UNIT_STATE_MAX_LIFE = ConvertUnitState(1) +UNIT_STATE_MANA = ConvertUnitState(2) +UNIT_STATE_MAX_MANA = ConvertUnitState(3) +AI_DIFFICULTY_NEWBIE = ConvertAIDifficulty(0) +AI_DIFFICULTY_NORMAL = ConvertAIDifficulty(1) +AI_DIFFICULTY_INSANE = ConvertAIDifficulty(2) +PLAYER_SCORE_UNITS_TRAINED = ConvertPlayerScore(0) +PLAYER_SCORE_UNITS_KILLED = ConvertPlayerScore(1) +PLAYER_SCORE_STRUCT_BUILT = ConvertPlayerScore(2) +PLAYER_SCORE_STRUCT_RAZED = ConvertPlayerScore(3) +PLAYER_SCORE_TECH_PERCENT = ConvertPlayerScore(4) +PLAYER_SCORE_FOOD_MAXPROD = ConvertPlayerScore(5) +PLAYER_SCORE_FOOD_MAXUSED = ConvertPlayerScore(6) +PLAYER_SCORE_HEROES_KILLED = ConvertPlayerScore(7) +PLAYER_SCORE_ITEMS_GAINED = ConvertPlayerScore(8) +PLAYER_SCORE_MERCS_HIRED = ConvertPlayerScore(9) +PLAYER_SCORE_GOLD_MINED_TOTAL = ConvertPlayerScore(10) +PLAYER_SCORE_GOLD_MINED_UPKEEP = ConvertPlayerScore(11) +PLAYER_SCORE_GOLD_LOST_UPKEEP = ConvertPlayerScore(12) +PLAYER_SCORE_GOLD_LOST_TAX = ConvertPlayerScore(13) +PLAYER_SCORE_GOLD_GIVEN = ConvertPlayerScore(14) +PLAYER_SCORE_GOLD_RECEIVED = ConvertPlayerScore(15) +PLAYER_SCORE_LUMBER_TOTAL = ConvertPlayerScore(16) +PLAYER_SCORE_LUMBER_LOST_UPKEEP = ConvertPlayerScore(17) +PLAYER_SCORE_LUMBER_LOST_TAX = ConvertPlayerScore(18) +PLAYER_SCORE_LUMBER_GIVEN = ConvertPlayerScore(19) +PLAYER_SCORE_LUMBER_RECEIVED = ConvertPlayerScore(20) +PLAYER_SCORE_UNIT_TOTAL = ConvertPlayerScore(21) +PLAYER_SCORE_HERO_TOTAL = ConvertPlayerScore(22) +PLAYER_SCORE_RESOURCE_TOTAL = ConvertPlayerScore(23) +PLAYER_SCORE_TOTAL = ConvertPlayerScore(24) +EVENT_GAME_VICTORY = ConvertGameEvent(0) +EVENT_GAME_END_LEVEL = ConvertGameEvent(1) +EVENT_GAME_VARIABLE_LIMIT = ConvertGameEvent(2) +EVENT_GAME_STATE_LIMIT = ConvertGameEvent(3) +EVENT_GAME_TIMER_EXPIRED = ConvertGameEvent(4) +EVENT_GAME_ENTER_REGION = ConvertGameEvent(5) +EVENT_GAME_LEAVE_REGION = ConvertGameEvent(6) +EVENT_GAME_TRACKABLE_HIT = ConvertGameEvent(7) +EVENT_GAME_TRACKABLE_TRACK = ConvertGameEvent(8) +EVENT_GAME_SHOW_SKILL = ConvertGameEvent(9) +EVENT_GAME_BUILD_SUBMENU = ConvertGameEvent(10) +EVENT_PLAYER_STATE_LIMIT = ConvertPlayerEvent(11) +EVENT_PLAYER_ALLIANCE_CHANGED = ConvertPlayerEvent(12) +EVENT_PLAYER_DEFEAT = ConvertPlayerEvent(13) +EVENT_PLAYER_VICTORY = ConvertPlayerEvent(14) +EVENT_PLAYER_LEAVE = ConvertPlayerEvent(15) +EVENT_PLAYER_CHAT = ConvertPlayerEvent(16) +EVENT_PLAYER_END_CINEMATIC = ConvertPlayerEvent(17) +EVENT_PLAYER_UNIT_ATTACKED = ConvertPlayerUnitEvent(18) +EVENT_PLAYER_UNIT_RESCUED = ConvertPlayerUnitEvent(19) +EVENT_PLAYER_UNIT_DEATH = ConvertPlayerUnitEvent(20) +EVENT_PLAYER_UNIT_DECAY = ConvertPlayerUnitEvent(21) +EVENT_PLAYER_UNIT_DETECTED = ConvertPlayerUnitEvent(22) +EVENT_PLAYER_UNIT_HIDDEN = ConvertPlayerUnitEvent(23) +EVENT_PLAYER_UNIT_SELECTED = ConvertPlayerUnitEvent(24) +EVENT_PLAYER_UNIT_DESELECTED = ConvertPlayerUnitEvent(25) +EVENT_PLAYER_UNIT_CONSTRUCT_START = ConvertPlayerUnitEvent(26) +EVENT_PLAYER_UNIT_CONSTRUCT_CANCEL = ConvertPlayerUnitEvent(27) +EVENT_PLAYER_UNIT_CONSTRUCT_FINISH = ConvertPlayerUnitEvent(28) +EVENT_PLAYER_UNIT_UPGRADE_START = ConvertPlayerUnitEvent(29) +EVENT_PLAYER_UNIT_UPGRADE_CANCEL = ConvertPlayerUnitEvent(30) +EVENT_PLAYER_UNIT_UPGRADE_FINISH = ConvertPlayerUnitEvent(31) +EVENT_PLAYER_UNIT_TRAIN_START = ConvertPlayerUnitEvent(32) +EVENT_PLAYER_UNIT_TRAIN_CANCEL = ConvertPlayerUnitEvent(33) +EVENT_PLAYER_UNIT_TRAIN_FINISH = ConvertPlayerUnitEvent(34) +EVENT_PLAYER_UNIT_RESEARCH_START = ConvertPlayerUnitEvent(35) +EVENT_PLAYER_UNIT_RESEARCH_CANCEL = ConvertPlayerUnitEvent(36) +EVENT_PLAYER_UNIT_RESEARCH_FINISH = ConvertPlayerUnitEvent(37) +EVENT_PLAYER_UNIT_ISSUED_ORDER = ConvertPlayerUnitEvent(38) +EVENT_PLAYER_UNIT_ISSUED_POINT_ORDER = ConvertPlayerUnitEvent(39) +EVENT_PLAYER_UNIT_ISSUED_TARGET_ORDER = ConvertPlayerUnitEvent(40) +EVENT_PLAYER_UNIT_ISSUED_UNIT_ORDER = ConvertPlayerUnitEvent(40) +EVENT_PLAYER_HERO_LEVEL = ConvertPlayerUnitEvent(41) +EVENT_PLAYER_HERO_SKILL = ConvertPlayerUnitEvent(42) +EVENT_PLAYER_HERO_REVIVABLE = ConvertPlayerUnitEvent(43) +EVENT_PLAYER_HERO_REVIVE_START = ConvertPlayerUnitEvent(44) +EVENT_PLAYER_HERO_REVIVE_CANCEL = ConvertPlayerUnitEvent(45) +EVENT_PLAYER_HERO_REVIVE_FINISH = ConvertPlayerUnitEvent(46) +EVENT_PLAYER_UNIT_SUMMON = ConvertPlayerUnitEvent(47) +EVENT_PLAYER_UNIT_DROP_ITEM = ConvertPlayerUnitEvent(48) +EVENT_PLAYER_UNIT_PICKUP_ITEM = ConvertPlayerUnitEvent(49) +EVENT_PLAYER_UNIT_USE_ITEM = ConvertPlayerUnitEvent(50) +EVENT_PLAYER_UNIT_LOADED = ConvertPlayerUnitEvent(51) +EVENT_PLAYER_UNIT_DAMAGED = ConvertPlayerUnitEvent(308) +EVENT_PLAYER_UNIT_DAMAGING = ConvertPlayerUnitEvent(315) +EVENT_UNIT_DAMAGED = ConvertUnitEvent(52) +EVENT_UNIT_DAMAGING = ConvertUnitEvent(314) +EVENT_UNIT_DEATH = ConvertUnitEvent(53) +EVENT_UNIT_DECAY = ConvertUnitEvent(54) +EVENT_UNIT_DETECTED = ConvertUnitEvent(55) +EVENT_UNIT_HIDDEN = ConvertUnitEvent(56) +EVENT_UNIT_SELECTED = ConvertUnitEvent(57) +EVENT_UNIT_DESELECTED = ConvertUnitEvent(58) +EVENT_UNIT_STATE_LIMIT = ConvertUnitEvent(59) +EVENT_UNIT_ACQUIRED_TARGET = ConvertUnitEvent(60) +EVENT_UNIT_TARGET_IN_RANGE = ConvertUnitEvent(61) +EVENT_UNIT_ATTACKED = ConvertUnitEvent(62) +EVENT_UNIT_RESCUED = ConvertUnitEvent(63) +EVENT_UNIT_CONSTRUCT_CANCEL = ConvertUnitEvent(64) +EVENT_UNIT_CONSTRUCT_FINISH = ConvertUnitEvent(65) +EVENT_UNIT_UPGRADE_START = ConvertUnitEvent(66) +EVENT_UNIT_UPGRADE_CANCEL = ConvertUnitEvent(67) +EVENT_UNIT_UPGRADE_FINISH = ConvertUnitEvent(68) +EVENT_UNIT_TRAIN_START = ConvertUnitEvent(69) +EVENT_UNIT_TRAIN_CANCEL = ConvertUnitEvent(70) +EVENT_UNIT_TRAIN_FINISH = ConvertUnitEvent(71) +EVENT_UNIT_RESEARCH_START = ConvertUnitEvent(72) +EVENT_UNIT_RESEARCH_CANCEL = ConvertUnitEvent(73) +EVENT_UNIT_RESEARCH_FINISH = ConvertUnitEvent(74) +EVENT_UNIT_ISSUED_ORDER = ConvertUnitEvent(75) +EVENT_UNIT_ISSUED_POINT_ORDER = ConvertUnitEvent(76) +EVENT_UNIT_ISSUED_TARGET_ORDER = ConvertUnitEvent(77) +EVENT_UNIT_HERO_LEVEL = ConvertUnitEvent(78) +EVENT_UNIT_HERO_SKILL = ConvertUnitEvent(79) +EVENT_UNIT_HERO_REVIVABLE = ConvertUnitEvent(80) +EVENT_UNIT_HERO_REVIVE_START = ConvertUnitEvent(81) +EVENT_UNIT_HERO_REVIVE_CANCEL = ConvertUnitEvent(82) +EVENT_UNIT_HERO_REVIVE_FINISH = ConvertUnitEvent(83) +EVENT_UNIT_SUMMON = ConvertUnitEvent(84) +EVENT_UNIT_DROP_ITEM = ConvertUnitEvent(85) +EVENT_UNIT_PICKUP_ITEM = ConvertUnitEvent(86) +EVENT_UNIT_USE_ITEM = ConvertUnitEvent(87) +EVENT_UNIT_LOADED = ConvertUnitEvent(88) +EVENT_WIDGET_DEATH = ConvertWidgetEvent(89) +EVENT_DIALOG_BUTTON_CLICK = ConvertDialogEvent(90) +EVENT_DIALOG_CLICK = ConvertDialogEvent(91) +EVENT_GAME_LOADED = ConvertGameEvent(256) +EVENT_GAME_TOURNAMENT_FINISH_SOON = ConvertGameEvent(257) +EVENT_GAME_TOURNAMENT_FINISH_NOW = ConvertGameEvent(258) +EVENT_GAME_SAVE = ConvertGameEvent(259) +EVENT_GAME_CUSTOM_UI_FRAME = ConvertGameEvent(310) +EVENT_PLAYER_ARROW_LEFT_DOWN = ConvertPlayerEvent(261) +EVENT_PLAYER_ARROW_LEFT_UP = ConvertPlayerEvent(262) +EVENT_PLAYER_ARROW_RIGHT_DOWN = ConvertPlayerEvent(263) +EVENT_PLAYER_ARROW_RIGHT_UP = ConvertPlayerEvent(264) +EVENT_PLAYER_ARROW_DOWN_DOWN = ConvertPlayerEvent(265) +EVENT_PLAYER_ARROW_DOWN_UP = ConvertPlayerEvent(266) +EVENT_PLAYER_ARROW_UP_DOWN = ConvertPlayerEvent(267) +EVENT_PLAYER_ARROW_UP_UP = ConvertPlayerEvent(268) +EVENT_PLAYER_MOUSE_DOWN = ConvertPlayerEvent(305) +EVENT_PLAYER_MOUSE_UP = ConvertPlayerEvent(306) +EVENT_PLAYER_MOUSE_MOVE = ConvertPlayerEvent(307) +EVENT_PLAYER_SYNC_DATA = ConvertPlayerEvent(309) +EVENT_PLAYER_KEY = ConvertPlayerEvent(311) +EVENT_PLAYER_KEY_DOWN = ConvertPlayerEvent(312) +EVENT_PLAYER_KEY_UP = ConvertPlayerEvent(313) +EVENT_PLAYER_UNIT_SELL = ConvertPlayerUnitEvent(269) +EVENT_PLAYER_UNIT_CHANGE_OWNER = ConvertPlayerUnitEvent(270) +EVENT_PLAYER_UNIT_SELL_ITEM = ConvertPlayerUnitEvent(271) +EVENT_PLAYER_UNIT_SPELL_CHANNEL = ConvertPlayerUnitEvent(272) +EVENT_PLAYER_UNIT_SPELL_CAST = ConvertPlayerUnitEvent(273) +EVENT_PLAYER_UNIT_SPELL_EFFECT = ConvertPlayerUnitEvent(274) +EVENT_PLAYER_UNIT_SPELL_FINISH = ConvertPlayerUnitEvent(275) +EVENT_PLAYER_UNIT_SPELL_ENDCAST = ConvertPlayerUnitEvent(276) +EVENT_PLAYER_UNIT_PAWN_ITEM = ConvertPlayerUnitEvent(277) +EVENT_PLAYER_UNIT_STACK_ITEM = ConvertPlayerUnitEvent(319) +EVENT_UNIT_SELL = ConvertUnitEvent(286) +EVENT_UNIT_CHANGE_OWNER = ConvertUnitEvent(287) +EVENT_UNIT_SELL_ITEM = ConvertUnitEvent(288) +EVENT_UNIT_SPELL_CHANNEL = ConvertUnitEvent(289) +EVENT_UNIT_SPELL_CAST = ConvertUnitEvent(290) +EVENT_UNIT_SPELL_EFFECT = ConvertUnitEvent(291) +EVENT_UNIT_SPELL_FINISH = ConvertUnitEvent(292) +EVENT_UNIT_SPELL_ENDCAST = ConvertUnitEvent(293) +EVENT_UNIT_PAWN_ITEM = ConvertUnitEvent(294) +EVENT_UNIT_STACK_ITEM = ConvertUnitEvent(318) +LESS_THAN = ConvertLimitOp(0) +LESS_THAN_OR_EQUAL = ConvertLimitOp(1) +EQUAL = ConvertLimitOp(2) +GREATER_THAN_OR_EQUAL = ConvertLimitOp(3) +GREATER_THAN = ConvertLimitOp(4) +NOT_EQUAL = ConvertLimitOp(5) +UNIT_TYPE_HERO = ConvertUnitType(0) +UNIT_TYPE_DEAD = ConvertUnitType(1) +UNIT_TYPE_STRUCTURE = ConvertUnitType(2) +UNIT_TYPE_FLYING = ConvertUnitType(3) +UNIT_TYPE_GROUND = ConvertUnitType(4) +UNIT_TYPE_ATTACKS_FLYING = ConvertUnitType(5) +UNIT_TYPE_ATTACKS_GROUND = ConvertUnitType(6) +UNIT_TYPE_MELEE_ATTACKER = ConvertUnitType(7) +UNIT_TYPE_RANGED_ATTACKER = ConvertUnitType(8) +UNIT_TYPE_GIANT = ConvertUnitType(9) +UNIT_TYPE_SUMMONED = ConvertUnitType(10) +UNIT_TYPE_STUNNED = ConvertUnitType(11) +UNIT_TYPE_PLAGUED = ConvertUnitType(12) +UNIT_TYPE_SNARED = ConvertUnitType(13) +UNIT_TYPE_UNDEAD = ConvertUnitType(14) +UNIT_TYPE_MECHANICAL = ConvertUnitType(15) +UNIT_TYPE_PEON = ConvertUnitType(16) +UNIT_TYPE_SAPPER = ConvertUnitType(17) +UNIT_TYPE_TOWNHALL = ConvertUnitType(18) +UNIT_TYPE_ANCIENT = ConvertUnitType(19) +UNIT_TYPE_TAUREN = ConvertUnitType(20) +UNIT_TYPE_POISONED = ConvertUnitType(21) +UNIT_TYPE_POLYMORPHED = ConvertUnitType(22) +UNIT_TYPE_SLEEPING = ConvertUnitType(23) +UNIT_TYPE_RESISTANT = ConvertUnitType(24) +UNIT_TYPE_ETHEREAL = ConvertUnitType(25) +UNIT_TYPE_MAGIC_IMMUNE = ConvertUnitType(26) +ITEM_TYPE_PERMANENT = ConvertItemType(0) +ITEM_TYPE_CHARGED = ConvertItemType(1) +ITEM_TYPE_POWERUP = ConvertItemType(2) +ITEM_TYPE_ARTIFACT = ConvertItemType(3) +ITEM_TYPE_PURCHASABLE = ConvertItemType(4) +ITEM_TYPE_CAMPAIGN = ConvertItemType(5) +ITEM_TYPE_MISCELLANEOUS = ConvertItemType(6) +ITEM_TYPE_UNKNOWN = ConvertItemType(7) +ITEM_TYPE_ANY = ConvertItemType(8) +ITEM_TYPE_TOME = ConvertItemType(2) +CAMERA_FIELD_TARGET_DISTANCE = ConvertCameraField(0) +CAMERA_FIELD_FARZ = ConvertCameraField(1) +CAMERA_FIELD_ANGLE_OF_ATTACK = ConvertCameraField(2) +CAMERA_FIELD_FIELD_OF_VIEW = ConvertCameraField(3) +CAMERA_FIELD_ROLL = ConvertCameraField(4) +CAMERA_FIELD_ROTATION = ConvertCameraField(5) +CAMERA_FIELD_ZOFFSET = ConvertCameraField(6) +CAMERA_FIELD_NEARZ = ConvertCameraField(7) +CAMERA_FIELD_LOCAL_PITCH = ConvertCameraField(8) +CAMERA_FIELD_LOCAL_YAW = ConvertCameraField(9) +CAMERA_FIELD_LOCAL_ROLL = ConvertCameraField(10) +BLEND_MODE_NONE = ConvertBlendMode(0) +BLEND_MODE_DONT_CARE = ConvertBlendMode(0) +BLEND_MODE_KEYALPHA = ConvertBlendMode(1) +BLEND_MODE_BLEND = ConvertBlendMode(2) +BLEND_MODE_ADDITIVE = ConvertBlendMode(3) +BLEND_MODE_MODULATE = ConvertBlendMode(4) +BLEND_MODE_MODULATE_2X = ConvertBlendMode(5) +RARITY_FREQUENT = ConvertRarityControl(0) +RARITY_RARE = ConvertRarityControl(1) +TEXMAP_FLAG_NONE = ConvertTexMapFlags(0) +TEXMAP_FLAG_WRAP_U = ConvertTexMapFlags(1) +TEXMAP_FLAG_WRAP_V = ConvertTexMapFlags(2) +TEXMAP_FLAG_WRAP_UV = ConvertTexMapFlags(3) +FOG_OF_WAR_MASKED = ConvertFogState(1) +FOG_OF_WAR_FOGGED = ConvertFogState(2) +FOG_OF_WAR_VISIBLE = ConvertFogState(4) +CAMERA_MARGIN_LEFT = 0 +CAMERA_MARGIN_RIGHT = 1 +CAMERA_MARGIN_TOP = 2 +CAMERA_MARGIN_BOTTOM = 3 +EFFECT_TYPE_EFFECT = ConvertEffectType(0) +EFFECT_TYPE_TARGET = ConvertEffectType(1) +EFFECT_TYPE_CASTER = ConvertEffectType(2) +EFFECT_TYPE_SPECIAL = ConvertEffectType(3) +EFFECT_TYPE_AREA_EFFECT = ConvertEffectType(4) +EFFECT_TYPE_MISSILE = ConvertEffectType(5) +EFFECT_TYPE_LIGHTNING = ConvertEffectType(6) +SOUND_TYPE_EFFECT = ConvertSoundType(0) +SOUND_TYPE_EFFECT_LOOPED = ConvertSoundType(1) +ORIGIN_FRAME_GAME_UI = ConvertOriginFrameType(0) +ORIGIN_FRAME_COMMAND_BUTTON = ConvertOriginFrameType(1) +ORIGIN_FRAME_HERO_BAR = ConvertOriginFrameType(2) +ORIGIN_FRAME_HERO_BUTTON = ConvertOriginFrameType(3) +ORIGIN_FRAME_HERO_HP_BAR = ConvertOriginFrameType(4) +ORIGIN_FRAME_HERO_MANA_BAR = ConvertOriginFrameType(5) +ORIGIN_FRAME_HERO_BUTTON_INDICATOR = ConvertOriginFrameType(6) +ORIGIN_FRAME_ITEM_BUTTON = ConvertOriginFrameType(7) +ORIGIN_FRAME_MINIMAP = ConvertOriginFrameType(8) +ORIGIN_FRAME_MINIMAP_BUTTON = ConvertOriginFrameType(9) +ORIGIN_FRAME_SYSTEM_BUTTON = ConvertOriginFrameType(10) +ORIGIN_FRAME_TOOLTIP = ConvertOriginFrameType(11) +ORIGIN_FRAME_UBERTOOLTIP = ConvertOriginFrameType(12) +ORIGIN_FRAME_CHAT_MSG = ConvertOriginFrameType(13) +ORIGIN_FRAME_UNIT_MSG = ConvertOriginFrameType(14) +ORIGIN_FRAME_TOP_MSG = ConvertOriginFrameType(15) +ORIGIN_FRAME_PORTRAIT = ConvertOriginFrameType(16) +ORIGIN_FRAME_WORLD_FRAME = ConvertOriginFrameType(17) +ORIGIN_FRAME_SIMPLE_UI_PARENT = ConvertOriginFrameType(18) +ORIGIN_FRAME_PORTRAIT_HP_TEXT = ConvertOriginFrameType(19) +ORIGIN_FRAME_PORTRAIT_MANA_TEXT = ConvertOriginFrameType(20) +ORIGIN_FRAME_UNIT_PANEL_BUFF_BAR = ConvertOriginFrameType(21) +ORIGIN_FRAME_UNIT_PANEL_BUFF_BAR_LABEL = ConvertOriginFrameType(22) +FRAMEPOINT_TOPLEFT = ConvertFramePointType(0) +FRAMEPOINT_TOP = ConvertFramePointType(1) +FRAMEPOINT_TOPRIGHT = ConvertFramePointType(2) +FRAMEPOINT_LEFT = ConvertFramePointType(3) +FRAMEPOINT_CENTER = ConvertFramePointType(4) +FRAMEPOINT_RIGHT = ConvertFramePointType(5) +FRAMEPOINT_BOTTOMLEFT = ConvertFramePointType(6) +FRAMEPOINT_BOTTOM = ConvertFramePointType(7) +FRAMEPOINT_BOTTOMRIGHT = ConvertFramePointType(8) +TEXT_JUSTIFY_TOP = ConvertTextAlignType(0) +TEXT_JUSTIFY_MIDDLE = ConvertTextAlignType(1) +TEXT_JUSTIFY_BOTTOM = ConvertTextAlignType(2) +TEXT_JUSTIFY_LEFT = ConvertTextAlignType(3) +TEXT_JUSTIFY_CENTER = ConvertTextAlignType(4) +TEXT_JUSTIFY_RIGHT = ConvertTextAlignType(5) +FRAMEEVENT_CONTROL_CLICK = ConvertFrameEventType(1) +FRAMEEVENT_MOUSE_ENTER = ConvertFrameEventType(2) +FRAMEEVENT_MOUSE_LEAVE = ConvertFrameEventType(3) +FRAMEEVENT_MOUSE_UP = ConvertFrameEventType(4) +FRAMEEVENT_MOUSE_DOWN = ConvertFrameEventType(5) +FRAMEEVENT_MOUSE_WHEEL = ConvertFrameEventType(6) +FRAMEEVENT_CHECKBOX_CHECKED = ConvertFrameEventType(7) +FRAMEEVENT_CHECKBOX_UNCHECKED = ConvertFrameEventType(8) +FRAMEEVENT_EDITBOX_TEXT_CHANGED = ConvertFrameEventType(9) +FRAMEEVENT_POPUPMENU_ITEM_CHANGED = ConvertFrameEventType(10) +FRAMEEVENT_MOUSE_DOUBLECLICK = ConvertFrameEventType(11) +FRAMEEVENT_SPRITE_ANIM_UPDATE = ConvertFrameEventType(12) +FRAMEEVENT_SLIDER_VALUE_CHANGED = ConvertFrameEventType(13) +FRAMEEVENT_DIALOG_CANCEL = ConvertFrameEventType(14) +FRAMEEVENT_DIALOG_ACCEPT = ConvertFrameEventType(15) +FRAMEEVENT_EDITBOX_ENTER = ConvertFrameEventType(16) +OSKEY_BACKSPACE = ConvertOsKeyType(0x8) +OSKEY_TAB = ConvertOsKeyType(0x9) +OSKEY_CLEAR = ConvertOsKeyType(0xc) +OSKEY_RETURN = ConvertOsKeyType(0xd) +OSKEY_SHIFT = ConvertOsKeyType(0x10) +OSKEY_CONTROL = ConvertOsKeyType(0x11) +OSKEY_ALT = ConvertOsKeyType(0x12) +OSKEY_PAUSE = ConvertOsKeyType(0x13) +OSKEY_CAPSLOCK = ConvertOsKeyType(0x14) +OSKEY_KANA = ConvertOsKeyType(0x15) +OSKEY_HANGUL = ConvertOsKeyType(0x15) +OSKEY_JUNJA = ConvertOsKeyType(0x17) +OSKEY_FINAL = ConvertOsKeyType(0x18) +OSKEY_HANJA = ConvertOsKeyType(0x19) +OSKEY_KANJI = ConvertOsKeyType(0x19) +OSKEY_ESCAPE = ConvertOsKeyType(0x1b) +OSKEY_CONVERT = ConvertOsKeyType(0x1c) +OSKEY_NONCONVERT = ConvertOsKeyType(0x1d) +OSKEY_ACCEPT = ConvertOsKeyType(0x1e) +OSKEY_MODECHANGE = ConvertOsKeyType(0x1f) +OSKEY_SPACE = ConvertOsKeyType(0x20) +OSKEY_PAGEUP = ConvertOsKeyType(0x21) +OSKEY_PAGEDOWN = ConvertOsKeyType(0x22) +OSKEY_END = ConvertOsKeyType(0x23) +OSKEY_HOME = ConvertOsKeyType(0x24) +OSKEY_LEFT = ConvertOsKeyType(0x25) +OSKEY_UP = ConvertOsKeyType(0x26) +OSKEY_RIGHT = ConvertOsKeyType(0x27) +OSKEY_DOWN = ConvertOsKeyType(0x28) +OSKEY_SELECT = ConvertOsKeyType(0x29) +OSKEY_PRINT = ConvertOsKeyType(0x2a) +OSKEY_EXECUTE = ConvertOsKeyType(0x2b) +OSKEY_PRINTSCREEN = ConvertOsKeyType(0x2c) +OSKEY_INSERT = ConvertOsKeyType(0x2d) +OSKEY_DELETE = ConvertOsKeyType(0x2e) +OSKEY_HELP = ConvertOsKeyType(0x2f) +OSKEY_0 = ConvertOsKeyType(0x30) +OSKEY_1 = ConvertOsKeyType(0x31) +OSKEY_2 = ConvertOsKeyType(0x32) +OSKEY_3 = ConvertOsKeyType(0x33) +OSKEY_4 = ConvertOsKeyType(0x34) +OSKEY_5 = ConvertOsKeyType(0x35) +OSKEY_6 = ConvertOsKeyType(0x36) +OSKEY_7 = ConvertOsKeyType(0x37) +OSKEY_8 = ConvertOsKeyType(0x38) +OSKEY_9 = ConvertOsKeyType(0x39) +OSKEY_A = ConvertOsKeyType(0x41) +OSKEY_B = ConvertOsKeyType(0x42) +OSKEY_C = ConvertOsKeyType(0x43) +OSKEY_D = ConvertOsKeyType(0x44) +OSKEY_E = ConvertOsKeyType(0x45) +OSKEY_F = ConvertOsKeyType(0x46) +OSKEY_G = ConvertOsKeyType(0x47) +OSKEY_H = ConvertOsKeyType(0x48) +OSKEY_I = ConvertOsKeyType(0x49) +OSKEY_J = ConvertOsKeyType(0x4a) +OSKEY_K = ConvertOsKeyType(0x4b) +OSKEY_L = ConvertOsKeyType(0x4c) +OSKEY_M = ConvertOsKeyType(0x4d) +OSKEY_N = ConvertOsKeyType(0x4e) +OSKEY_O = ConvertOsKeyType(0x4f) +OSKEY_P = ConvertOsKeyType(0x50) +OSKEY_Q = ConvertOsKeyType(0x51) +OSKEY_R = ConvertOsKeyType(0x52) +OSKEY_S = ConvertOsKeyType(0x53) +OSKEY_T = ConvertOsKeyType(0x54) +OSKEY_U = ConvertOsKeyType(0x55) +OSKEY_V = ConvertOsKeyType(0x56) +OSKEY_W = ConvertOsKeyType(0x57) +OSKEY_X = ConvertOsKeyType(0x58) +OSKEY_Y = ConvertOsKeyType(0x59) +OSKEY_Z = ConvertOsKeyType(0x5a) +OSKEY_LMETA = ConvertOsKeyType(0x5b) +OSKEY_RMETA = ConvertOsKeyType(0x5c) +OSKEY_APPS = ConvertOsKeyType(0x5d) +OSKEY_SLEEP = ConvertOsKeyType(0x5f) +OSKEY_NUMPAD0 = ConvertOsKeyType(0x60) +OSKEY_NUMPAD1 = ConvertOsKeyType(0x61) +OSKEY_NUMPAD2 = ConvertOsKeyType(0x62) +OSKEY_NUMPAD3 = ConvertOsKeyType(0x63) +OSKEY_NUMPAD4 = ConvertOsKeyType(0x64) +OSKEY_NUMPAD5 = ConvertOsKeyType(0x65) +OSKEY_NUMPAD6 = ConvertOsKeyType(0x66) +OSKEY_NUMPAD7 = ConvertOsKeyType(0x67) +OSKEY_NUMPAD8 = ConvertOsKeyType(0x68) +OSKEY_NUMPAD9 = ConvertOsKeyType(0x69) +OSKEY_MULTIPLY = ConvertOsKeyType(0x6a) +OSKEY_ADD = ConvertOsKeyType(0x6b) +OSKEY_SEPARATOR = ConvertOsKeyType(0x6c) +OSKEY_SUBTRACT = ConvertOsKeyType(0x6d) +OSKEY_DECIMAL = ConvertOsKeyType(0x6e) +OSKEY_DIVIDE = ConvertOsKeyType(0x6f) +OSKEY_F1 = ConvertOsKeyType(0x70) +OSKEY_F2 = ConvertOsKeyType(0x71) +OSKEY_F3 = ConvertOsKeyType(0x72) +OSKEY_F4 = ConvertOsKeyType(0x73) +OSKEY_F5 = ConvertOsKeyType(0x74) +OSKEY_F6 = ConvertOsKeyType(0x75) +OSKEY_F7 = ConvertOsKeyType(0x76) +OSKEY_F8 = ConvertOsKeyType(0x77) +OSKEY_F9 = ConvertOsKeyType(0x78) +OSKEY_F10 = ConvertOsKeyType(0x79) +OSKEY_F11 = ConvertOsKeyType(0x7a) +OSKEY_F12 = ConvertOsKeyType(0x7b) +OSKEY_F13 = ConvertOsKeyType(0x7c) +OSKEY_F14 = ConvertOsKeyType(0x7d) +OSKEY_F15 = ConvertOsKeyType(0x7e) +OSKEY_F16 = ConvertOsKeyType(0x7f) +OSKEY_F17 = ConvertOsKeyType(0x80) +OSKEY_F18 = ConvertOsKeyType(0x81) +OSKEY_F19 = ConvertOsKeyType(0x82) +OSKEY_F20 = ConvertOsKeyType(0x83) +OSKEY_F21 = ConvertOsKeyType(0x84) +OSKEY_F22 = ConvertOsKeyType(0x85) +OSKEY_F23 = ConvertOsKeyType(0x86) +OSKEY_F24 = ConvertOsKeyType(0x87) +OSKEY_NUMLOCK = ConvertOsKeyType(0x90) +OSKEY_SCROLLLOCK = ConvertOsKeyType(0x91) +OSKEY_OEM_NEC_EQUAL = ConvertOsKeyType(0x92) +OSKEY_OEM_FJ_JISHO = ConvertOsKeyType(0x92) +OSKEY_OEM_FJ_MASSHOU = ConvertOsKeyType(0x93) +OSKEY_OEM_FJ_TOUROKU = ConvertOsKeyType(0x94) +OSKEY_OEM_FJ_LOYA = ConvertOsKeyType(0x95) +OSKEY_OEM_FJ_ROYA = ConvertOsKeyType(0x96) +OSKEY_LSHIFT = ConvertOsKeyType(0xa0) +OSKEY_RSHIFT = ConvertOsKeyType(0xa1) +OSKEY_LCONTROL = ConvertOsKeyType(0xa2) +OSKEY_RCONTROL = ConvertOsKeyType(0xa3) +OSKEY_LALT = ConvertOsKeyType(0xa4) +OSKEY_RALT = ConvertOsKeyType(0xa5) +OSKEY_BROWSER_BACK = ConvertOsKeyType(0xa6) +OSKEY_BROWSER_FORWARD = ConvertOsKeyType(0xa7) +OSKEY_BROWSER_REFRESH = ConvertOsKeyType(0xa8) +OSKEY_BROWSER_STOP = ConvertOsKeyType(0xa9) +OSKEY_BROWSER_SEARCH = ConvertOsKeyType(0xaa) +OSKEY_BROWSER_FAVORITES = ConvertOsKeyType(0xab) +OSKEY_BROWSER_HOME = ConvertOsKeyType(0xac) +OSKEY_VOLUME_MUTE = ConvertOsKeyType(0xad) +OSKEY_VOLUME_DOWN = ConvertOsKeyType(0xae) +OSKEY_VOLUME_UP = ConvertOsKeyType(0xaf) +OSKEY_MEDIA_NEXT_TRACK = ConvertOsKeyType(0xb0) +OSKEY_MEDIA_PREV_TRACK = ConvertOsKeyType(0xb1) +OSKEY_MEDIA_STOP = ConvertOsKeyType(0xb2) +OSKEY_MEDIA_PLAY_PAUSE = ConvertOsKeyType(0xb3) +OSKEY_LAUNCH_MAIL = ConvertOsKeyType(0xb4) +OSKEY_LAUNCH_MEDIA_SELECT = ConvertOsKeyType(0xb5) +OSKEY_LAUNCH_APP1 = ConvertOsKeyType(0xb6) +OSKEY_LAUNCH_APP2 = ConvertOsKeyType(0xb7) +OSKEY_OEM_1 = ConvertOsKeyType(0xba) +OSKEY_OEM_PLUS = ConvertOsKeyType(0xbb) +OSKEY_OEM_COMMA = ConvertOsKeyType(0xbc) +OSKEY_OEM_MINUS = ConvertOsKeyType(0xbd) +OSKEY_OEM_PERIOD = ConvertOsKeyType(0xbe) +OSKEY_OEM_2 = ConvertOsKeyType(0xbf) +OSKEY_OEM_3 = ConvertOsKeyType(0xc0) +OSKEY_OEM_4 = ConvertOsKeyType(0xdb) +OSKEY_OEM_5 = ConvertOsKeyType(0xdc) +OSKEY_OEM_6 = ConvertOsKeyType(0xdd) +OSKEY_OEM_7 = ConvertOsKeyType(0xde) +OSKEY_OEM_8 = ConvertOsKeyType(0xdf) +OSKEY_OEM_AX = ConvertOsKeyType(0xe1) +OSKEY_OEM_102 = ConvertOsKeyType(0xe2) +OSKEY_ICO_HELP = ConvertOsKeyType(0xe3) +OSKEY_ICO_00 = ConvertOsKeyType(0xe4) +OSKEY_PROCESSKEY = ConvertOsKeyType(0xe5) +OSKEY_ICO_CLEAR = ConvertOsKeyType(0xe6) +OSKEY_PACKET = ConvertOsKeyType(0xe7) +OSKEY_OEM_RESET = ConvertOsKeyType(0xe9) +OSKEY_OEM_JUMP = ConvertOsKeyType(0xea) +OSKEY_OEM_PA1 = ConvertOsKeyType(0xeb) +OSKEY_OEM_PA2 = ConvertOsKeyType(0xec) +OSKEY_OEM_PA3 = ConvertOsKeyType(0xed) +OSKEY_OEM_WSCTRL = ConvertOsKeyType(0xee) +OSKEY_OEM_CUSEL = ConvertOsKeyType(0xef) +OSKEY_OEM_ATTN = ConvertOsKeyType(0xf0) +OSKEY_OEM_FINISH = ConvertOsKeyType(0xf1) +OSKEY_OEM_COPY = ConvertOsKeyType(0xf2) +OSKEY_OEM_AUTO = ConvertOsKeyType(0xf3) +OSKEY_OEM_ENLW = ConvertOsKeyType(0xf4) +OSKEY_OEM_BACKTAB = ConvertOsKeyType(0xf5) +OSKEY_ATTN = ConvertOsKeyType(0xf6) +OSKEY_CRSEL = ConvertOsKeyType(0xf7) +OSKEY_EXSEL = ConvertOsKeyType(0xf8) +OSKEY_EREOF = ConvertOsKeyType(0xf9) +OSKEY_PLAY = ConvertOsKeyType(0xfa) +OSKEY_ZOOM = ConvertOsKeyType(0xfb) +OSKEY_NONAME = ConvertOsKeyType(0xfc) +OSKEY_PA1 = ConvertOsKeyType(0xfd) +OSKEY_OEM_CLEAR = ConvertOsKeyType(0xfe) +ABILITY_IF_BUTTON_POSITION_NORMAL_X = ConvertAbilityIntegerField(FourCC("abpx")) +ABILITY_IF_BUTTON_POSITION_NORMAL_Y = ConvertAbilityIntegerField(FourCC("abpy")) +ABILITY_IF_BUTTON_POSITION_ACTIVATED_X = ConvertAbilityIntegerField(FourCC("aubx")) +ABILITY_IF_BUTTON_POSITION_ACTIVATED_Y = ConvertAbilityIntegerField(FourCC("auby")) +ABILITY_IF_BUTTON_POSITION_RESEARCH_X = ConvertAbilityIntegerField(FourCC("arpx")) +ABILITY_IF_BUTTON_POSITION_RESEARCH_Y = ConvertAbilityIntegerField(FourCC("arpy")) +ABILITY_IF_MISSILE_SPEED = ConvertAbilityIntegerField(FourCC("amsp")) +ABILITY_IF_TARGET_ATTACHMENTS = ConvertAbilityIntegerField(FourCC("atac")) +ABILITY_IF_CASTER_ATTACHMENTS = ConvertAbilityIntegerField(FourCC("acac")) +ABILITY_IF_PRIORITY = ConvertAbilityIntegerField(FourCC("apri")) +ABILITY_IF_LEVELS = ConvertAbilityIntegerField(FourCC("alev")) +ABILITY_IF_REQUIRED_LEVEL = ConvertAbilityIntegerField(FourCC("arlv")) +ABILITY_IF_LEVEL_SKIP_REQUIREMENT = ConvertAbilityIntegerField(FourCC("alsk")) +ABILITY_BF_HERO_ABILITY = ConvertAbilityBooleanField(FourCC("aher")) +ABILITY_BF_ITEM_ABILITY = ConvertAbilityBooleanField(FourCC("aite")) +ABILITY_BF_CHECK_DEPENDENCIES = ConvertAbilityBooleanField(FourCC("achd")) +ABILITY_RF_ARF_MISSILE_ARC = ConvertAbilityRealField(FourCC("amac")) +ABILITY_SF_NAME = ConvertAbilityStringField(FourCC("anam")) +ABILITY_SF_ICON_ACTIVATED = ConvertAbilityStringField(FourCC("auar")) +ABILITY_SF_ICON_RESEARCH = ConvertAbilityStringField(FourCC("arar")) +ABILITY_SF_EFFECT_SOUND = ConvertAbilityStringField(FourCC("aefs")) +ABILITY_SF_EFFECT_SOUND_LOOPING = ConvertAbilityStringField(FourCC("aefl")) +ABILITY_ILF_MANA_COST = ConvertAbilityIntegerLevelField(FourCC("amcs")) +ABILITY_ILF_NUMBER_OF_WAVES = ConvertAbilityIntegerLevelField(FourCC("Hbz1")) +ABILITY_ILF_NUMBER_OF_SHARDS = ConvertAbilityIntegerLevelField(FourCC("Hbz3")) +ABILITY_ILF_NUMBER_OF_UNITS_TELEPORTED = ConvertAbilityIntegerLevelField(FourCC("Hmt1")) +ABILITY_ILF_SUMMONED_UNIT_COUNT_HWE2 = ConvertAbilityIntegerLevelField(FourCC("Hwe2")) +ABILITY_ILF_NUMBER_OF_IMAGES = ConvertAbilityIntegerLevelField(FourCC("Omi1")) +ABILITY_ILF_NUMBER_OF_CORPSES_RAISED_UAN1 = ConvertAbilityIntegerLevelField(FourCC("Uan1")) +ABILITY_ILF_MORPHING_FLAGS = ConvertAbilityIntegerLevelField(FourCC("Eme2")) +ABILITY_ILF_STRENGTH_BONUS_NRG5 = ConvertAbilityIntegerLevelField(FourCC("Nrg5")) +ABILITY_ILF_DEFENSE_BONUS_NRG6 = ConvertAbilityIntegerLevelField(FourCC("Nrg6")) +ABILITY_ILF_NUMBER_OF_TARGETS_HIT = ConvertAbilityIntegerLevelField(FourCC("Ocl2")) +ABILITY_ILF_DETECTION_TYPE_OFS1 = ConvertAbilityIntegerLevelField(FourCC("Ofs1")) +ABILITY_ILF_NUMBER_OF_SUMMONED_UNITS_OSF2 = ConvertAbilityIntegerLevelField(FourCC("Osf2")) +ABILITY_ILF_NUMBER_OF_SUMMONED_UNITS_EFN1 = ConvertAbilityIntegerLevelField(FourCC("Efn1")) +ABILITY_ILF_NUMBER_OF_CORPSES_RAISED_HRE1 = ConvertAbilityIntegerLevelField(FourCC("Hre1")) +ABILITY_ILF_STACK_FLAGS = ConvertAbilityIntegerLevelField(FourCC("Hca4")) +ABILITY_ILF_MINIMUM_NUMBER_OF_UNITS = ConvertAbilityIntegerLevelField(FourCC("Ndp2")) +ABILITY_ILF_MAXIMUM_NUMBER_OF_UNITS_NDP3 = ConvertAbilityIntegerLevelField(FourCC("Ndp3")) +ABILITY_ILF_NUMBER_OF_UNITS_CREATED_NRC2 = ConvertAbilityIntegerLevelField(FourCC("Nrc2")) +ABILITY_ILF_SHIELD_LIFE = ConvertAbilityIntegerLevelField(FourCC("Ams3")) +ABILITY_ILF_MANA_LOSS_AMS4 = ConvertAbilityIntegerLevelField(FourCC("Ams4")) +ABILITY_ILF_GOLD_PER_INTERVAL_BGM1 = ConvertAbilityIntegerLevelField(FourCC("Bgm1")) +ABILITY_ILF_MAX_NUMBER_OF_MINERS = ConvertAbilityIntegerLevelField(FourCC("Bgm3")) +ABILITY_ILF_CARGO_CAPACITY = ConvertAbilityIntegerLevelField(FourCC("Car1")) +ABILITY_ILF_MAXIMUM_CREEP_LEVEL_DEV3 = ConvertAbilityIntegerLevelField(FourCC("Dev3")) +ABILITY_ILF_MAX_CREEP_LEVEL_DEV1 = ConvertAbilityIntegerLevelField(FourCC("Dev1")) +ABILITY_ILF_GOLD_PER_INTERVAL_EGM1 = ConvertAbilityIntegerLevelField(FourCC("Egm1")) +ABILITY_ILF_DEFENSE_REDUCTION = ConvertAbilityIntegerLevelField(FourCC("Fae1")) +ABILITY_ILF_DETECTION_TYPE_FLA1 = ConvertAbilityIntegerLevelField(FourCC("Fla1")) +ABILITY_ILF_FLARE_COUNT = ConvertAbilityIntegerLevelField(FourCC("Fla3")) +ABILITY_ILF_MAX_GOLD = ConvertAbilityIntegerLevelField(FourCC("Gld1")) +ABILITY_ILF_MINING_CAPACITY = ConvertAbilityIntegerLevelField(FourCC("Gld3")) +ABILITY_ILF_MAXIMUM_NUMBER_OF_CORPSES_GYD1 = ConvertAbilityIntegerLevelField(FourCC("Gyd1")) +ABILITY_ILF_DAMAGE_TO_TREE = ConvertAbilityIntegerLevelField(FourCC("Har1")) +ABILITY_ILF_LUMBER_CAPACITY = ConvertAbilityIntegerLevelField(FourCC("Har2")) +ABILITY_ILF_GOLD_CAPACITY = ConvertAbilityIntegerLevelField(FourCC("Har3")) +ABILITY_ILF_DEFENSE_INCREASE_INF2 = ConvertAbilityIntegerLevelField(FourCC("Inf2")) +ABILITY_ILF_INTERACTION_TYPE = ConvertAbilityIntegerLevelField(FourCC("Neu2")) +ABILITY_ILF_GOLD_COST_NDT1 = ConvertAbilityIntegerLevelField(FourCC("Ndt1")) +ABILITY_ILF_LUMBER_COST_NDT2 = ConvertAbilityIntegerLevelField(FourCC("Ndt2")) +ABILITY_ILF_DETECTION_TYPE_NDT3 = ConvertAbilityIntegerLevelField(FourCC("Ndt3")) +ABILITY_ILF_STACKING_TYPE_POI4 = ConvertAbilityIntegerLevelField(FourCC("Poi4")) +ABILITY_ILF_STACKING_TYPE_POA5 = ConvertAbilityIntegerLevelField(FourCC("Poa5")) +ABILITY_ILF_MAXIMUM_CREEP_LEVEL_PLY1 = ConvertAbilityIntegerLevelField(FourCC("Ply1")) +ABILITY_ILF_MAXIMUM_CREEP_LEVEL_POS1 = ConvertAbilityIntegerLevelField(FourCC("Pos1")) +ABILITY_ILF_MOVEMENT_UPDATE_FREQUENCY_PRG1 = ConvertAbilityIntegerLevelField(FourCC("Prg1")) +ABILITY_ILF_ATTACK_UPDATE_FREQUENCY_PRG2 = ConvertAbilityIntegerLevelField(FourCC("Prg2")) +ABILITY_ILF_MANA_LOSS_PRG6 = ConvertAbilityIntegerLevelField(FourCC("Prg6")) +ABILITY_ILF_UNITS_SUMMONED_TYPE_ONE = ConvertAbilityIntegerLevelField(FourCC("Rai1")) +ABILITY_ILF_UNITS_SUMMONED_TYPE_TWO = ConvertAbilityIntegerLevelField(FourCC("Rai2")) +ABILITY_ILF_MAX_UNITS_SUMMONED = ConvertAbilityIntegerLevelField(FourCC("Ucb5")) +ABILITY_ILF_ALLOW_WHEN_FULL_REJ3 = ConvertAbilityIntegerLevelField(FourCC("Rej3")) +ABILITY_ILF_MAXIMUM_UNITS_CHARGED_TO_CASTER = ConvertAbilityIntegerLevelField(FourCC("Rpb5")) +ABILITY_ILF_MAXIMUM_UNITS_AFFECTED = ConvertAbilityIntegerLevelField(FourCC("Rpb6")) +ABILITY_ILF_DEFENSE_INCREASE_ROA2 = ConvertAbilityIntegerLevelField(FourCC("Roa2")) +ABILITY_ILF_MAX_UNITS_ROA7 = ConvertAbilityIntegerLevelField(FourCC("Roa7")) +ABILITY_ILF_ROOTED_WEAPONS = ConvertAbilityIntegerLevelField(FourCC("Roo1")) +ABILITY_ILF_UPROOTED_WEAPONS = ConvertAbilityIntegerLevelField(FourCC("Roo2")) +ABILITY_ILF_UPROOTED_DEFENSE_TYPE = ConvertAbilityIntegerLevelField(FourCC("Roo4")) +ABILITY_ILF_ACCUMULATION_STEP = ConvertAbilityIntegerLevelField(FourCC("Sal2")) +ABILITY_ILF_NUMBER_OF_OWLS = ConvertAbilityIntegerLevelField(FourCC("Esn4")) +ABILITY_ILF_STACKING_TYPE_SPO4 = ConvertAbilityIntegerLevelField(FourCC("Spo4")) +ABILITY_ILF_NUMBER_OF_UNITS = ConvertAbilityIntegerLevelField(FourCC("Sod1")) +ABILITY_ILF_SPIDER_CAPACITY = ConvertAbilityIntegerLevelField(FourCC("Spa1")) +ABILITY_ILF_INTERVALS_BEFORE_CHANGING_TREES = ConvertAbilityIntegerLevelField(FourCC("Wha2")) +ABILITY_ILF_AGILITY_BONUS = ConvertAbilityIntegerLevelField(FourCC("Iagi")) +ABILITY_ILF_INTELLIGENCE_BONUS = ConvertAbilityIntegerLevelField(FourCC("Iint")) +ABILITY_ILF_STRENGTH_BONUS_ISTR = ConvertAbilityIntegerLevelField(FourCC("Istr")) +ABILITY_ILF_ATTACK_BONUS = ConvertAbilityIntegerLevelField(FourCC("Iatt")) +ABILITY_ILF_DEFENSE_BONUS_IDEF = ConvertAbilityIntegerLevelField(FourCC("Idef")) +ABILITY_ILF_SUMMON_1_AMOUNT = ConvertAbilityIntegerLevelField(FourCC("Isn1")) +ABILITY_ILF_SUMMON_2_AMOUNT = ConvertAbilityIntegerLevelField(FourCC("Isn2")) +ABILITY_ILF_EXPERIENCE_GAINED = ConvertAbilityIntegerLevelField(FourCC("Ixpg")) +ABILITY_ILF_HIT_POINTS_GAINED_IHPG = ConvertAbilityIntegerLevelField(FourCC("Ihpg")) +ABILITY_ILF_MANA_POINTS_GAINED_IMPG = ConvertAbilityIntegerLevelField(FourCC("Impg")) +ABILITY_ILF_HIT_POINTS_GAINED_IHP2 = ConvertAbilityIntegerLevelField(FourCC("Ihp2")) +ABILITY_ILF_MANA_POINTS_GAINED_IMP2 = ConvertAbilityIntegerLevelField(FourCC("Imp2")) +ABILITY_ILF_DAMAGE_BONUS_DICE = ConvertAbilityIntegerLevelField(FourCC("Idic")) +ABILITY_ILF_ARMOR_PENALTY_IARP = ConvertAbilityIntegerLevelField(FourCC("Iarp")) +ABILITY_ILF_ENABLED_ATTACK_INDEX_IOB5 = ConvertAbilityIntegerLevelField(FourCC("Iob5")) +ABILITY_ILF_LEVELS_GAINED = ConvertAbilityIntegerLevelField(FourCC("Ilev")) +ABILITY_ILF_MAX_LIFE_GAINED = ConvertAbilityIntegerLevelField(FourCC("Ilif")) +ABILITY_ILF_MAX_MANA_GAINED = ConvertAbilityIntegerLevelField(FourCC("Iman")) +ABILITY_ILF_GOLD_GIVEN = ConvertAbilityIntegerLevelField(FourCC("Igol")) +ABILITY_ILF_LUMBER_GIVEN = ConvertAbilityIntegerLevelField(FourCC("Ilum")) +ABILITY_ILF_DETECTION_TYPE_IFA1 = ConvertAbilityIntegerLevelField(FourCC("Ifa1")) +ABILITY_ILF_MAXIMUM_CREEP_LEVEL_ICRE = ConvertAbilityIntegerLevelField(FourCC("Icre")) +ABILITY_ILF_MOVEMENT_SPEED_BONUS = ConvertAbilityIntegerLevelField(FourCC("Imvb")) +ABILITY_ILF_HIT_POINTS_REGENERATED_PER_SECOND = ConvertAbilityIntegerLevelField(FourCC("Ihpr")) +ABILITY_ILF_SIGHT_RANGE_BONUS = ConvertAbilityIntegerLevelField(FourCC("Isib")) +ABILITY_ILF_DAMAGE_PER_DURATION = ConvertAbilityIntegerLevelField(FourCC("Icfd")) +ABILITY_ILF_MANA_USED_PER_SECOND = ConvertAbilityIntegerLevelField(FourCC("Icfm")) +ABILITY_ILF_EXTRA_MANA_REQUIRED = ConvertAbilityIntegerLevelField(FourCC("Icfx")) +ABILITY_ILF_DETECTION_RADIUS_IDET = ConvertAbilityIntegerLevelField(FourCC("Idet")) +ABILITY_ILF_MANA_LOSS_PER_UNIT_IDIM = ConvertAbilityIntegerLevelField(FourCC("Idim")) +ABILITY_ILF_DAMAGE_TO_SUMMONED_UNITS_IDID = ConvertAbilityIntegerLevelField(FourCC("Idid")) +ABILITY_ILF_MAXIMUM_NUMBER_OF_UNITS_IREC = ConvertAbilityIntegerLevelField(FourCC("Irec")) +ABILITY_ILF_DELAY_AFTER_DEATH_SECONDS = ConvertAbilityIntegerLevelField(FourCC("Ircd")) +ABILITY_ILF_RESTORED_LIFE = ConvertAbilityIntegerLevelField(FourCC("irc2")) +ABILITY_ILF_RESTORED_MANA__1_FOR_CURRENT = ConvertAbilityIntegerLevelField(FourCC("irc3")) +ABILITY_ILF_HIT_POINTS_RESTORED = ConvertAbilityIntegerLevelField(FourCC("Ihps")) +ABILITY_ILF_MANA_POINTS_RESTORED = ConvertAbilityIntegerLevelField(FourCC("Imps")) +ABILITY_ILF_MAXIMUM_NUMBER_OF_UNITS_ITPM = ConvertAbilityIntegerLevelField(FourCC("Itpm")) +ABILITY_ILF_NUMBER_OF_CORPSES_RAISED_CAD1 = ConvertAbilityIntegerLevelField(FourCC("Cad1")) +ABILITY_ILF_TERRAIN_DEFORMATION_DURATION_MS = ConvertAbilityIntegerLevelField(FourCC("Wrs3")) +ABILITY_ILF_MAXIMUM_UNITS = ConvertAbilityIntegerLevelField(FourCC("Uds1")) +ABILITY_ILF_DETECTION_TYPE_DET1 = ConvertAbilityIntegerLevelField(FourCC("Det1")) +ABILITY_ILF_GOLD_COST_PER_STRUCTURE = ConvertAbilityIntegerLevelField(FourCC("Nsp1")) +ABILITY_ILF_LUMBER_COST_PER_USE = ConvertAbilityIntegerLevelField(FourCC("Nsp2")) +ABILITY_ILF_DETECTION_TYPE_NSP3 = ConvertAbilityIntegerLevelField(FourCC("Nsp3")) +ABILITY_ILF_NUMBER_OF_SWARM_UNITS = ConvertAbilityIntegerLevelField(FourCC("Uls1")) +ABILITY_ILF_MAX_SWARM_UNITS_PER_TARGET = ConvertAbilityIntegerLevelField(FourCC("Uls3")) +ABILITY_ILF_NUMBER_OF_SUMMONED_UNITS_NBA2 = ConvertAbilityIntegerLevelField(FourCC("Nba2")) +ABILITY_ILF_MAXIMUM_CREEP_LEVEL_NCH1 = ConvertAbilityIntegerLevelField(FourCC("Nch1")) +ABILITY_ILF_ATTACKS_PREVENTED = ConvertAbilityIntegerLevelField(FourCC("Nsi1")) +ABILITY_ILF_MAXIMUM_NUMBER_OF_TARGETS_EFK3 = ConvertAbilityIntegerLevelField(FourCC("Efk3")) +ABILITY_ILF_NUMBER_OF_SUMMONED_UNITS_ESV1 = ConvertAbilityIntegerLevelField(FourCC("Esv1")) +ABILITY_ILF_MAXIMUM_NUMBER_OF_CORPSES_EXH1 = ConvertAbilityIntegerLevelField(FourCC("exh1")) +ABILITY_ILF_ITEM_CAPACITY = ConvertAbilityIntegerLevelField(FourCC("inv1")) +ABILITY_ILF_MAXIMUM_NUMBER_OF_TARGETS_SPL2 = ConvertAbilityIntegerLevelField(FourCC("spl2")) +ABILITY_ILF_ALLOW_WHEN_FULL_IRL3 = ConvertAbilityIntegerLevelField(FourCC("irl3")) +ABILITY_ILF_MAXIMUM_DISPELLED_UNITS = ConvertAbilityIntegerLevelField(FourCC("idc3")) +ABILITY_ILF_NUMBER_OF_LURES = ConvertAbilityIntegerLevelField(FourCC("imo1")) +ABILITY_ILF_NEW_TIME_OF_DAY_HOUR = ConvertAbilityIntegerLevelField(FourCC("ict1")) +ABILITY_ILF_NEW_TIME_OF_DAY_MINUTE = ConvertAbilityIntegerLevelField(FourCC("ict2")) +ABILITY_ILF_NUMBER_OF_UNITS_CREATED_MEC1 = ConvertAbilityIntegerLevelField(FourCC("mec1")) +ABILITY_ILF_MINIMUM_SPELLS = ConvertAbilityIntegerLevelField(FourCC("spb3")) +ABILITY_ILF_MAXIMUM_SPELLS = ConvertAbilityIntegerLevelField(FourCC("spb4")) +ABILITY_ILF_DISABLED_ATTACK_INDEX = ConvertAbilityIntegerLevelField(FourCC("gra3")) +ABILITY_ILF_ENABLED_ATTACK_INDEX_GRA4 = ConvertAbilityIntegerLevelField(FourCC("gra4")) +ABILITY_ILF_MAXIMUM_ATTACKS = ConvertAbilityIntegerLevelField(FourCC("gra5")) +ABILITY_ILF_BUILDING_TYPES_ALLOWED_NPR1 = ConvertAbilityIntegerLevelField(FourCC("Npr1")) +ABILITY_ILF_BUILDING_TYPES_ALLOWED_NSA1 = ConvertAbilityIntegerLevelField(FourCC("Nsa1")) +ABILITY_ILF_ATTACK_MODIFICATION = ConvertAbilityIntegerLevelField(FourCC("Iaa1")) +ABILITY_ILF_SUMMONED_UNIT_COUNT_NPA5 = ConvertAbilityIntegerLevelField(FourCC("Npa5")) +ABILITY_ILF_UPGRADE_LEVELS = ConvertAbilityIntegerLevelField(FourCC("Igl1")) +ABILITY_ILF_NUMBER_OF_SUMMONED_UNITS_NDO2 = ConvertAbilityIntegerLevelField(FourCC("Ndo2")) +ABILITY_ILF_BEASTS_PER_SECOND = ConvertAbilityIntegerLevelField(FourCC("Nst1")) +ABILITY_ILF_TARGET_TYPE = ConvertAbilityIntegerLevelField(FourCC("Ncl2")) +ABILITY_ILF_OPTIONS = ConvertAbilityIntegerLevelField(FourCC("Ncl3")) +ABILITY_ILF_ARMOR_PENALTY_NAB3 = ConvertAbilityIntegerLevelField(FourCC("Nab3")) +ABILITY_ILF_WAVE_COUNT_NHS6 = ConvertAbilityIntegerLevelField(FourCC("Nhs6")) +ABILITY_ILF_MAX_CREEP_LEVEL_NTM3 = ConvertAbilityIntegerLevelField(FourCC("Ntm3")) +ABILITY_ILF_MISSILE_COUNT = ConvertAbilityIntegerLevelField(FourCC("Ncs3")) +ABILITY_ILF_SPLIT_ATTACK_COUNT = ConvertAbilityIntegerLevelField(FourCC("Nlm3")) +ABILITY_ILF_GENERATION_COUNT = ConvertAbilityIntegerLevelField(FourCC("Nlm6")) +ABILITY_ILF_ROCK_RING_COUNT = ConvertAbilityIntegerLevelField(FourCC("Nvc1")) +ABILITY_ILF_WAVE_COUNT_NVC2 = ConvertAbilityIntegerLevelField(FourCC("Nvc2")) +ABILITY_ILF_PREFER_HOSTILES_TAU1 = ConvertAbilityIntegerLevelField(FourCC("Tau1")) +ABILITY_ILF_PREFER_FRIENDLIES_TAU2 = ConvertAbilityIntegerLevelField(FourCC("Tau2")) +ABILITY_ILF_MAX_UNITS_TAU3 = ConvertAbilityIntegerLevelField(FourCC("Tau3")) +ABILITY_ILF_NUMBER_OF_PULSES = ConvertAbilityIntegerLevelField(FourCC("Tau4")) +ABILITY_ILF_SUMMONED_UNIT_TYPE_HWE1 = ConvertAbilityIntegerLevelField(FourCC("Hwe1")) +ABILITY_ILF_SUMMONED_UNIT_UIN4 = ConvertAbilityIntegerLevelField(FourCC("Uin4")) +ABILITY_ILF_SUMMONED_UNIT_OSF1 = ConvertAbilityIntegerLevelField(FourCC("Osf1")) +ABILITY_ILF_SUMMONED_UNIT_TYPE_EFNU = ConvertAbilityIntegerLevelField(FourCC("Efnu")) +ABILITY_ILF_SUMMONED_UNIT_TYPE_NBAU = ConvertAbilityIntegerLevelField(FourCC("Nbau")) +ABILITY_ILF_SUMMONED_UNIT_TYPE_NTOU = ConvertAbilityIntegerLevelField(FourCC("Ntou")) +ABILITY_ILF_SUMMONED_UNIT_TYPE_ESVU = ConvertAbilityIntegerLevelField(FourCC("Esvu")) +ABILITY_ILF_SUMMONED_UNIT_TYPES = ConvertAbilityIntegerLevelField(FourCC("Nef1")) +ABILITY_ILF_SUMMONED_UNIT_TYPE_NDOU = ConvertAbilityIntegerLevelField(FourCC("Ndou")) +ABILITY_ILF_ALTERNATE_FORM_UNIT_EMEU = ConvertAbilityIntegerLevelField(FourCC("Emeu")) +ABILITY_ILF_PLAGUE_WARD_UNIT_TYPE = ConvertAbilityIntegerLevelField(FourCC("Aplu")) +ABILITY_ILF_ALLOWED_UNIT_TYPE_BTL1 = ConvertAbilityIntegerLevelField(FourCC("Btl1")) +ABILITY_ILF_NEW_UNIT_TYPE = ConvertAbilityIntegerLevelField(FourCC("Cha1")) +ABILITY_ILF_RESULTING_UNIT_TYPE_ENT1 = ConvertAbilityIntegerLevelField(FourCC("ent1")) +ABILITY_ILF_CORPSE_UNIT_TYPE = ConvertAbilityIntegerLevelField(FourCC("Gydu")) +ABILITY_ILF_ALLOWED_UNIT_TYPE_LOA1 = ConvertAbilityIntegerLevelField(FourCC("Loa1")) +ABILITY_ILF_UNIT_TYPE_FOR_LIMIT_CHECK = ConvertAbilityIntegerLevelField(FourCC("Raiu")) +ABILITY_ILF_WARD_UNIT_TYPE_STAU = ConvertAbilityIntegerLevelField(FourCC("Stau")) +ABILITY_ILF_EFFECT_ABILITY = ConvertAbilityIntegerLevelField(FourCC("Iobu")) +ABILITY_ILF_CONVERSION_UNIT = ConvertAbilityIntegerLevelField(FourCC("Ndc2")) +ABILITY_ILF_UNIT_TO_PRESERVE = ConvertAbilityIntegerLevelField(FourCC("Nsl1")) +ABILITY_ILF_UNIT_TYPE_ALLOWED = ConvertAbilityIntegerLevelField(FourCC("Chl1")) +ABILITY_ILF_SWARM_UNIT_TYPE = ConvertAbilityIntegerLevelField(FourCC("Ulsu")) +ABILITY_ILF_RESULTING_UNIT_TYPE_COAU = ConvertAbilityIntegerLevelField(FourCC("coau")) +ABILITY_ILF_UNIT_TYPE_EXHU = ConvertAbilityIntegerLevelField(FourCC("exhu")) +ABILITY_ILF_WARD_UNIT_TYPE_HWDU = ConvertAbilityIntegerLevelField(FourCC("hwdu")) +ABILITY_ILF_LURE_UNIT_TYPE = ConvertAbilityIntegerLevelField(FourCC("imou")) +ABILITY_ILF_UNIT_TYPE_IPMU = ConvertAbilityIntegerLevelField(FourCC("ipmu")) +ABILITY_ILF_FACTORY_UNIT_ID = ConvertAbilityIntegerLevelField(FourCC("Nsyu")) +ABILITY_ILF_SPAWN_UNIT_ID_NFYU = ConvertAbilityIntegerLevelField(FourCC("Nfyu")) +ABILITY_ILF_DESTRUCTIBLE_ID = ConvertAbilityIntegerLevelField(FourCC("Nvcu")) +ABILITY_ILF_UPGRADE_TYPE = ConvertAbilityIntegerLevelField(FourCC("Iglu")) +ABILITY_RLF_CASTING_TIME = ConvertAbilityRealLevelField(FourCC("acas")) +ABILITY_RLF_DURATION_NORMAL = ConvertAbilityRealLevelField(FourCC("adur")) +ABILITY_RLF_DURATION_HERO = ConvertAbilityRealLevelField(FourCC("ahdu")) +ABILITY_RLF_COOLDOWN = ConvertAbilityRealLevelField(FourCC("acdn")) +ABILITY_RLF_AREA_OF_EFFECT = ConvertAbilityRealLevelField(FourCC("aare")) +ABILITY_RLF_CAST_RANGE = ConvertAbilityRealLevelField(FourCC("aran")) +ABILITY_RLF_DAMAGE_HBZ2 = ConvertAbilityRealLevelField(FourCC("Hbz2")) +ABILITY_RLF_BUILDING_REDUCTION_HBZ4 = ConvertAbilityRealLevelField(FourCC("Hbz4")) +ABILITY_RLF_DAMAGE_PER_SECOND_HBZ5 = ConvertAbilityRealLevelField(FourCC("Hbz5")) +ABILITY_RLF_MAXIMUM_DAMAGE_PER_WAVE = ConvertAbilityRealLevelField(FourCC("Hbz6")) +ABILITY_RLF_MANA_REGENERATION_INCREASE = ConvertAbilityRealLevelField(FourCC("Hab1")) +ABILITY_RLF_CASTING_DELAY = ConvertAbilityRealLevelField(FourCC("Hmt2")) +ABILITY_RLF_DAMAGE_PER_SECOND_OWW1 = ConvertAbilityRealLevelField(FourCC("Oww1")) +ABILITY_RLF_MAGIC_DAMAGE_REDUCTION_OWW2 = ConvertAbilityRealLevelField(FourCC("Oww2")) +ABILITY_RLF_CHANCE_TO_CRITICAL_STRIKE = ConvertAbilityRealLevelField(FourCC("Ocr1")) +ABILITY_RLF_DAMAGE_MULTIPLIER_OCR2 = ConvertAbilityRealLevelField(FourCC("Ocr2")) +ABILITY_RLF_DAMAGE_BONUS_OCR3 = ConvertAbilityRealLevelField(FourCC("Ocr3")) +ABILITY_RLF_CHANCE_TO_EVADE_OCR4 = ConvertAbilityRealLevelField(FourCC("Ocr4")) +ABILITY_RLF_DAMAGE_DEALT_PERCENT_OMI2 = ConvertAbilityRealLevelField(FourCC("Omi2")) +ABILITY_RLF_DAMAGE_TAKEN_PERCENT_OMI3 = ConvertAbilityRealLevelField(FourCC("Omi3")) +ABILITY_RLF_ANIMATION_DELAY = ConvertAbilityRealLevelField(FourCC("Omi4")) +ABILITY_RLF_TRANSITION_TIME = ConvertAbilityRealLevelField(FourCC("Owk1")) +ABILITY_RLF_MOVEMENT_SPEED_INCREASE_PERCENT_OWK2 = ConvertAbilityRealLevelField(FourCC("Owk2")) +ABILITY_RLF_BACKSTAB_DAMAGE = ConvertAbilityRealLevelField(FourCC("Owk3")) +ABILITY_RLF_AMOUNT_HEALED_DAMAGED_UDC1 = ConvertAbilityRealLevelField(FourCC("Udc1")) +ABILITY_RLF_LIFE_CONVERTED_TO_MANA = ConvertAbilityRealLevelField(FourCC("Udp1")) +ABILITY_RLF_LIFE_CONVERTED_TO_LIFE = ConvertAbilityRealLevelField(FourCC("Udp2")) +ABILITY_RLF_MOVEMENT_SPEED_INCREASE_PERCENT_UAU1 = ConvertAbilityRealLevelField(FourCC("Uau1")) +ABILITY_RLF_LIFE_REGENERATION_INCREASE_PERCENT = ConvertAbilityRealLevelField(FourCC("Uau2")) +ABILITY_RLF_CHANCE_TO_EVADE_EEV1 = ConvertAbilityRealLevelField(FourCC("Eev1")) +ABILITY_RLF_DAMAGE_PER_INTERVAL = ConvertAbilityRealLevelField(FourCC("Eim1")) +ABILITY_RLF_MANA_DRAINED_PER_SECOND_EIM2 = ConvertAbilityRealLevelField(FourCC("Eim2")) +ABILITY_RLF_BUFFER_MANA_REQUIRED = ConvertAbilityRealLevelField(FourCC("Eim3")) +ABILITY_RLF_MAX_MANA_DRAINED = ConvertAbilityRealLevelField(FourCC("Emb1")) +ABILITY_RLF_BOLT_DELAY = ConvertAbilityRealLevelField(FourCC("Emb2")) +ABILITY_RLF_BOLT_LIFETIME = ConvertAbilityRealLevelField(FourCC("Emb3")) +ABILITY_RLF_ALTITUDE_ADJUSTMENT_DURATION = ConvertAbilityRealLevelField(FourCC("Eme3")) +ABILITY_RLF_LANDING_DELAY_TIME = ConvertAbilityRealLevelField(FourCC("Eme4")) +ABILITY_RLF_ALTERNATE_FORM_HIT_POINT_BONUS = ConvertAbilityRealLevelField(FourCC("Eme5")) +ABILITY_RLF_MOVE_SPEED_BONUS_INFO_PANEL_ONLY = ConvertAbilityRealLevelField(FourCC("Ncr5")) +ABILITY_RLF_ATTACK_SPEED_BONUS_INFO_PANEL_ONLY = ConvertAbilityRealLevelField(FourCC("Ncr6")) +ABILITY_RLF_LIFE_REGENERATION_RATE_PER_SECOND = ConvertAbilityRealLevelField(FourCC("ave5")) +ABILITY_RLF_STUN_DURATION_USL1 = ConvertAbilityRealLevelField(FourCC("Usl1")) +ABILITY_RLF_ATTACK_DAMAGE_STOLEN_PERCENT = ConvertAbilityRealLevelField(FourCC("Uav1")) +ABILITY_RLF_DAMAGE_UCS1 = ConvertAbilityRealLevelField(FourCC("Ucs1")) +ABILITY_RLF_MAX_DAMAGE_UCS2 = ConvertAbilityRealLevelField(FourCC("Ucs2")) +ABILITY_RLF_DISTANCE_UCS3 = ConvertAbilityRealLevelField(FourCC("Ucs3")) +ABILITY_RLF_FINAL_AREA_UCS4 = ConvertAbilityRealLevelField(FourCC("Ucs4")) +ABILITY_RLF_DAMAGE_UIN1 = ConvertAbilityRealLevelField(FourCC("Uin1")) +ABILITY_RLF_DURATION = ConvertAbilityRealLevelField(FourCC("Uin2")) +ABILITY_RLF_IMPACT_DELAY = ConvertAbilityRealLevelField(FourCC("Uin3")) +ABILITY_RLF_DAMAGE_PER_TARGET_OCL1 = ConvertAbilityRealLevelField(FourCC("Ocl1")) +ABILITY_RLF_DAMAGE_REDUCTION_PER_TARGET = ConvertAbilityRealLevelField(FourCC("Ocl3")) +ABILITY_RLF_EFFECT_DELAY_OEQ1 = ConvertAbilityRealLevelField(FourCC("Oeq1")) +ABILITY_RLF_DAMAGE_PER_SECOND_TO_BUILDINGS = ConvertAbilityRealLevelField(FourCC("Oeq2")) +ABILITY_RLF_UNITS_SLOWED_PERCENT = ConvertAbilityRealLevelField(FourCC("Oeq3")) +ABILITY_RLF_FINAL_AREA_OEQ4 = ConvertAbilityRealLevelField(FourCC("Oeq4")) +ABILITY_RLF_DAMAGE_PER_SECOND_EER1 = ConvertAbilityRealLevelField(FourCC("Eer1")) +ABILITY_RLF_DAMAGE_DEALT_TO_ATTACKERS = ConvertAbilityRealLevelField(FourCC("Eah1")) +ABILITY_RLF_LIFE_HEALED = ConvertAbilityRealLevelField(FourCC("Etq1")) +ABILITY_RLF_HEAL_INTERVAL = ConvertAbilityRealLevelField(FourCC("Etq2")) +ABILITY_RLF_BUILDING_REDUCTION_ETQ3 = ConvertAbilityRealLevelField(FourCC("Etq3")) +ABILITY_RLF_INITIAL_IMMUNITY_DURATION = ConvertAbilityRealLevelField(FourCC("Etq4")) +ABILITY_RLF_MAX_LIFE_DRAINED_PER_SECOND_PERCENT = ConvertAbilityRealLevelField(FourCC("Udd1")) +ABILITY_RLF_BUILDING_REDUCTION_UDD2 = ConvertAbilityRealLevelField(FourCC("Udd2")) +ABILITY_RLF_ARMOR_DURATION = ConvertAbilityRealLevelField(FourCC("Ufa1")) +ABILITY_RLF_ARMOR_BONUS_UFA2 = ConvertAbilityRealLevelField(FourCC("Ufa2")) +ABILITY_RLF_AREA_OF_EFFECT_DAMAGE = ConvertAbilityRealLevelField(FourCC("Ufn1")) +ABILITY_RLF_SPECIFIC_TARGET_DAMAGE_UFN2 = ConvertAbilityRealLevelField(FourCC("Ufn2")) +ABILITY_RLF_DAMAGE_BONUS_HFA1 = ConvertAbilityRealLevelField(FourCC("Hfa1")) +ABILITY_RLF_DAMAGE_DEALT_ESF1 = ConvertAbilityRealLevelField(FourCC("Esf1")) +ABILITY_RLF_DAMAGE_INTERVAL_ESF2 = ConvertAbilityRealLevelField(FourCC("Esf2")) +ABILITY_RLF_BUILDING_REDUCTION_ESF3 = ConvertAbilityRealLevelField(FourCC("Esf3")) +ABILITY_RLF_DAMAGE_BONUS_PERCENT = ConvertAbilityRealLevelField(FourCC("Ear1")) +ABILITY_RLF_DEFENSE_BONUS_HAV1 = ConvertAbilityRealLevelField(FourCC("Hav1")) +ABILITY_RLF_HIT_POINT_BONUS = ConvertAbilityRealLevelField(FourCC("Hav2")) +ABILITY_RLF_DAMAGE_BONUS_HAV3 = ConvertAbilityRealLevelField(FourCC("Hav3")) +ABILITY_RLF_MAGIC_DAMAGE_REDUCTION_HAV4 = ConvertAbilityRealLevelField(FourCC("Hav4")) +ABILITY_RLF_CHANCE_TO_BASH = ConvertAbilityRealLevelField(FourCC("Hbh1")) +ABILITY_RLF_DAMAGE_MULTIPLIER_HBH2 = ConvertAbilityRealLevelField(FourCC("Hbh2")) +ABILITY_RLF_DAMAGE_BONUS_HBH3 = ConvertAbilityRealLevelField(FourCC("Hbh3")) +ABILITY_RLF_CHANCE_TO_MISS_HBH4 = ConvertAbilityRealLevelField(FourCC("Hbh4")) +ABILITY_RLF_DAMAGE_HTB1 = ConvertAbilityRealLevelField(FourCC("Htb1")) +ABILITY_RLF_AOE_DAMAGE = ConvertAbilityRealLevelField(FourCC("Htc1")) +ABILITY_RLF_SPECIFIC_TARGET_DAMAGE_HTC2 = ConvertAbilityRealLevelField(FourCC("Htc2")) +ABILITY_RLF_MOVEMENT_SPEED_REDUCTION_PERCENT_HTC3 = ConvertAbilityRealLevelField(FourCC("Htc3")) +ABILITY_RLF_ATTACK_SPEED_REDUCTION_PERCENT_HTC4 = ConvertAbilityRealLevelField(FourCC("Htc4")) +ABILITY_RLF_ARMOR_BONUS_HAD1 = ConvertAbilityRealLevelField(FourCC("Had1")) +ABILITY_RLF_AMOUNT_HEALED_DAMAGED_HHB1 = ConvertAbilityRealLevelField(FourCC("Hhb1")) +ABILITY_RLF_EXTRA_DAMAGE_HCA1 = ConvertAbilityRealLevelField(FourCC("Hca1")) +ABILITY_RLF_MOVEMENT_SPEED_FACTOR_HCA2 = ConvertAbilityRealLevelField(FourCC("Hca2")) +ABILITY_RLF_ATTACK_SPEED_FACTOR_HCA3 = ConvertAbilityRealLevelField(FourCC("Hca3")) +ABILITY_RLF_MOVEMENT_SPEED_INCREASE_PERCENT_OAE1 = ConvertAbilityRealLevelField(FourCC("Oae1")) +ABILITY_RLF_ATTACK_SPEED_INCREASE_PERCENT_OAE2 = ConvertAbilityRealLevelField(FourCC("Oae2")) +ABILITY_RLF_REINCARNATION_DELAY = ConvertAbilityRealLevelField(FourCC("Ore1")) +ABILITY_RLF_DAMAGE_OSH1 = ConvertAbilityRealLevelField(FourCC("Osh1")) +ABILITY_RLF_MAXIMUM_DAMAGE_OSH2 = ConvertAbilityRealLevelField(FourCC("Osh2")) +ABILITY_RLF_DISTANCE_OSH3 = ConvertAbilityRealLevelField(FourCC("Osh3")) +ABILITY_RLF_FINAL_AREA_OSH4 = ConvertAbilityRealLevelField(FourCC("Osh4")) +ABILITY_RLF_GRAPHIC_DELAY_NFD1 = ConvertAbilityRealLevelField(FourCC("Nfd1")) +ABILITY_RLF_GRAPHIC_DURATION_NFD2 = ConvertAbilityRealLevelField(FourCC("Nfd2")) +ABILITY_RLF_DAMAGE_NFD3 = ConvertAbilityRealLevelField(FourCC("Nfd3")) +ABILITY_RLF_SUMMONED_UNIT_DAMAGE_AMS1 = ConvertAbilityRealLevelField(FourCC("Ams1")) +ABILITY_RLF_MAGIC_DAMAGE_REDUCTION_AMS2 = ConvertAbilityRealLevelField(FourCC("Ams2")) +ABILITY_RLF_AURA_DURATION = ConvertAbilityRealLevelField(FourCC("Apl1")) +ABILITY_RLF_DAMAGE_PER_SECOND_APL2 = ConvertAbilityRealLevelField(FourCC("Apl2")) +ABILITY_RLF_DURATION_OF_PLAGUE_WARD = ConvertAbilityRealLevelField(FourCC("Apl3")) +ABILITY_RLF_AMOUNT_OF_HIT_POINTS_REGENERATED = ConvertAbilityRealLevelField(FourCC("Oar1")) +ABILITY_RLF_ATTACK_DAMAGE_INCREASE_AKB1 = ConvertAbilityRealLevelField(FourCC("Akb1")) +ABILITY_RLF_MANA_LOSS_ADM1 = ConvertAbilityRealLevelField(FourCC("Adm1")) +ABILITY_RLF_SUMMONED_UNIT_DAMAGE_ADM2 = ConvertAbilityRealLevelField(FourCC("Adm2")) +ABILITY_RLF_EXPANSION_AMOUNT = ConvertAbilityRealLevelField(FourCC("Bli1")) +ABILITY_RLF_INTERVAL_DURATION_BGM2 = ConvertAbilityRealLevelField(FourCC("Bgm2")) +ABILITY_RLF_RADIUS_OF_MINING_RING = ConvertAbilityRealLevelField(FourCC("Bgm4")) +ABILITY_RLF_ATTACK_SPEED_INCREASE_PERCENT_BLO1 = ConvertAbilityRealLevelField(FourCC("Blo1")) +ABILITY_RLF_MOVEMENT_SPEED_INCREASE_PERCENT_BLO2 = ConvertAbilityRealLevelField(FourCC("Blo2")) +ABILITY_RLF_SCALING_FACTOR = ConvertAbilityRealLevelField(FourCC("Blo3")) +ABILITY_RLF_HIT_POINTS_PER_SECOND_CAN1 = ConvertAbilityRealLevelField(FourCC("Can1")) +ABILITY_RLF_MAX_HIT_POINTS = ConvertAbilityRealLevelField(FourCC("Can2")) +ABILITY_RLF_DAMAGE_PER_SECOND_DEV2 = ConvertAbilityRealLevelField(FourCC("Dev2")) +ABILITY_RLF_MOVEMENT_UPDATE_FREQUENCY_CHD1 = ConvertAbilityRealLevelField(FourCC("Chd1")) +ABILITY_RLF_ATTACK_UPDATE_FREQUENCY_CHD2 = ConvertAbilityRealLevelField(FourCC("Chd2")) +ABILITY_RLF_SUMMONED_UNIT_DAMAGE_CHD3 = ConvertAbilityRealLevelField(FourCC("Chd3")) +ABILITY_RLF_MOVEMENT_SPEED_REDUCTION_PERCENT_CRI1 = ConvertAbilityRealLevelField(FourCC("Cri1")) +ABILITY_RLF_ATTACK_SPEED_REDUCTION_PERCENT_CRI2 = ConvertAbilityRealLevelField(FourCC("Cri2")) +ABILITY_RLF_DAMAGE_REDUCTION_CRI3 = ConvertAbilityRealLevelField(FourCC("Cri3")) +ABILITY_RLF_CHANCE_TO_MISS_CRS = ConvertAbilityRealLevelField(FourCC("Crs1")) +ABILITY_RLF_FULL_DAMAGE_RADIUS_DDA1 = ConvertAbilityRealLevelField(FourCC("Dda1")) +ABILITY_RLF_FULL_DAMAGE_AMOUNT_DDA2 = ConvertAbilityRealLevelField(FourCC("Dda2")) +ABILITY_RLF_PARTIAL_DAMAGE_RADIUS = ConvertAbilityRealLevelField(FourCC("Dda3")) +ABILITY_RLF_PARTIAL_DAMAGE_AMOUNT = ConvertAbilityRealLevelField(FourCC("Dda4")) +ABILITY_RLF_BUILDING_DAMAGE_FACTOR_SDS1 = ConvertAbilityRealLevelField(FourCC("Sds1")) +ABILITY_RLF_MAX_DAMAGE_UCO5 = ConvertAbilityRealLevelField(FourCC("Uco5")) +ABILITY_RLF_MOVE_SPEED_BONUS_UCO6 = ConvertAbilityRealLevelField(FourCC("Uco6")) +ABILITY_RLF_DAMAGE_TAKEN_PERCENT_DEF1 = ConvertAbilityRealLevelField(FourCC("Def1")) +ABILITY_RLF_DAMAGE_DEALT_PERCENT_DEF2 = ConvertAbilityRealLevelField(FourCC("Def2")) +ABILITY_RLF_MOVEMENT_SPEED_FACTOR_DEF3 = ConvertAbilityRealLevelField(FourCC("Def3")) +ABILITY_RLF_ATTACK_SPEED_FACTOR_DEF4 = ConvertAbilityRealLevelField(FourCC("Def4")) +ABILITY_RLF_MAGIC_DAMAGE_REDUCTION_DEF5 = ConvertAbilityRealLevelField(FourCC("Def5")) +ABILITY_RLF_CHANCE_TO_DEFLECT = ConvertAbilityRealLevelField(FourCC("Def6")) +ABILITY_RLF_DEFLECT_DAMAGE_TAKEN_PIERCING = ConvertAbilityRealLevelField(FourCC("Def7")) +ABILITY_RLF_DEFLECT_DAMAGE_TAKEN_SPELLS = ConvertAbilityRealLevelField(FourCC("Def8")) +ABILITY_RLF_RIP_DELAY = ConvertAbilityRealLevelField(FourCC("Eat1")) +ABILITY_RLF_EAT_DELAY = ConvertAbilityRealLevelField(FourCC("Eat2")) +ABILITY_RLF_HIT_POINTS_GAINED_EAT3 = ConvertAbilityRealLevelField(FourCC("Eat3")) +ABILITY_RLF_AIR_UNIT_LOWER_DURATION = ConvertAbilityRealLevelField(FourCC("Ens1")) +ABILITY_RLF_AIR_UNIT_HEIGHT = ConvertAbilityRealLevelField(FourCC("Ens2")) +ABILITY_RLF_MELEE_ATTACK_RANGE = ConvertAbilityRealLevelField(FourCC("Ens3")) +ABILITY_RLF_INTERVAL_DURATION_EGM2 = ConvertAbilityRealLevelField(FourCC("Egm2")) +ABILITY_RLF_EFFECT_DELAY_FLA2 = ConvertAbilityRealLevelField(FourCC("Fla2")) +ABILITY_RLF_MINING_DURATION = ConvertAbilityRealLevelField(FourCC("Gld2")) +ABILITY_RLF_RADIUS_OF_GRAVESTONES = ConvertAbilityRealLevelField(FourCC("Gyd2")) +ABILITY_RLF_RADIUS_OF_CORPSES = ConvertAbilityRealLevelField(FourCC("Gyd3")) +ABILITY_RLF_HIT_POINTS_GAINED_HEA1 = ConvertAbilityRealLevelField(FourCC("Hea1")) +ABILITY_RLF_DAMAGE_INCREASE_PERCENT_INF1 = ConvertAbilityRealLevelField(FourCC("Inf1")) +ABILITY_RLF_AUTOCAST_RANGE = ConvertAbilityRealLevelField(FourCC("Inf3")) +ABILITY_RLF_LIFE_REGEN_RATE = ConvertAbilityRealLevelField(FourCC("Inf4")) +ABILITY_RLF_GRAPHIC_DELAY_LIT1 = ConvertAbilityRealLevelField(FourCC("Lit1")) +ABILITY_RLF_GRAPHIC_DURATION_LIT2 = ConvertAbilityRealLevelField(FourCC("Lit2")) +ABILITY_RLF_DAMAGE_PER_SECOND_LSH1 = ConvertAbilityRealLevelField(FourCC("Lsh1")) +ABILITY_RLF_MANA_GAINED = ConvertAbilityRealLevelField(FourCC("Mbt1")) +ABILITY_RLF_HIT_POINTS_GAINED_MBT2 = ConvertAbilityRealLevelField(FourCC("Mbt2")) +ABILITY_RLF_AUTOCAST_REQUIREMENT = ConvertAbilityRealLevelField(FourCC("Mbt3")) +ABILITY_RLF_WATER_HEIGHT = ConvertAbilityRealLevelField(FourCC("Mbt4")) +ABILITY_RLF_ACTIVATION_DELAY_MIN1 = ConvertAbilityRealLevelField(FourCC("Min1")) +ABILITY_RLF_INVISIBILITY_TRANSITION_TIME = ConvertAbilityRealLevelField(FourCC("Min2")) +ABILITY_RLF_ACTIVATION_RADIUS = ConvertAbilityRealLevelField(FourCC("Neu1")) +ABILITY_RLF_AMOUNT_REGENERATED = ConvertAbilityRealLevelField(FourCC("Arm1")) +ABILITY_RLF_DAMAGE_PER_SECOND_POI1 = ConvertAbilityRealLevelField(FourCC("Poi1")) +ABILITY_RLF_ATTACK_SPEED_FACTOR_POI2 = ConvertAbilityRealLevelField(FourCC("Poi2")) +ABILITY_RLF_MOVEMENT_SPEED_FACTOR_POI3 = ConvertAbilityRealLevelField(FourCC("Poi3")) +ABILITY_RLF_EXTRA_DAMAGE_POA1 = ConvertAbilityRealLevelField(FourCC("Poa1")) +ABILITY_RLF_DAMAGE_PER_SECOND_POA2 = ConvertAbilityRealLevelField(FourCC("Poa2")) +ABILITY_RLF_ATTACK_SPEED_FACTOR_POA3 = ConvertAbilityRealLevelField(FourCC("Poa3")) +ABILITY_RLF_MOVEMENT_SPEED_FACTOR_POA4 = ConvertAbilityRealLevelField(FourCC("Poa4")) +ABILITY_RLF_DAMAGE_AMPLIFICATION = ConvertAbilityRealLevelField(FourCC("Pos2")) +ABILITY_RLF_CHANCE_TO_STOMP_PERCENT = ConvertAbilityRealLevelField(FourCC("War1")) +ABILITY_RLF_DAMAGE_DEALT_WAR2 = ConvertAbilityRealLevelField(FourCC("War2")) +ABILITY_RLF_FULL_DAMAGE_RADIUS_WAR3 = ConvertAbilityRealLevelField(FourCC("War3")) +ABILITY_RLF_HALF_DAMAGE_RADIUS_WAR4 = ConvertAbilityRealLevelField(FourCC("War4")) +ABILITY_RLF_SUMMONED_UNIT_DAMAGE_PRG3 = ConvertAbilityRealLevelField(FourCC("Prg3")) +ABILITY_RLF_UNIT_PAUSE_DURATION = ConvertAbilityRealLevelField(FourCC("Prg4")) +ABILITY_RLF_HERO_PAUSE_DURATION = ConvertAbilityRealLevelField(FourCC("Prg5")) +ABILITY_RLF_HIT_POINTS_GAINED_REJ1 = ConvertAbilityRealLevelField(FourCC("Rej1")) +ABILITY_RLF_MANA_POINTS_GAINED_REJ2 = ConvertAbilityRealLevelField(FourCC("Rej2")) +ABILITY_RLF_MINIMUM_LIFE_REQUIRED = ConvertAbilityRealLevelField(FourCC("Rpb3")) +ABILITY_RLF_MINIMUM_MANA_REQUIRED = ConvertAbilityRealLevelField(FourCC("Rpb4")) +ABILITY_RLF_REPAIR_COST_RATIO = ConvertAbilityRealLevelField(FourCC("Rep1")) +ABILITY_RLF_REPAIR_TIME_RATIO = ConvertAbilityRealLevelField(FourCC("Rep2")) +ABILITY_RLF_POWERBUILD_COST = ConvertAbilityRealLevelField(FourCC("Rep3")) +ABILITY_RLF_POWERBUILD_RATE = ConvertAbilityRealLevelField(FourCC("Rep4")) +ABILITY_RLF_NAVAL_RANGE_BONUS = ConvertAbilityRealLevelField(FourCC("Rep5")) +ABILITY_RLF_DAMAGE_INCREASE_PERCENT_ROA1 = ConvertAbilityRealLevelField(FourCC("Roa1")) +ABILITY_RLF_LIFE_REGENERATION_RATE = ConvertAbilityRealLevelField(FourCC("Roa3")) +ABILITY_RLF_MANA_REGEN = ConvertAbilityRealLevelField(FourCC("Roa4")) +ABILITY_RLF_DAMAGE_INCREASE = ConvertAbilityRealLevelField(FourCC("Nbr1")) +ABILITY_RLF_SALVAGE_COST_RATIO = ConvertAbilityRealLevelField(FourCC("Sal1")) +ABILITY_RLF_IN_FLIGHT_SIGHT_RADIUS = ConvertAbilityRealLevelField(FourCC("Esn1")) +ABILITY_RLF_HOVERING_SIGHT_RADIUS = ConvertAbilityRealLevelField(FourCC("Esn2")) +ABILITY_RLF_HOVERING_HEIGHT = ConvertAbilityRealLevelField(FourCC("Esn3")) +ABILITY_RLF_DURATION_OF_OWLS = ConvertAbilityRealLevelField(FourCC("Esn5")) +ABILITY_RLF_FADE_DURATION = ConvertAbilityRealLevelField(FourCC("Shm1")) +ABILITY_RLF_DAY_NIGHT_DURATION = ConvertAbilityRealLevelField(FourCC("Shm2")) +ABILITY_RLF_ACTION_DURATION = ConvertAbilityRealLevelField(FourCC("Shm3")) +ABILITY_RLF_MOVEMENT_SPEED_FACTOR_SLO1 = ConvertAbilityRealLevelField(FourCC("Slo1")) +ABILITY_RLF_ATTACK_SPEED_FACTOR_SLO2 = ConvertAbilityRealLevelField(FourCC("Slo2")) +ABILITY_RLF_DAMAGE_PER_SECOND_SPO1 = ConvertAbilityRealLevelField(FourCC("Spo1")) +ABILITY_RLF_MOVEMENT_SPEED_FACTOR_SPO2 = ConvertAbilityRealLevelField(FourCC("Spo2")) +ABILITY_RLF_ATTACK_SPEED_FACTOR_SPO3 = ConvertAbilityRealLevelField(FourCC("Spo3")) +ABILITY_RLF_ACTIVATION_DELAY_STA1 = ConvertAbilityRealLevelField(FourCC("Sta1")) +ABILITY_RLF_DETECTION_RADIUS_STA2 = ConvertAbilityRealLevelField(FourCC("Sta2")) +ABILITY_RLF_DETONATION_RADIUS = ConvertAbilityRealLevelField(FourCC("Sta3")) +ABILITY_RLF_STUN_DURATION_STA4 = ConvertAbilityRealLevelField(FourCC("Sta4")) +ABILITY_RLF_ATTACK_SPEED_BONUS_PERCENT = ConvertAbilityRealLevelField(FourCC("Uhf1")) +ABILITY_RLF_DAMAGE_PER_SECOND_UHF2 = ConvertAbilityRealLevelField(FourCC("Uhf2")) +ABILITY_RLF_LUMBER_PER_INTERVAL = ConvertAbilityRealLevelField(FourCC("Wha1")) +ABILITY_RLF_ART_ATTACHMENT_HEIGHT = ConvertAbilityRealLevelField(FourCC("Wha3")) +ABILITY_RLF_TELEPORT_AREA_WIDTH = ConvertAbilityRealLevelField(FourCC("Wrp1")) +ABILITY_RLF_TELEPORT_AREA_HEIGHT = ConvertAbilityRealLevelField(FourCC("Wrp2")) +ABILITY_RLF_LIFE_STOLEN_PER_ATTACK = ConvertAbilityRealLevelField(FourCC("Ivam")) +ABILITY_RLF_DAMAGE_BONUS_IDAM = ConvertAbilityRealLevelField(FourCC("Idam")) +ABILITY_RLF_CHANCE_TO_HIT_UNITS_PERCENT = ConvertAbilityRealLevelField(FourCC("Iob2")) +ABILITY_RLF_CHANCE_TO_HIT_HEROS_PERCENT = ConvertAbilityRealLevelField(FourCC("Iob3")) +ABILITY_RLF_CHANCE_TO_HIT_SUMMONS_PERCENT = ConvertAbilityRealLevelField(FourCC("Iob4")) +ABILITY_RLF_DELAY_FOR_TARGET_EFFECT = ConvertAbilityRealLevelField(FourCC("Idel")) +ABILITY_RLF_DAMAGE_DEALT_PERCENT_OF_NORMAL = ConvertAbilityRealLevelField(FourCC("Iild")) +ABILITY_RLF_DAMAGE_RECEIVED_MULTIPLIER = ConvertAbilityRealLevelField(FourCC("Iilw")) +ABILITY_RLF_MANA_REGENERATION_BONUS_AS_FRACTION_OF_NORMAL = ConvertAbilityRealLevelField(FourCC("Imrp")) +ABILITY_RLF_MOVEMENT_SPEED_INCREASE_ISPI = ConvertAbilityRealLevelField(FourCC("Ispi")) +ABILITY_RLF_DAMAGE_PER_SECOND_IDPS = ConvertAbilityRealLevelField(FourCC("Idps")) +ABILITY_RLF_ATTACK_DAMAGE_INCREASE_CAC1 = ConvertAbilityRealLevelField(FourCC("Cac1")) +ABILITY_RLF_DAMAGE_PER_SECOND_COR1 = ConvertAbilityRealLevelField(FourCC("Cor1")) +ABILITY_RLF_ATTACK_SPEED_INCREASE_ISX1 = ConvertAbilityRealLevelField(FourCC("Isx1")) +ABILITY_RLF_DAMAGE_WRS1 = ConvertAbilityRealLevelField(FourCC("Wrs1")) +ABILITY_RLF_TERRAIN_DEFORMATION_AMPLITUDE = ConvertAbilityRealLevelField(FourCC("Wrs2")) +ABILITY_RLF_DAMAGE_CTC1 = ConvertAbilityRealLevelField(FourCC("Ctc1")) +ABILITY_RLF_EXTRA_DAMAGE_TO_TARGET = ConvertAbilityRealLevelField(FourCC("Ctc2")) +ABILITY_RLF_MOVEMENT_SPEED_REDUCTION_CTC3 = ConvertAbilityRealLevelField(FourCC("Ctc3")) +ABILITY_RLF_ATTACK_SPEED_REDUCTION_CTC4 = ConvertAbilityRealLevelField(FourCC("Ctc4")) +ABILITY_RLF_DAMAGE_CTB1 = ConvertAbilityRealLevelField(FourCC("Ctb1")) +ABILITY_RLF_CASTING_DELAY_SECONDS = ConvertAbilityRealLevelField(FourCC("Uds2")) +ABILITY_RLF_MANA_LOSS_PER_UNIT_DTN1 = ConvertAbilityRealLevelField(FourCC("Dtn1")) +ABILITY_RLF_DAMAGE_TO_SUMMONED_UNITS_DTN2 = ConvertAbilityRealLevelField(FourCC("Dtn2")) +ABILITY_RLF_TRANSITION_TIME_SECONDS = ConvertAbilityRealLevelField(FourCC("Ivs1")) +ABILITY_RLF_MANA_DRAINED_PER_SECOND_NMR1 = ConvertAbilityRealLevelField(FourCC("Nmr1")) +ABILITY_RLF_CHANCE_TO_REDUCE_DAMAGE_PERCENT = ConvertAbilityRealLevelField(FourCC("Ssk1")) +ABILITY_RLF_MINIMUM_DAMAGE = ConvertAbilityRealLevelField(FourCC("Ssk2")) +ABILITY_RLF_IGNORED_DAMAGE = ConvertAbilityRealLevelField(FourCC("Ssk3")) +ABILITY_RLF_FULL_DAMAGE_DEALT = ConvertAbilityRealLevelField(FourCC("Hfs1")) +ABILITY_RLF_FULL_DAMAGE_INTERVAL = ConvertAbilityRealLevelField(FourCC("Hfs2")) +ABILITY_RLF_HALF_DAMAGE_DEALT = ConvertAbilityRealLevelField(FourCC("Hfs3")) +ABILITY_RLF_HALF_DAMAGE_INTERVAL = ConvertAbilityRealLevelField(FourCC("Hfs4")) +ABILITY_RLF_BUILDING_REDUCTION_HFS5 = ConvertAbilityRealLevelField(FourCC("Hfs5")) +ABILITY_RLF_MAXIMUM_DAMAGE_HFS6 = ConvertAbilityRealLevelField(FourCC("Hfs6")) +ABILITY_RLF_MANA_PER_HIT_POINT = ConvertAbilityRealLevelField(FourCC("Nms1")) +ABILITY_RLF_DAMAGE_ABSORBED_PERCENT = ConvertAbilityRealLevelField(FourCC("Nms2")) +ABILITY_RLF_WAVE_DISTANCE = ConvertAbilityRealLevelField(FourCC("Uim1")) +ABILITY_RLF_WAVE_TIME_SECONDS = ConvertAbilityRealLevelField(FourCC("Uim2")) +ABILITY_RLF_DAMAGE_DEALT_UIM3 = ConvertAbilityRealLevelField(FourCC("Uim3")) +ABILITY_RLF_AIR_TIME_SECONDS_UIM4 = ConvertAbilityRealLevelField(FourCC("Uim4")) +ABILITY_RLF_UNIT_RELEASE_INTERVAL_SECONDS = ConvertAbilityRealLevelField(FourCC("Uls2")) +ABILITY_RLF_DAMAGE_RETURN_FACTOR = ConvertAbilityRealLevelField(FourCC("Uls4")) +ABILITY_RLF_DAMAGE_RETURN_THRESHOLD = ConvertAbilityRealLevelField(FourCC("Uls5")) +ABILITY_RLF_RETURNED_DAMAGE_FACTOR = ConvertAbilityRealLevelField(FourCC("Uts1")) +ABILITY_RLF_RECEIVED_DAMAGE_FACTOR = ConvertAbilityRealLevelField(FourCC("Uts2")) +ABILITY_RLF_DEFENSE_BONUS_UTS3 = ConvertAbilityRealLevelField(FourCC("Uts3")) +ABILITY_RLF_DAMAGE_BONUS_NBA1 = ConvertAbilityRealLevelField(FourCC("Nba1")) +ABILITY_RLF_SUMMONED_UNIT_DURATION_SECONDS_NBA3 = ConvertAbilityRealLevelField(FourCC("Nba3")) +ABILITY_RLF_MANA_PER_SUMMONED_HITPOINT = ConvertAbilityRealLevelField(FourCC("Cmg2")) +ABILITY_RLF_CHARGE_FOR_CURRENT_LIFE = ConvertAbilityRealLevelField(FourCC("Cmg3")) +ABILITY_RLF_HIT_POINTS_DRAINED = ConvertAbilityRealLevelField(FourCC("Ndr1")) +ABILITY_RLF_MANA_POINTS_DRAINED = ConvertAbilityRealLevelField(FourCC("Ndr2")) +ABILITY_RLF_DRAIN_INTERVAL_SECONDS = ConvertAbilityRealLevelField(FourCC("Ndr3")) +ABILITY_RLF_LIFE_TRANSFERRED_PER_SECOND = ConvertAbilityRealLevelField(FourCC("Ndr4")) +ABILITY_RLF_MANA_TRANSFERRED_PER_SECOND = ConvertAbilityRealLevelField(FourCC("Ndr5")) +ABILITY_RLF_BONUS_LIFE_FACTOR = ConvertAbilityRealLevelField(FourCC("Ndr6")) +ABILITY_RLF_BONUS_LIFE_DECAY = ConvertAbilityRealLevelField(FourCC("Ndr7")) +ABILITY_RLF_BONUS_MANA_FACTOR = ConvertAbilityRealLevelField(FourCC("Ndr8")) +ABILITY_RLF_BONUS_MANA_DECAY = ConvertAbilityRealLevelField(FourCC("Ndr9")) +ABILITY_RLF_CHANCE_TO_MISS_PERCENT = ConvertAbilityRealLevelField(FourCC("Nsi2")) +ABILITY_RLF_MOVEMENT_SPEED_MODIFIER = ConvertAbilityRealLevelField(FourCC("Nsi3")) +ABILITY_RLF_ATTACK_SPEED_MODIFIER = ConvertAbilityRealLevelField(FourCC("Nsi4")) +ABILITY_RLF_DAMAGE_PER_SECOND_TDG1 = ConvertAbilityRealLevelField(FourCC("Tdg1")) +ABILITY_RLF_MEDIUM_DAMAGE_RADIUS_TDG2 = ConvertAbilityRealLevelField(FourCC("Tdg2")) +ABILITY_RLF_MEDIUM_DAMAGE_PER_SECOND = ConvertAbilityRealLevelField(FourCC("Tdg3")) +ABILITY_RLF_SMALL_DAMAGE_RADIUS_TDG4 = ConvertAbilityRealLevelField(FourCC("Tdg4")) +ABILITY_RLF_SMALL_DAMAGE_PER_SECOND = ConvertAbilityRealLevelField(FourCC("Tdg5")) +ABILITY_RLF_AIR_TIME_SECONDS_TSP1 = ConvertAbilityRealLevelField(FourCC("Tsp1")) +ABILITY_RLF_MINIMUM_HIT_INTERVAL_SECONDS = ConvertAbilityRealLevelField(FourCC("Tsp2")) +ABILITY_RLF_DAMAGE_PER_SECOND_NBF5 = ConvertAbilityRealLevelField(FourCC("Nbf5")) +ABILITY_RLF_MAXIMUM_RANGE = ConvertAbilityRealLevelField(FourCC("Ebl1")) +ABILITY_RLF_MINIMUM_RANGE = ConvertAbilityRealLevelField(FourCC("Ebl2")) +ABILITY_RLF_DAMAGE_PER_TARGET_EFK1 = ConvertAbilityRealLevelField(FourCC("Efk1")) +ABILITY_RLF_MAXIMUM_TOTAL_DAMAGE = ConvertAbilityRealLevelField(FourCC("Efk2")) +ABILITY_RLF_MAXIMUM_SPEED_ADJUSTMENT = ConvertAbilityRealLevelField(FourCC("Efk4")) +ABILITY_RLF_DECAYING_DAMAGE = ConvertAbilityRealLevelField(FourCC("Esh1")) +ABILITY_RLF_MOVEMENT_SPEED_FACTOR_ESH2 = ConvertAbilityRealLevelField(FourCC("Esh2")) +ABILITY_RLF_ATTACK_SPEED_FACTOR_ESH3 = ConvertAbilityRealLevelField(FourCC("Esh3")) +ABILITY_RLF_DECAY_POWER = ConvertAbilityRealLevelField(FourCC("Esh4")) +ABILITY_RLF_INITIAL_DAMAGE_ESH5 = ConvertAbilityRealLevelField(FourCC("Esh5")) +ABILITY_RLF_MAXIMUM_LIFE_ABSORBED = ConvertAbilityRealLevelField(FourCC("abs1")) +ABILITY_RLF_MAXIMUM_MANA_ABSORBED = ConvertAbilityRealLevelField(FourCC("abs2")) +ABILITY_RLF_MOVEMENT_SPEED_INCREASE_BSK1 = ConvertAbilityRealLevelField(FourCC("bsk1")) +ABILITY_RLF_ATTACK_SPEED_INCREASE_BSK2 = ConvertAbilityRealLevelField(FourCC("bsk2")) +ABILITY_RLF_DAMAGE_TAKEN_INCREASE = ConvertAbilityRealLevelField(FourCC("bsk3")) +ABILITY_RLF_LIFE_PER_UNIT = ConvertAbilityRealLevelField(FourCC("dvm1")) +ABILITY_RLF_MANA_PER_UNIT = ConvertAbilityRealLevelField(FourCC("dvm2")) +ABILITY_RLF_LIFE_PER_BUFF = ConvertAbilityRealLevelField(FourCC("dvm3")) +ABILITY_RLF_MANA_PER_BUFF = ConvertAbilityRealLevelField(FourCC("dvm4")) +ABILITY_RLF_SUMMONED_UNIT_DAMAGE_DVM5 = ConvertAbilityRealLevelField(FourCC("dvm5")) +ABILITY_RLF_DAMAGE_BONUS_FAK1 = ConvertAbilityRealLevelField(FourCC("fak1")) +ABILITY_RLF_MEDIUM_DAMAGE_FACTOR_FAK2 = ConvertAbilityRealLevelField(FourCC("fak2")) +ABILITY_RLF_SMALL_DAMAGE_FACTOR_FAK3 = ConvertAbilityRealLevelField(FourCC("fak3")) +ABILITY_RLF_FULL_DAMAGE_RADIUS_FAK4 = ConvertAbilityRealLevelField(FourCC("fak4")) +ABILITY_RLF_HALF_DAMAGE_RADIUS_FAK5 = ConvertAbilityRealLevelField(FourCC("fak5")) +ABILITY_RLF_EXTRA_DAMAGE_PER_SECOND = ConvertAbilityRealLevelField(FourCC("liq1")) +ABILITY_RLF_MOVEMENT_SPEED_REDUCTION_LIQ2 = ConvertAbilityRealLevelField(FourCC("liq2")) +ABILITY_RLF_ATTACK_SPEED_REDUCTION_LIQ3 = ConvertAbilityRealLevelField(FourCC("liq3")) +ABILITY_RLF_MAGIC_DAMAGE_FACTOR = ConvertAbilityRealLevelField(FourCC("mim1")) +ABILITY_RLF_UNIT_DAMAGE_PER_MANA_POINT = ConvertAbilityRealLevelField(FourCC("mfl1")) +ABILITY_RLF_HERO_DAMAGE_PER_MANA_POINT = ConvertAbilityRealLevelField(FourCC("mfl2")) +ABILITY_RLF_UNIT_MAXIMUM_DAMAGE = ConvertAbilityRealLevelField(FourCC("mfl3")) +ABILITY_RLF_HERO_MAXIMUM_DAMAGE = ConvertAbilityRealLevelField(FourCC("mfl4")) +ABILITY_RLF_DAMAGE_COOLDOWN = ConvertAbilityRealLevelField(FourCC("mfl5")) +ABILITY_RLF_DISTRIBUTED_DAMAGE_FACTOR_SPL1 = ConvertAbilityRealLevelField(FourCC("spl1")) +ABILITY_RLF_LIFE_REGENERATED = ConvertAbilityRealLevelField(FourCC("irl1")) +ABILITY_RLF_MANA_REGENERATED = ConvertAbilityRealLevelField(FourCC("irl2")) +ABILITY_RLF_MANA_LOSS_PER_UNIT_IDC1 = ConvertAbilityRealLevelField(FourCC("idc1")) +ABILITY_RLF_SUMMONED_UNIT_DAMAGE_IDC2 = ConvertAbilityRealLevelField(FourCC("idc2")) +ABILITY_RLF_ACTIVATION_DELAY_IMO2 = ConvertAbilityRealLevelField(FourCC("imo2")) +ABILITY_RLF_LURE_INTERVAL_SECONDS = ConvertAbilityRealLevelField(FourCC("imo3")) +ABILITY_RLF_DAMAGE_BONUS_ISR1 = ConvertAbilityRealLevelField(FourCC("isr1")) +ABILITY_RLF_DAMAGE_REDUCTION_ISR2 = ConvertAbilityRealLevelField(FourCC("isr2")) +ABILITY_RLF_DAMAGE_BONUS_IPV1 = ConvertAbilityRealLevelField(FourCC("ipv1")) +ABILITY_RLF_LIFE_STEAL_AMOUNT = ConvertAbilityRealLevelField(FourCC("ipv2")) +ABILITY_RLF_LIFE_RESTORED_FACTOR = ConvertAbilityRealLevelField(FourCC("ast1")) +ABILITY_RLF_MANA_RESTORED_FACTOR = ConvertAbilityRealLevelField(FourCC("ast2")) +ABILITY_RLF_ATTACH_DELAY = ConvertAbilityRealLevelField(FourCC("gra1")) +ABILITY_RLF_REMOVE_DELAY = ConvertAbilityRealLevelField(FourCC("gra2")) +ABILITY_RLF_HERO_REGENERATION_DELAY = ConvertAbilityRealLevelField(FourCC("Nsa2")) +ABILITY_RLF_UNIT_REGENERATION_DELAY = ConvertAbilityRealLevelField(FourCC("Nsa3")) +ABILITY_RLF_MAGIC_DAMAGE_REDUCTION_NSA4 = ConvertAbilityRealLevelField(FourCC("Nsa4")) +ABILITY_RLF_HIT_POINTS_PER_SECOND_NSA5 = ConvertAbilityRealLevelField(FourCC("Nsa5")) +ABILITY_RLF_DAMAGE_TO_SUMMONED_UNITS_IXS1 = ConvertAbilityRealLevelField(FourCC("Ixs1")) +ABILITY_RLF_MAGIC_DAMAGE_REDUCTION_IXS2 = ConvertAbilityRealLevelField(FourCC("Ixs2")) +ABILITY_RLF_SUMMONED_UNIT_DURATION = ConvertAbilityRealLevelField(FourCC("Npa6")) +ABILITY_RLF_SHIELD_COOLDOWN_TIME = ConvertAbilityRealLevelField(FourCC("Nse1")) +ABILITY_RLF_DAMAGE_PER_SECOND_NDO1 = ConvertAbilityRealLevelField(FourCC("Ndo1")) +ABILITY_RLF_SUMMONED_UNIT_DURATION_SECONDS_NDO3 = ConvertAbilityRealLevelField(FourCC("Ndo3")) +ABILITY_RLF_MEDIUM_DAMAGE_RADIUS_FLK1 = ConvertAbilityRealLevelField(FourCC("flk1")) +ABILITY_RLF_SMALL_DAMAGE_RADIUS_FLK2 = ConvertAbilityRealLevelField(FourCC("flk2")) +ABILITY_RLF_FULL_DAMAGE_AMOUNT_FLK3 = ConvertAbilityRealLevelField(FourCC("flk3")) +ABILITY_RLF_MEDIUM_DAMAGE_AMOUNT = ConvertAbilityRealLevelField(FourCC("flk4")) +ABILITY_RLF_SMALL_DAMAGE_AMOUNT = ConvertAbilityRealLevelField(FourCC("flk5")) +ABILITY_RLF_MOVEMENT_SPEED_REDUCTION_PERCENT_HBN1 = ConvertAbilityRealLevelField(FourCC("Hbn1")) +ABILITY_RLF_ATTACK_SPEED_REDUCTION_PERCENT_HBN2 = ConvertAbilityRealLevelField(FourCC("Hbn2")) +ABILITY_RLF_MAX_MANA_DRAINED_UNITS = ConvertAbilityRealLevelField(FourCC("fbk1")) +ABILITY_RLF_DAMAGE_RATIO_UNITS_PERCENT = ConvertAbilityRealLevelField(FourCC("fbk2")) +ABILITY_RLF_MAX_MANA_DRAINED_HEROS = ConvertAbilityRealLevelField(FourCC("fbk3")) +ABILITY_RLF_DAMAGE_RATIO_HEROS_PERCENT = ConvertAbilityRealLevelField(FourCC("fbk4")) +ABILITY_RLF_SUMMONED_DAMAGE = ConvertAbilityRealLevelField(FourCC("fbk5")) +ABILITY_RLF_DISTRIBUTED_DAMAGE_FACTOR_NCA1 = ConvertAbilityRealLevelField(FourCC("nca1")) +ABILITY_RLF_INITIAL_DAMAGE_PXF1 = ConvertAbilityRealLevelField(FourCC("pxf1")) +ABILITY_RLF_DAMAGE_PER_SECOND_PXF2 = ConvertAbilityRealLevelField(FourCC("pxf2")) +ABILITY_RLF_DAMAGE_PER_SECOND_MLS1 = ConvertAbilityRealLevelField(FourCC("mls1")) +ABILITY_RLF_BEAST_COLLISION_RADIUS = ConvertAbilityRealLevelField(FourCC("Nst2")) +ABILITY_RLF_DAMAGE_AMOUNT_NST3 = ConvertAbilityRealLevelField(FourCC("Nst3")) +ABILITY_RLF_DAMAGE_RADIUS = ConvertAbilityRealLevelField(FourCC("Nst4")) +ABILITY_RLF_DAMAGE_DELAY = ConvertAbilityRealLevelField(FourCC("Nst5")) +ABILITY_RLF_FOLLOW_THROUGH_TIME = ConvertAbilityRealLevelField(FourCC("Ncl1")) +ABILITY_RLF_ART_DURATION = ConvertAbilityRealLevelField(FourCC("Ncl4")) +ABILITY_RLF_MOVEMENT_SPEED_REDUCTION_PERCENT_NAB1 = ConvertAbilityRealLevelField(FourCC("Nab1")) +ABILITY_RLF_ATTACK_SPEED_REDUCTION_PERCENT_NAB2 = ConvertAbilityRealLevelField(FourCC("Nab2")) +ABILITY_RLF_PRIMARY_DAMAGE = ConvertAbilityRealLevelField(FourCC("Nab4")) +ABILITY_RLF_SECONDARY_DAMAGE = ConvertAbilityRealLevelField(FourCC("Nab5")) +ABILITY_RLF_DAMAGE_INTERVAL_NAB6 = ConvertAbilityRealLevelField(FourCC("Nab6")) +ABILITY_RLF_GOLD_COST_FACTOR = ConvertAbilityRealLevelField(FourCC("Ntm1")) +ABILITY_RLF_LUMBER_COST_FACTOR = ConvertAbilityRealLevelField(FourCC("Ntm2")) +ABILITY_RLF_MOVE_SPEED_BONUS_NEG1 = ConvertAbilityRealLevelField(FourCC("Neg1")) +ABILITY_RLF_DAMAGE_BONUS_NEG2 = ConvertAbilityRealLevelField(FourCC("Neg2")) +ABILITY_RLF_DAMAGE_AMOUNT_NCS1 = ConvertAbilityRealLevelField(FourCC("Ncs1")) +ABILITY_RLF_DAMAGE_INTERVAL_NCS2 = ConvertAbilityRealLevelField(FourCC("Ncs2")) +ABILITY_RLF_MAX_DAMAGE_NCS4 = ConvertAbilityRealLevelField(FourCC("Ncs4")) +ABILITY_RLF_BUILDING_DAMAGE_FACTOR_NCS5 = ConvertAbilityRealLevelField(FourCC("Ncs5")) +ABILITY_RLF_EFFECT_DURATION = ConvertAbilityRealLevelField(FourCC("Ncs6")) +ABILITY_RLF_SPAWN_INTERVAL_NSY1 = ConvertAbilityRealLevelField(FourCC("Nsy1")) +ABILITY_RLF_SPAWN_UNIT_DURATION = ConvertAbilityRealLevelField(FourCC("Nsy3")) +ABILITY_RLF_SPAWN_UNIT_OFFSET = ConvertAbilityRealLevelField(FourCC("Nsy4")) +ABILITY_RLF_LEASH_RANGE_NSY5 = ConvertAbilityRealLevelField(FourCC("Nsy5")) +ABILITY_RLF_SPAWN_INTERVAL_NFY1 = ConvertAbilityRealLevelField(FourCC("Nfy1")) +ABILITY_RLF_LEASH_RANGE_NFY2 = ConvertAbilityRealLevelField(FourCC("Nfy2")) +ABILITY_RLF_CHANCE_TO_DEMOLISH = ConvertAbilityRealLevelField(FourCC("Nde1")) +ABILITY_RLF_DAMAGE_MULTIPLIER_BUILDINGS = ConvertAbilityRealLevelField(FourCC("Nde2")) +ABILITY_RLF_DAMAGE_MULTIPLIER_UNITS = ConvertAbilityRealLevelField(FourCC("Nde3")) +ABILITY_RLF_DAMAGE_MULTIPLIER_HEROES = ConvertAbilityRealLevelField(FourCC("Nde4")) +ABILITY_RLF_BONUS_DAMAGE_MULTIPLIER = ConvertAbilityRealLevelField(FourCC("Nic1")) +ABILITY_RLF_DEATH_DAMAGE_FULL_AMOUNT = ConvertAbilityRealLevelField(FourCC("Nic2")) +ABILITY_RLF_DEATH_DAMAGE_FULL_AREA = ConvertAbilityRealLevelField(FourCC("Nic3")) +ABILITY_RLF_DEATH_DAMAGE_HALF_AMOUNT = ConvertAbilityRealLevelField(FourCC("Nic4")) +ABILITY_RLF_DEATH_DAMAGE_HALF_AREA = ConvertAbilityRealLevelField(FourCC("Nic5")) +ABILITY_RLF_DEATH_DAMAGE_DELAY = ConvertAbilityRealLevelField(FourCC("Nic6")) +ABILITY_RLF_DAMAGE_AMOUNT_NSO1 = ConvertAbilityRealLevelField(FourCC("Nso1")) +ABILITY_RLF_DAMAGE_PERIOD = ConvertAbilityRealLevelField(FourCC("Nso2")) +ABILITY_RLF_DAMAGE_PENALTY = ConvertAbilityRealLevelField(FourCC("Nso3")) +ABILITY_RLF_MOVEMENT_SPEED_REDUCTION_PERCENT_NSO4 = ConvertAbilityRealLevelField(FourCC("Nso4")) +ABILITY_RLF_ATTACK_SPEED_REDUCTION_PERCENT_NSO5 = ConvertAbilityRealLevelField(FourCC("Nso5")) +ABILITY_RLF_SPLIT_DELAY = ConvertAbilityRealLevelField(FourCC("Nlm2")) +ABILITY_RLF_MAX_HITPOINT_FACTOR = ConvertAbilityRealLevelField(FourCC("Nlm4")) +ABILITY_RLF_LIFE_DURATION_SPLIT_BONUS = ConvertAbilityRealLevelField(FourCC("Nlm5")) +ABILITY_RLF_WAVE_INTERVAL = ConvertAbilityRealLevelField(FourCC("Nvc3")) +ABILITY_RLF_BUILDING_DAMAGE_FACTOR_NVC4 = ConvertAbilityRealLevelField(FourCC("Nvc4")) +ABILITY_RLF_FULL_DAMAGE_AMOUNT_NVC5 = ConvertAbilityRealLevelField(FourCC("Nvc5")) +ABILITY_RLF_HALF_DAMAGE_FACTOR = ConvertAbilityRealLevelField(FourCC("Nvc6")) +ABILITY_RLF_INTERVAL_BETWEEN_PULSES = ConvertAbilityRealLevelField(FourCC("Tau5")) +ABILITY_BLF_PERCENT_BONUS_HAB2 = ConvertAbilityBooleanLevelField(FourCC("Hab2")) +ABILITY_BLF_USE_TELEPORT_CLUSTERING_HMT3 = ConvertAbilityBooleanLevelField(FourCC("Hmt3")) +ABILITY_BLF_NEVER_MISS_OCR5 = ConvertAbilityBooleanLevelField(FourCC("Ocr5")) +ABILITY_BLF_EXCLUDE_ITEM_DAMAGE = ConvertAbilityBooleanLevelField(FourCC("Ocr6")) +ABILITY_BLF_BACKSTAB_DAMAGE = ConvertAbilityBooleanLevelField(FourCC("Owk4")) +ABILITY_BLF_INHERIT_UPGRADES_UAN3 = ConvertAbilityBooleanLevelField(FourCC("Uan3")) +ABILITY_BLF_MANA_CONVERSION_AS_PERCENT = ConvertAbilityBooleanLevelField(FourCC("Udp3")) +ABILITY_BLF_LIFE_CONVERSION_AS_PERCENT = ConvertAbilityBooleanLevelField(FourCC("Udp4")) +ABILITY_BLF_LEAVE_TARGET_ALIVE = ConvertAbilityBooleanLevelField(FourCC("Udp5")) +ABILITY_BLF_PERCENT_BONUS_UAU3 = ConvertAbilityBooleanLevelField(FourCC("Uau3")) +ABILITY_BLF_DAMAGE_IS_PERCENT_RECEIVED = ConvertAbilityBooleanLevelField(FourCC("Eah2")) +ABILITY_BLF_MELEE_BONUS = ConvertAbilityBooleanLevelField(FourCC("Ear2")) +ABILITY_BLF_RANGED_BONUS = ConvertAbilityBooleanLevelField(FourCC("Ear3")) +ABILITY_BLF_FLAT_BONUS = ConvertAbilityBooleanLevelField(FourCC("Ear4")) +ABILITY_BLF_NEVER_MISS_HBH5 = ConvertAbilityBooleanLevelField(FourCC("Hbh5")) +ABILITY_BLF_PERCENT_BONUS_HAD2 = ConvertAbilityBooleanLevelField(FourCC("Had2")) +ABILITY_BLF_CAN_DEACTIVATE = ConvertAbilityBooleanLevelField(FourCC("Hds1")) +ABILITY_BLF_RAISED_UNITS_ARE_INVULNERABLE = ConvertAbilityBooleanLevelField(FourCC("Hre2")) +ABILITY_BLF_PERCENTAGE_OAR2 = ConvertAbilityBooleanLevelField(FourCC("Oar2")) +ABILITY_BLF_SUMMON_BUSY_UNITS = ConvertAbilityBooleanLevelField(FourCC("Btl2")) +ABILITY_BLF_CREATES_BLIGHT = ConvertAbilityBooleanLevelField(FourCC("Bli2")) +ABILITY_BLF_EXPLODES_ON_DEATH = ConvertAbilityBooleanLevelField(FourCC("Sds6")) +ABILITY_BLF_ALWAYS_AUTOCAST_FAE2 = ConvertAbilityBooleanLevelField(FourCC("Fae2")) +ABILITY_BLF_REGENERATE_ONLY_AT_NIGHT = ConvertAbilityBooleanLevelField(FourCC("Mbt5")) +ABILITY_BLF_SHOW_SELECT_UNIT_BUTTON = ConvertAbilityBooleanLevelField(FourCC("Neu3")) +ABILITY_BLF_SHOW_UNIT_INDICATOR = ConvertAbilityBooleanLevelField(FourCC("Neu4")) +ABILITY_BLF_CHARGE_OWNING_PLAYER = ConvertAbilityBooleanLevelField(FourCC("Ans6")) +ABILITY_BLF_PERCENTAGE_ARM2 = ConvertAbilityBooleanLevelField(FourCC("Arm2")) +ABILITY_BLF_TARGET_IS_INVULNERABLE = ConvertAbilityBooleanLevelField(FourCC("Pos3")) +ABILITY_BLF_TARGET_IS_MAGIC_IMMUNE = ConvertAbilityBooleanLevelField(FourCC("Pos4")) +ABILITY_BLF_KILL_ON_CASTER_DEATH = ConvertAbilityBooleanLevelField(FourCC("Ucb6")) +ABILITY_BLF_NO_TARGET_REQUIRED_REJ4 = ConvertAbilityBooleanLevelField(FourCC("Rej4")) +ABILITY_BLF_ACCEPTS_GOLD = ConvertAbilityBooleanLevelField(FourCC("Rtn1")) +ABILITY_BLF_ACCEPTS_LUMBER = ConvertAbilityBooleanLevelField(FourCC("Rtn2")) +ABILITY_BLF_PREFER_HOSTILES_ROA5 = ConvertAbilityBooleanLevelField(FourCC("Roa5")) +ABILITY_BLF_PREFER_FRIENDLIES_ROA6 = ConvertAbilityBooleanLevelField(FourCC("Roa6")) +ABILITY_BLF_ROOTED_TURNING = ConvertAbilityBooleanLevelField(FourCC("Roo3")) +ABILITY_BLF_ALWAYS_AUTOCAST_SLO3 = ConvertAbilityBooleanLevelField(FourCC("Slo3")) +ABILITY_BLF_HIDE_BUTTON = ConvertAbilityBooleanLevelField(FourCC("Ihid")) +ABILITY_BLF_USE_TELEPORT_CLUSTERING_ITP2 = ConvertAbilityBooleanLevelField(FourCC("Itp2")) +ABILITY_BLF_IMMUNE_TO_MORPH_EFFECTS = ConvertAbilityBooleanLevelField(FourCC("Eth1")) +ABILITY_BLF_DOES_NOT_BLOCK_BUILDINGS = ConvertAbilityBooleanLevelField(FourCC("Eth2")) +ABILITY_BLF_AUTO_ACQUIRE_ATTACK_TARGETS = ConvertAbilityBooleanLevelField(FourCC("Gho1")) +ABILITY_BLF_IMMUNE_TO_MORPH_EFFECTS_GHO2 = ConvertAbilityBooleanLevelField(FourCC("Gho2")) +ABILITY_BLF_DO_NOT_BLOCK_BUILDINGS = ConvertAbilityBooleanLevelField(FourCC("Gho3")) +ABILITY_BLF_INCLUDE_RANGED_DAMAGE = ConvertAbilityBooleanLevelField(FourCC("Ssk4")) +ABILITY_BLF_INCLUDE_MELEE_DAMAGE = ConvertAbilityBooleanLevelField(FourCC("Ssk5")) +ABILITY_BLF_MOVE_TO_PARTNER = ConvertAbilityBooleanLevelField(FourCC("coa2")) +ABILITY_BLF_CAN_BE_DISPELLED = ConvertAbilityBooleanLevelField(FourCC("cyc1")) +ABILITY_BLF_IGNORE_FRIENDLY_BUFFS = ConvertAbilityBooleanLevelField(FourCC("dvm6")) +ABILITY_BLF_DROP_ITEMS_ON_DEATH = ConvertAbilityBooleanLevelField(FourCC("inv2")) +ABILITY_BLF_CAN_USE_ITEMS = ConvertAbilityBooleanLevelField(FourCC("inv3")) +ABILITY_BLF_CAN_GET_ITEMS = ConvertAbilityBooleanLevelField(FourCC("inv4")) +ABILITY_BLF_CAN_DROP_ITEMS = ConvertAbilityBooleanLevelField(FourCC("inv5")) +ABILITY_BLF_REPAIRS_ALLOWED = ConvertAbilityBooleanLevelField(FourCC("liq4")) +ABILITY_BLF_CASTER_ONLY_SPLASH = ConvertAbilityBooleanLevelField(FourCC("mfl6")) +ABILITY_BLF_NO_TARGET_REQUIRED_IRL4 = ConvertAbilityBooleanLevelField(FourCC("irl4")) +ABILITY_BLF_DISPEL_ON_ATTACK = ConvertAbilityBooleanLevelField(FourCC("irl5")) +ABILITY_BLF_AMOUNT_IS_RAW_VALUE = ConvertAbilityBooleanLevelField(FourCC("ipv3")) +ABILITY_BLF_SHARED_SPELL_COOLDOWN = ConvertAbilityBooleanLevelField(FourCC("spb2")) +ABILITY_BLF_SLEEP_ONCE = ConvertAbilityBooleanLevelField(FourCC("sla1")) +ABILITY_BLF_ALLOW_ON_ANY_PLAYER_SLOT = ConvertAbilityBooleanLevelField(FourCC("sla2")) +ABILITY_BLF_DISABLE_OTHER_ABILITIES = ConvertAbilityBooleanLevelField(FourCC("Ncl5")) +ABILITY_BLF_ALLOW_BOUNTY = ConvertAbilityBooleanLevelField(FourCC("Ntm4")) +ABILITY_SLF_ICON_NORMAL = ConvertAbilityStringLevelField(FourCC("aart")) +ABILITY_SLF_CASTER = ConvertAbilityStringLevelField(FourCC("acat")) +ABILITY_SLF_TARGET = ConvertAbilityStringLevelField(FourCC("atat")) +ABILITY_SLF_SPECIAL = ConvertAbilityStringLevelField(FourCC("asat")) +ABILITY_SLF_EFFECT = ConvertAbilityStringLevelField(FourCC("aeat")) +ABILITY_SLF_AREA_EFFECT = ConvertAbilityStringLevelField(FourCC("aaea")) +ABILITY_SLF_LIGHTNING_EFFECTS = ConvertAbilityStringLevelField(FourCC("alig")) +ABILITY_SLF_MISSILE_ART = ConvertAbilityStringLevelField(FourCC("amat")) +ABILITY_SLF_TOOLTIP_LEARN = ConvertAbilityStringLevelField(FourCC("aret")) +ABILITY_SLF_TOOLTIP_LEARN_EXTENDED = ConvertAbilityStringLevelField(FourCC("arut")) +ABILITY_SLF_TOOLTIP_NORMAL = ConvertAbilityStringLevelField(FourCC("atp1")) +ABILITY_SLF_TOOLTIP_TURN_OFF = ConvertAbilityStringLevelField(FourCC("aut1")) +ABILITY_SLF_TOOLTIP_NORMAL_EXTENDED = ConvertAbilityStringLevelField(FourCC("aub1")) +ABILITY_SLF_TOOLTIP_TURN_OFF_EXTENDED = ConvertAbilityStringLevelField(FourCC("auu1")) +ABILITY_SLF_NORMAL_FORM_UNIT_EME1 = ConvertAbilityStringLevelField(FourCC("Eme1")) +ABILITY_SLF_SPAWNED_UNITS = ConvertAbilityStringLevelField(FourCC("Ndp1")) +ABILITY_SLF_ABILITY_FOR_UNIT_CREATION = ConvertAbilityStringLevelField(FourCC("Nrc1")) +ABILITY_SLF_NORMAL_FORM_UNIT_MIL1 = ConvertAbilityStringLevelField(FourCC("Mil1")) +ABILITY_SLF_ALTERNATE_FORM_UNIT_MIL2 = ConvertAbilityStringLevelField(FourCC("Mil2")) +ABILITY_SLF_BASE_ORDER_ID_ANS5 = ConvertAbilityStringLevelField(FourCC("Ans5")) +ABILITY_SLF_MORPH_UNITS_GROUND = ConvertAbilityStringLevelField(FourCC("Ply2")) +ABILITY_SLF_MORPH_UNITS_AIR = ConvertAbilityStringLevelField(FourCC("Ply3")) +ABILITY_SLF_MORPH_UNITS_AMPHIBIOUS = ConvertAbilityStringLevelField(FourCC("Ply4")) +ABILITY_SLF_MORPH_UNITS_WATER = ConvertAbilityStringLevelField(FourCC("Ply5")) +ABILITY_SLF_UNIT_TYPE_ONE = ConvertAbilityStringLevelField(FourCC("Rai3")) +ABILITY_SLF_UNIT_TYPE_TWO = ConvertAbilityStringLevelField(FourCC("Rai4")) +ABILITY_SLF_UNIT_TYPE_SOD2 = ConvertAbilityStringLevelField(FourCC("Sod2")) +ABILITY_SLF_SUMMON_1_UNIT_TYPE = ConvertAbilityStringLevelField(FourCC("Ist1")) +ABILITY_SLF_SUMMON_2_UNIT_TYPE = ConvertAbilityStringLevelField(FourCC("Ist2")) +ABILITY_SLF_RACE_TO_CONVERT = ConvertAbilityStringLevelField(FourCC("Ndc1")) +ABILITY_SLF_PARTNER_UNIT_TYPE = ConvertAbilityStringLevelField(FourCC("coa1")) +ABILITY_SLF_PARTNER_UNIT_TYPE_ONE = ConvertAbilityStringLevelField(FourCC("dcp1")) +ABILITY_SLF_PARTNER_UNIT_TYPE_TWO = ConvertAbilityStringLevelField(FourCC("dcp2")) +ABILITY_SLF_REQUIRED_UNIT_TYPE = ConvertAbilityStringLevelField(FourCC("tpi1")) +ABILITY_SLF_CONVERTED_UNIT_TYPE = ConvertAbilityStringLevelField(FourCC("tpi2")) +ABILITY_SLF_SPELL_LIST = ConvertAbilityStringLevelField(FourCC("spb1")) +ABILITY_SLF_BASE_ORDER_ID_SPB5 = ConvertAbilityStringLevelField(FourCC("spb5")) +ABILITY_SLF_BASE_ORDER_ID_NCL6 = ConvertAbilityStringLevelField(FourCC("Ncl6")) +ABILITY_SLF_ABILITY_UPGRADE_1 = ConvertAbilityStringLevelField(FourCC("Neg3")) +ABILITY_SLF_ABILITY_UPGRADE_2 = ConvertAbilityStringLevelField(FourCC("Neg4")) +ABILITY_SLF_ABILITY_UPGRADE_3 = ConvertAbilityStringLevelField(FourCC("Neg5")) +ABILITY_SLF_ABILITY_UPGRADE_4 = ConvertAbilityStringLevelField(FourCC("Neg6")) +ABILITY_SLF_SPAWN_UNIT_ID_NSY2 = ConvertAbilityStringLevelField(FourCC("Nsy2")) +ITEM_IF_LEVEL = ConvertItemIntegerField(FourCC("ilev")) +ITEM_IF_NUMBER_OF_CHARGES = ConvertItemIntegerField(FourCC("iuse")) +ITEM_IF_COOLDOWN_GROUP = ConvertItemIntegerField(FourCC("icid")) +ITEM_IF_MAX_HIT_POINTS = ConvertItemIntegerField(FourCC("ihtp")) +ITEM_IF_HIT_POINTS = ConvertItemIntegerField(FourCC("ihpc")) +ITEM_IF_PRIORITY = ConvertItemIntegerField(FourCC("ipri")) +ITEM_IF_ARMOR_TYPE = ConvertItemIntegerField(FourCC("iarm")) +ITEM_IF_TINTING_COLOR_RED = ConvertItemIntegerField(FourCC("iclr")) +ITEM_IF_TINTING_COLOR_GREEN = ConvertItemIntegerField(FourCC("iclg")) +ITEM_IF_TINTING_COLOR_BLUE = ConvertItemIntegerField(FourCC("iclb")) +ITEM_IF_TINTING_COLOR_ALPHA = ConvertItemIntegerField(FourCC("ical")) +ITEM_RF_SCALING_VALUE = ConvertItemRealField(FourCC("isca")) +ITEM_BF_DROPPED_WHEN_CARRIER_DIES = ConvertItemBooleanField(FourCC("idrp")) +ITEM_BF_CAN_BE_DROPPED = ConvertItemBooleanField(FourCC("idro")) +ITEM_BF_PERISHABLE = ConvertItemBooleanField(FourCC("iper")) +ITEM_BF_INCLUDE_AS_RANDOM_CHOICE = ConvertItemBooleanField(FourCC("iprn")) +ITEM_BF_USE_AUTOMATICALLY_WHEN_ACQUIRED = ConvertItemBooleanField(FourCC("ipow")) +ITEM_BF_CAN_BE_SOLD_TO_MERCHANTS = ConvertItemBooleanField(FourCC("ipaw")) +ITEM_BF_ACTIVELY_USED = ConvertItemBooleanField(FourCC("iusa")) +ITEM_SF_MODEL_USED = ConvertItemStringField(FourCC("ifil")) +UNIT_IF_DEFENSE_TYPE = ConvertUnitIntegerField(FourCC("udty")) +UNIT_IF_ARMOR_TYPE = ConvertUnitIntegerField(FourCC("uarm")) +UNIT_IF_LOOPING_FADE_IN_RATE = ConvertUnitIntegerField(FourCC("ulfi")) +UNIT_IF_LOOPING_FADE_OUT_RATE = ConvertUnitIntegerField(FourCC("ulfo")) +UNIT_IF_AGILITY = ConvertUnitIntegerField(FourCC("uagc")) +UNIT_IF_INTELLIGENCE = ConvertUnitIntegerField(FourCC("uinc")) +UNIT_IF_STRENGTH = ConvertUnitIntegerField(FourCC("ustc")) +UNIT_IF_AGILITY_PERMANENT = ConvertUnitIntegerField(FourCC("uagm")) +UNIT_IF_INTELLIGENCE_PERMANENT = ConvertUnitIntegerField(FourCC("uinm")) +UNIT_IF_STRENGTH_PERMANENT = ConvertUnitIntegerField(FourCC("ustm")) +UNIT_IF_AGILITY_WITH_BONUS = ConvertUnitIntegerField(FourCC("uagb")) +UNIT_IF_INTELLIGENCE_WITH_BONUS = ConvertUnitIntegerField(FourCC("uinb")) +UNIT_IF_STRENGTH_WITH_BONUS = ConvertUnitIntegerField(FourCC("ustb")) +UNIT_IF_GOLD_BOUNTY_AWARDED_NUMBER_OF_DICE = ConvertUnitIntegerField(FourCC("ubdi")) +UNIT_IF_GOLD_BOUNTY_AWARDED_BASE = ConvertUnitIntegerField(FourCC("ubba")) +UNIT_IF_GOLD_BOUNTY_AWARDED_SIDES_PER_DIE = ConvertUnitIntegerField(FourCC("ubsi")) +UNIT_IF_LUMBER_BOUNTY_AWARDED_NUMBER_OF_DICE = ConvertUnitIntegerField(FourCC("ulbd")) +UNIT_IF_LUMBER_BOUNTY_AWARDED_BASE = ConvertUnitIntegerField(FourCC("ulba")) +UNIT_IF_LUMBER_BOUNTY_AWARDED_SIDES_PER_DIE = ConvertUnitIntegerField(FourCC("ulbs")) +UNIT_IF_LEVEL = ConvertUnitIntegerField(FourCC("ulev")) +UNIT_IF_FORMATION_RANK = ConvertUnitIntegerField(FourCC("ufor")) +UNIT_IF_ORIENTATION_INTERPOLATION = ConvertUnitIntegerField(FourCC("uori")) +UNIT_IF_ELEVATION_SAMPLE_POINTS = ConvertUnitIntegerField(FourCC("uept")) +UNIT_IF_TINTING_COLOR_RED = ConvertUnitIntegerField(FourCC("uclr")) +UNIT_IF_TINTING_COLOR_GREEN = ConvertUnitIntegerField(FourCC("uclg")) +UNIT_IF_TINTING_COLOR_BLUE = ConvertUnitIntegerField(FourCC("uclb")) +UNIT_IF_TINTING_COLOR_ALPHA = ConvertUnitIntegerField(FourCC("ucal")) +UNIT_IF_MOVE_TYPE = ConvertUnitIntegerField(FourCC("umvt")) +UNIT_IF_TARGETED_AS = ConvertUnitIntegerField(FourCC("utar")) +UNIT_IF_UNIT_CLASSIFICATION = ConvertUnitIntegerField(FourCC("utyp")) +UNIT_IF_HIT_POINTS_REGENERATION_TYPE = ConvertUnitIntegerField(FourCC("uhrt")) +UNIT_IF_PLACEMENT_PREVENTED_BY = ConvertUnitIntegerField(FourCC("upar")) +UNIT_IF_PRIMARY_ATTRIBUTE = ConvertUnitIntegerField(FourCC("upra")) +UNIT_RF_STRENGTH_PER_LEVEL = ConvertUnitRealField(FourCC("ustp")) +UNIT_RF_AGILITY_PER_LEVEL = ConvertUnitRealField(FourCC("uagp")) +UNIT_RF_INTELLIGENCE_PER_LEVEL = ConvertUnitRealField(FourCC("uinp")) +UNIT_RF_HIT_POINTS_REGENERATION_RATE = ConvertUnitRealField(FourCC("uhpr")) +UNIT_RF_MANA_REGENERATION = ConvertUnitRealField(FourCC("umpr")) +UNIT_RF_DEATH_TIME = ConvertUnitRealField(FourCC("udtm")) +UNIT_RF_FLY_HEIGHT = ConvertUnitRealField(FourCC("ufyh")) +UNIT_RF_TURN_RATE = ConvertUnitRealField(FourCC("umvr")) +UNIT_RF_ELEVATION_SAMPLE_RADIUS = ConvertUnitRealField(FourCC("uerd")) +UNIT_RF_FOG_OF_WAR_SAMPLE_RADIUS = ConvertUnitRealField(FourCC("ufrd")) +UNIT_RF_MAXIMUM_PITCH_ANGLE_DEGREES = ConvertUnitRealField(FourCC("umxp")) +UNIT_RF_MAXIMUM_ROLL_ANGLE_DEGREES = ConvertUnitRealField(FourCC("umxr")) +UNIT_RF_SCALING_VALUE = ConvertUnitRealField(FourCC("usca")) +UNIT_RF_ANIMATION_RUN_SPEED = ConvertUnitRealField(FourCC("urun")) +UNIT_RF_SELECTION_SCALE = ConvertUnitRealField(FourCC("ussc")) +UNIT_RF_SELECTION_CIRCLE_HEIGHT = ConvertUnitRealField(FourCC("uslz")) +UNIT_RF_SHADOW_IMAGE_HEIGHT = ConvertUnitRealField(FourCC("ushh")) +UNIT_RF_SHADOW_IMAGE_WIDTH = ConvertUnitRealField(FourCC("ushw")) +UNIT_RF_SHADOW_IMAGE_CENTER_X = ConvertUnitRealField(FourCC("ushx")) +UNIT_RF_SHADOW_IMAGE_CENTER_Y = ConvertUnitRealField(FourCC("ushy")) +UNIT_RF_ANIMATION_WALK_SPEED = ConvertUnitRealField(FourCC("uwal")) +UNIT_RF_DEFENSE = ConvertUnitRealField(FourCC("udfc")) +UNIT_RF_SIGHT_RADIUS = ConvertUnitRealField(FourCC("usir")) +UNIT_RF_PRIORITY = ConvertUnitRealField(FourCC("upri")) +UNIT_RF_SPEED = ConvertUnitRealField(FourCC("umvc")) +UNIT_RF_OCCLUDER_HEIGHT = ConvertUnitRealField(FourCC("uocc")) +UNIT_RF_HP = ConvertUnitRealField(FourCC("uhpc")) +UNIT_RF_MANA = ConvertUnitRealField(FourCC("umpc")) +UNIT_RF_ACQUISITION_RANGE = ConvertUnitRealField(FourCC("uacq")) +UNIT_RF_CAST_BACK_SWING = ConvertUnitRealField(FourCC("ucbs")) +UNIT_RF_CAST_POINT = ConvertUnitRealField(FourCC("ucpt")) +UNIT_RF_MINIMUM_ATTACK_RANGE = ConvertUnitRealField(FourCC("uamn")) +UNIT_BF_RAISABLE = ConvertUnitBooleanField(FourCC("urai")) +UNIT_BF_DECAYABLE = ConvertUnitBooleanField(FourCC("udec")) +UNIT_BF_IS_A_BUILDING = ConvertUnitBooleanField(FourCC("ubdg")) +UNIT_BF_USE_EXTENDED_LINE_OF_SIGHT = ConvertUnitBooleanField(FourCC("ulos")) +UNIT_BF_NEUTRAL_BUILDING_SHOWS_MINIMAP_ICON = ConvertUnitBooleanField(FourCC("unbm")) +UNIT_BF_HERO_HIDE_HERO_INTERFACE_ICON = ConvertUnitBooleanField(FourCC("uhhb")) +UNIT_BF_HERO_HIDE_HERO_MINIMAP_DISPLAY = ConvertUnitBooleanField(FourCC("uhhm")) +UNIT_BF_HERO_HIDE_HERO_DEATH_MESSAGE = ConvertUnitBooleanField(FourCC("uhhd")) +UNIT_BF_HIDE_MINIMAP_DISPLAY = ConvertUnitBooleanField(FourCC("uhom")) +UNIT_BF_SCALE_PROJECTILES = ConvertUnitBooleanField(FourCC("uscb")) +UNIT_BF_SELECTION_CIRCLE_ON_WATER = ConvertUnitBooleanField(FourCC("usew")) +UNIT_BF_HAS_WATER_SHADOW = ConvertUnitBooleanField(FourCC("ushr")) +UNIT_SF_NAME = ConvertUnitStringField(FourCC("unam")) +UNIT_SF_PROPER_NAMES = ConvertUnitStringField(FourCC("upro")) +UNIT_SF_GROUND_TEXTURE = ConvertUnitStringField(FourCC("uubs")) +UNIT_SF_SHADOW_IMAGE_UNIT = ConvertUnitStringField(FourCC("ushu")) +UNIT_WEAPON_IF_ATTACK_DAMAGE_NUMBER_OF_DICE = ConvertUnitWeaponIntegerField(FourCC("ua1d")) +UNIT_WEAPON_IF_ATTACK_DAMAGE_BASE = ConvertUnitWeaponIntegerField(FourCC("ua1b")) +UNIT_WEAPON_IF_ATTACK_DAMAGE_SIDES_PER_DIE = ConvertUnitWeaponIntegerField(FourCC("ua1s")) +UNIT_WEAPON_IF_ATTACK_MAXIMUM_NUMBER_OF_TARGETS = ConvertUnitWeaponIntegerField(FourCC("utc1")) +UNIT_WEAPON_IF_ATTACK_ATTACK_TYPE = ConvertUnitWeaponIntegerField(FourCC("ua1t")) +UNIT_WEAPON_IF_ATTACK_WEAPON_SOUND = ConvertUnitWeaponIntegerField(FourCC("ucs1")) +UNIT_WEAPON_IF_ATTACK_AREA_OF_EFFECT_TARGETS = ConvertUnitWeaponIntegerField(FourCC("ua1p")) +UNIT_WEAPON_IF_ATTACK_TARGETS_ALLOWED = ConvertUnitWeaponIntegerField(FourCC("ua1g")) +UNIT_WEAPON_RF_ATTACK_BACKSWING_POINT = ConvertUnitWeaponRealField(FourCC("ubs1")) +UNIT_WEAPON_RF_ATTACK_DAMAGE_POINT = ConvertUnitWeaponRealField(FourCC("udp1")) +UNIT_WEAPON_RF_ATTACK_BASE_COOLDOWN = ConvertUnitWeaponRealField(FourCC("ua1c")) +UNIT_WEAPON_RF_ATTACK_DAMAGE_LOSS_FACTOR = ConvertUnitWeaponRealField(FourCC("udl1")) +UNIT_WEAPON_RF_ATTACK_DAMAGE_FACTOR_MEDIUM = ConvertUnitWeaponRealField(FourCC("uhd1")) +UNIT_WEAPON_RF_ATTACK_DAMAGE_FACTOR_SMALL = ConvertUnitWeaponRealField(FourCC("uqd1")) +UNIT_WEAPON_RF_ATTACK_DAMAGE_SPILL_DISTANCE = ConvertUnitWeaponRealField(FourCC("usd1")) +UNIT_WEAPON_RF_ATTACK_DAMAGE_SPILL_RADIUS = ConvertUnitWeaponRealField(FourCC("usr1")) +UNIT_WEAPON_RF_ATTACK_PROJECTILE_SPEED = ConvertUnitWeaponRealField(FourCC("ua1z")) +UNIT_WEAPON_RF_ATTACK_PROJECTILE_ARC = ConvertUnitWeaponRealField(FourCC("uma1")) +UNIT_WEAPON_RF_ATTACK_AREA_OF_EFFECT_FULL_DAMAGE = ConvertUnitWeaponRealField(FourCC("ua1f")) +UNIT_WEAPON_RF_ATTACK_AREA_OF_EFFECT_MEDIUM_DAMAGE = ConvertUnitWeaponRealField(FourCC("ua1h")) +UNIT_WEAPON_RF_ATTACK_AREA_OF_EFFECT_SMALL_DAMAGE = ConvertUnitWeaponRealField(FourCC("ua1q")) +UNIT_WEAPON_RF_ATTACK_RANGE = ConvertUnitWeaponRealField(FourCC("ua1r")) +UNIT_WEAPON_BF_ATTACK_SHOW_UI = ConvertUnitWeaponBooleanField(FourCC("uwu1")) +UNIT_WEAPON_BF_ATTACKS_ENABLED = ConvertUnitWeaponBooleanField(FourCC("uaen")) +UNIT_WEAPON_BF_ATTACK_PROJECTILE_HOMING_ENABLED = ConvertUnitWeaponBooleanField(FourCC("umh1")) +UNIT_WEAPON_SF_ATTACK_PROJECTILE_ART = ConvertUnitWeaponStringField(FourCC("ua1m")) +MOVE_TYPE_UNKNOWN = ConvertMoveType(0) +MOVE_TYPE_FOOT = ConvertMoveType(1) +MOVE_TYPE_FLY = ConvertMoveType(2) +MOVE_TYPE_HORSE = ConvertMoveType(4) +MOVE_TYPE_HOVER = ConvertMoveType(8) +MOVE_TYPE_FLOAT = ConvertMoveType(16) +MOVE_TYPE_AMPHIBIOUS = ConvertMoveType(32) +MOVE_TYPE_UNBUILDABLE = ConvertMoveType(64) +TARGET_FLAG_NONE = ConvertTargetFlag(1) +TARGET_FLAG_GROUND = ConvertTargetFlag(2) +TARGET_FLAG_AIR = ConvertTargetFlag(4) +TARGET_FLAG_STRUCTURE = ConvertTargetFlag(8) +TARGET_FLAG_WARD = ConvertTargetFlag(16) +TARGET_FLAG_ITEM = ConvertTargetFlag(32) +TARGET_FLAG_TREE = ConvertTargetFlag(64) +TARGET_FLAG_WALL = ConvertTargetFlag(128) +TARGET_FLAG_DEBRIS = ConvertTargetFlag(256) +TARGET_FLAG_DECORATION = ConvertTargetFlag(512) +TARGET_FLAG_BRIDGE = ConvertTargetFlag(1024) +DEFENSE_TYPE_LIGHT = ConvertDefenseType(0) +DEFENSE_TYPE_MEDIUM = ConvertDefenseType(1) +DEFENSE_TYPE_LARGE = ConvertDefenseType(2) +DEFENSE_TYPE_FORT = ConvertDefenseType(3) +DEFENSE_TYPE_NORMAL = ConvertDefenseType(4) +DEFENSE_TYPE_HERO = ConvertDefenseType(5) +DEFENSE_TYPE_DIVINE = ConvertDefenseType(6) +DEFENSE_TYPE_NONE = ConvertDefenseType(7) +HERO_ATTRIBUTE_STR = ConvertHeroAttribute(1) +HERO_ATTRIBUTE_INT = ConvertHeroAttribute(2) +HERO_ATTRIBUTE_AGI = ConvertHeroAttribute(3) +ARMOR_TYPE_WHOKNOWS = ConvertArmorType(0) +ARMOR_TYPE_FLESH = ConvertArmorType(1) +ARMOR_TYPE_METAL = ConvertArmorType(2) +ARMOR_TYPE_WOOD = ConvertArmorType(3) +ARMOR_TYPE_ETHREAL = ConvertArmorType(4) +ARMOR_TYPE_STONE = ConvertArmorType(5) +REGENERATION_TYPE_NONE = ConvertRegenType(0) +REGENERATION_TYPE_ALWAYS = ConvertRegenType(1) +REGENERATION_TYPE_BLIGHT = ConvertRegenType(2) +REGENERATION_TYPE_DAY = ConvertRegenType(3) +REGENERATION_TYPE_NIGHT = ConvertRegenType(4) +UNIT_CATEGORY_GIANT = ConvertUnitCategory(1) +UNIT_CATEGORY_UNDEAD = ConvertUnitCategory(2) +UNIT_CATEGORY_SUMMONED = ConvertUnitCategory(4) +UNIT_CATEGORY_MECHANICAL = ConvertUnitCategory(8) +UNIT_CATEGORY_PEON = ConvertUnitCategory(16) +UNIT_CATEGORY_SAPPER = ConvertUnitCategory(32) +UNIT_CATEGORY_TOWNHALL = ConvertUnitCategory(64) +UNIT_CATEGORY_ANCIENT = ConvertUnitCategory(128) +UNIT_CATEGORY_NEUTRAL = ConvertUnitCategory(256) +UNIT_CATEGORY_WARD = ConvertUnitCategory(512) +UNIT_CATEGORY_STANDON = ConvertUnitCategory(1024) +UNIT_CATEGORY_TAUREN = ConvertUnitCategory(2048) +PATHING_FLAG_UNWALKABLE = ConvertPathingFlag(2) +PATHING_FLAG_UNFLYABLE = ConvertPathingFlag(4) +PATHING_FLAG_UNBUILDABLE = ConvertPathingFlag(8) +PATHING_FLAG_UNPEONHARVEST = ConvertPathingFlag(16) +PATHING_FLAG_BLIGHTED = ConvertPathingFlag(32) +PATHING_FLAG_UNFLOATABLE = ConvertPathingFlag(64) +PATHING_FLAG_UNAMPHIBIOUS = ConvertPathingFlag(128) +PATHING_FLAG_UNITEMPLACABLE = ConvertPathingFlag(256) diff --git a/de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua b/de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua new file mode 100644 index 000000000..9171e6224 --- /dev/null +++ b/de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua @@ -0,0 +1,68 @@ +-- Minimal native shim so common.j.lua and blizzard.j.lua (the Reforged Lua +-- dumps from github.com/wurstscript/jass-history) can be loaded in a plain +-- Lua 5.3 interpreter for test execution. +-- +-- Load order in tests: wc3shim.lua -> common.j.lua -> blizzard.j.lua -> +-- . The generated script defines its own fallbacks +-- for natives that are still undefined afterwards (guarded "if X then"). + +-- type declarations carry no runtime information here +TypeDefine = function() end + +-- Enum-like handles (playercolor, race, attacktype, ...): the game returns +-- the same handle for the same integer, so cache by (kind, value) to keep +-- handle identity comparisons working. +local enumHandleCache = {} +local function enumHandle(kind, value) + local key = kind .. "#" .. tostring(value) + local h = enumHandleCache[key] + if h == nil then + h = { handleKind = kind, value = value } + enumHandleCache[key] = h + end + return h +end + +-- common.j.lua calls ~80 distinct Convert* factories at load time; create +-- them on demand instead of hardcoding the list, so newer dumps keep working. +setmetatable(_G, { + __index = function(t, k) + if type(k) == "string" and string.match(k, "^Convert%u") then + local f = function(i) return enumHandle(k, i) end + rawset(t, k, f) + return f + end + return nil + end +}) + +-- Reforged's array helper: a table returning a default value for unset keys. +function __jarray(default) + return setmetatable({}, { __index = function() return default end }) +end + +function FourCC(s) + return ((string.byte(s, 1) * 256 + string.byte(s, 2)) * 256 + + string.byte(s, 3)) * 256 + string.byte(s, 4) +end + +-- Reforged player layout: 24 playable slots, neutrals at 24..27, 28 total. +function GetBJMaxPlayers() return 24 end +function GetBJMaxPlayerSlots() return 28 end +function GetBJPlayerNeutralVictim() return 25 end +function GetBJPlayerNeutralExtra() return 26 end +function GetPlayerNeutralAggressive() return 24 end +function GetPlayerNeutralPassive() return 27 end + +-- handles created at blizzard.j.lua load time for bj_ globals +function CreateGroup() return { units = {} } end +function CreateTimer() return {} end + +-- text output: route to stdout so error handlers (BJDebugMsg) work in tests +function GetLocalPlayer() return enumHandle("player", 0) end +function DisplayTimedTextToPlayer(toPlayer, x, y, duration, message) + print(message) +end +function DisplayTextToPlayer(toPlayer, x, y, message) + print(message) +end From 538f65516706e0918fa84f5339fee876018350bd Mon Sep 17 00:00:00 2001 From: Frotty Date: Wed, 15 Jul 2026 22:48:01 +0200 Subject: [PATCH 3/6] lua binaries --- .../wurstscript/tests/WurstScriptTest.java | 4 ++++ .../src/test/resources/lua.exe | Bin 0 -> 69632 bytes de.peeeq.wurstscript/src/test/resources/lua53 | Bin 0 -> 249609 bytes .../src/test/resources/lua53.dll | Bin 0 -> 606869 bytes .../src/test/resources/luaruntime/README.md | 7 +++---- 5 files changed, 7 insertions(+), 4 deletions(-) create mode 100644 de.peeeq.wurstscript/src/test/resources/lua.exe create mode 100644 de.peeeq.wurstscript/src/test/resources/lua53 create mode 100644 de.peeeq.wurstscript/src/test/resources/lua53.dll diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java index b79f3e4e0..3498cec3f 100644 --- a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/WurstScriptTest.java @@ -639,6 +639,7 @@ private String getLuaExecutable() { } File bundledLuaWin = new File("src/test/resources/lua53.exe"); + File bundledLuaWinPlain = new File("src/test/resources/lua.exe"); File bundledLuaUnix = new File("src/test/resources/lua53"); String osName = System.getProperty("os.name", "").toLowerCase(); boolean isWindows = osName.contains("win"); @@ -648,6 +649,9 @@ private String getLuaExecutable() { if (bundledLuaWin.exists()) { candidates.add(bundledLuaWin.getPath()); } + if (bundledLuaWinPlain.exists()) { + candidates.add(bundledLuaWinPlain.getPath()); + } String cpWin = getOrExtractBundledLuaFromClasspath("lua53.exe", true, false); if (cpWin != null) { candidates.add(cpWin); diff --git a/de.peeeq.wurstscript/src/test/resources/lua.exe b/de.peeeq.wurstscript/src/test/resources/lua.exe new file mode 100644 index 0000000000000000000000000000000000000000..503d9b20934030f7974ef21d8c31389a304d6c4b GIT binary patch literal 69632 zcmeFa33OCdw)lN3BoH9+225-mXi7V@i2^1nHc`+Nso*UwFbXIt3K$Z=27*ZygCYd0 zN^-j_%=6jZ+O6HTJ!p6Py46+$r_KNba0)>YL|eq^76r;+Gl|ys+vncOfc@V4|JVE0 z`qui^tE{Rs@3YT7`|PvNK10Ue)Ts5+G%cNPGO1~6aOG2~e*f#AdXi5W^5QAlbA8`9 zdyUKg#@Ul*}SsI8e*J7b=^a>o4mH39c+Rqop0eD|FBZtpb{-ScW@R*lHc?w9X? zt|-^EnfLb7ZkT+{&8gb$-wQfqd)vcKeiS3ra^Uu=A-lHj&ty?*rX3;VspQN=GcV^OXuM+WAVphxm5;sC>88 z)k#!SEmO*-zrovW&$lm~n?VrZ?YB{`EA{8_l#bXqK5V zOHxAXMzvNqdM0}&O}^p!iN=b(GWv|@@I7QLZd#iyq1dE+w>LT-Fz+5R{#;ITB7cVJ zRYo*@Xpzc3cqhe-=z`4Rq(3^e`XE#rV3cgo!#^P3S_=u~Nxp5ENB0~0GZz_=rr>TP zI`Rd|6epv-Lq}bDcmNrry=icGI=;4y7vB(>DRC;f50R0i4UdNG{kc@90V$AGUflE| zsao--WV?0h8G>*2Q$v_{^0pn2TzMA=Zf2VG#P?O&^l#vi%aDrJw(m)L#$N@PnbGu- z3T<&f+t9}sZ%X7=H-0+Mvb=B1K6H1WEomB;4hyT(`U z^EH3k%WuZ5m9@l0J~7PoMs!RI8T3^*L7L*7)m`H&n)RV|1^JBF0+(SPuqKM%^nO75 zaz8Z8W}ms=2(`Mbi-`A>yubWSUua+ERc+qkR4zG(-ws^srvnuU{_-<%@~$B&ntda` zLTWR|AI%u80(oO3^F~M*%{~LKnK6i8*dn|cV9~rZ33UYfTl1)mvGy7eR;&}oy7|^= zw|J&{ZfVtD@a9jCXQ&|oz2JsFQt98jdOY$a-L#f&)T|2xieiJvF(Se24TWI#Y8>mp z9l{xHy@dtz$SyMILu5>?>=oZi!0r#j+>*?j^`)l8uavk(U`TyNH2VRZw%$^&^#qXO z_mN&+yf41%+ho#gwr(b_k^Hv&dPg!VwzU2y!*Y%4{Xi4Q}X|` zD}Q5;&t${=^p@7H{**9vx{c77#=9sUD1xb<_=zyJ`2~2xLl-dOe@hIVo6HM4k$uTF zodU^rJaD&+Z}%EpKn}`ZQFFJU)s(F)PzGax(0`BBi&>A6V#f<4b^QiSWbxNc$-RiRd#3cRH&h-7( zJ)P--D*O@ORRfFK(kQgI$b82zUn@7)CG&FjYg(bjXgACq<_5qVp?%4`0YrP&NC%n+ zNnwawK}_;pGAtxgO%H}S_!pa?|8N0q9w;|=nR_H}8%-n+GY9ffJjuLgVUpqwbG<#S zoR}}b1w{os`RnsG7>EXdIuo`5!E8z9U1p;b zq!2YIu#Zs$f8qh)y(lCSJfkD~k~6t2bTmEqV!}+#cPVapZZC zVIP7Nn%T%6Nal^F3D6A5s)yecLPiGw)H`|2%<`(O*A4}2qgl?(f<};6} z>h~pt`^?tB_hjx`4vOY>;K|4WBJ%^NKxEQBre4Vz+}1sZ=DERheWwl++B=(B-9*Ph zkGT%i{L$f+${7=;B1Q{3${B)kTgEhU$wxFKql=%UvK`5H6iM(|k1#8UZt@_6?;^_% zPx2ioIq=>THzf0-s)7v&W$WqNr3Oc^&}x4y`%pw`5;5gTzANx9hQVJ1wu~KrERbIz z0KFo7XXcj*PNVGkYrMHXg^Sdgf(ppT0O^k+wCNQaZs=&Qzy;<8TWocedb_i`-U)q+ zCbfyGBZq?(@k2CU4G94=O2K%?h)&9%VuX&TFU&Jyft;_6*qF>?IGML#j}T{vEz4B_fh&t!Vv)CT zX6LUI%u+fw<3_SOZFFR^A*|-jFHN?0Ro4^IZu0w`;tspC;2S%px;G*!x~lAVR0f-E z&{rL#DM-shA&4Z4PnA5FWbi&pqzca??BH$7V+5f>#1ZK9R{>?a*ukDn^2${;dN@WU zuobXWM@Sc&J7l25@_s=b$-IlD!f5vMXhJgj?mh~Ar%)(GUx#0jU)O!^2+_e5v?Xkp z5S={RPBejenWiTE&iSl!zF{mU^Tt`ua2+H=vYjER z2BST<)JsD<$LmF4s>bU(-LjOPJYGl1n6fE{sQD}4l}0bU>GqiG6pjB#tiik=EzLyQ z>fu*2usnGG@Uj}OW|OW!$Sd3e|(`H{+N2|kI&J= z@8anKSCazQ+Xko5tVt*DC`~v(u+zi05&_NkpbUkmkEM^Fn5aL$z}y(xl|z$ z*CRinI)>q}NQWM|AHTwM=Vvn91CXWU3qAaMqRl6ORwu-GVfjTlt&IP z8|{ydITKX;(UJK$M?OTaH7enmQthf}?iUn63QdTmU*HR^ccq4mC%LV>Wbg8Sz@o}`VHESXX9eoiw^d*jL9k^M6V$_|YHKNrIn_pyN7g}SXtA8sLf^PN zO2ya1S3?Z&x>z-5Xb>kcFm!ZoV5le5=JJ$$smBV*;j3&jqNCCEa@SK_(_g*P6*^iK z+*ZFljp{ZNWrW(&h|@9NfGJ3 zosK*#nVav{?_UiKSXmZei%8Hq6&Zd8UrGul^LBpX=z{Tnz+rL;QzlghT^wHu#Og*H zx3dMe^{)74q_tIY7=wn*j^R5ZKlr{-@s$8Glm z#fpbUIsT zCi9;ASR|4jIUnrdf~jPsBJ>*KLq{_LIYiD*Mb;3RQdpCDa|rp&b+L+GW*e=zA(g9y zcvjsiUJV*_I(wSvf2o3aE&*Q9uXzmCtRD{R&wNS>&QRMgPk)A>j|k0tZb^R z6BugF^qRXVXPtV;=Eice#OFZ_d%l-m%+e!XDVVqXBWVq*yjSsv`zEf4z)Qiy`ps9Y zK?T%NIw(F+2oN1}-&~4R?qfa}D}|#Mf1ws$KgGz9TA1}c2yA;{Hvcw}pyOPl8Ap%N zw9yDVS*@!wOYTmU*>AmbptH=SltJ770TroiwcWD)r7PR1WGilpKMDsKu?i7W*3%5Q zc$`V2OLC4}4lwDj*A=$C8Dha2MCLG%(3Dh9&7kqa$88kyUhiznerrrug^$mGt18KZ zka~bD){R7{A-jw!>ENYA#;?b3Ya-_eHt&NTLOM9GXI-XZ9g#u>t&Rym)~gh+5|!09d=18g5Y3n*5wVI)HS3yrE$5R_sc+(y_1l@noU0;taT2Q?>m*$pagO0~=mciIz5 z84^RJ6>Bbh{KMf7pO23ob^}N=N@V?UWGlvkY{?N?S8C4)*hh^RU6RZj{(;O|GsU~- zea7N?$8AgIok5c1Dl#`D^F~U(i)IoyZm7{Ndtm? zKCy;jnfEF<(%#P@l?ck%zT+&INH$946;VP?l)h9FtcO87;! zZ?Rq&$S>6km*!V^^+N2ep_1PE$}Q9q9YB9(L3X1ux6yF5CwI}n?MtLAvDAk7{b2LdHhDfXa)T^a53V z0o8-}Vr70Rg^+_As4nqyhdzWKmhj51@G-*ifFmDBZroP{0^%B#`LwIQy4fnG7?s1XeF*?k?>5XOk$w8A!@!0= z#t_dElAVN1e>BHmvb8qXh*o5Jqc>%acfChgzvo$UdP26dx(p^}FZ99lCb4u@y|LjKO$-eldbYe2^;dg-$%RauCLD6E}tn`|UVFDbmnWQ{P z3MPw!OzUzWDt5VQ&2xqh8&n}@_KrNrd)=-?e|!Dwe7&oK9bfNV;5ZWV)C zJ(wfRR+B6u%o@-is1F&j^isa-*+N1#@7iyjk&P!hvg~eg2K&V+T!###n0$nl+=!{W z2#b6#WV$`tXW0Y%_FwixZ}iOa$WA>{P7U7Z#Po7m9XyXE8dBjNGSYifF>KFM-N>B$*^jDvQ)TpUc2vAK|<(A!Dugi^~6lSYnR{k zQRq0^IINvK0MhSG<2Q8Nt%vVYo>Dz>D;{5Ali%FqH^1~_f#~J(tPyR-Fw5Jma?$(k zDr^4`&G^L{`fF$LVUS$)JVZxH{`YMPf!D#M9&h4wTc1T$rre;*M$V#$9&3;eW1{Jm zaWmm)4x;-5BWh$i>}MXA^_yt813^dRB)P_$aV93qh>mafM$-pj8%q4KOTQ5sT&PeO zy6Y~=#O`iaE%&TRSI8fydPwk5FPF6AZc#@|4%NON{}Ch#9nTET(N_vp zF5KbMjSiy_`)qoSy>x*niV9ayI{r^8(_iRThC{B4x$Qi#|K=c~?gBPTc*}qdp&NBM6EEBAyuiQyJW5Bmw4-4Cm$&j?jR$_}g)-nRv zXPZooA=#?ELOMly=QKPjG1;zG&;<-1d;S>npn|=gf{V(=JfH$kN)`W(H@F;_!c*3x z4oqxXfq)U|P!nk2d6k&#=!99Sjrl3%0&~XvOp2FMTOPSu_Kl|p#$B%25ztVgZ}dN%;=q*14s zC>w3A69wDOpwRuRonb2(>{vzDhwa!`i0w8%r1rnu){H(>X|9iEEO=f-XmF?z*%xrr z$#Sr#E#rD(=?2YOLYIjyk(+9rY^Jf%%Q>r|jFRrLyjv*bj}85d;aq&!Fh68h zpS^uw;ofK5wl^_iL!Z80b5^>+$c%!4U@@Uc@C%l?dNlX>nACh8l6c5d)ad?NIA_J;;U(>!LA zXT>g3-JTUk%gU~F>tS?fO|dRhq`q>6goK0j5Wkw@;=qNA#whL$6e`XQdQx0_*+jd; z^sv~Igg!rXI9BQ9Oh4|M(eD(0=;4UQhpod41L5&GL;OlX{l&z+ zK{i2xr@$|Pz6KHuE|OK}%{deazE2N)AW&l269kG{FiyKg^?|d$ThKRp5u145#!s|_@IBC=*3G&ocuF*59~>WzQi7`=k`w*=YS4(GKmJH$?)`P75t5=k8T&yq4F1viVr;s{RK}hnwo2n{(`S} zWK*Cp6n7c1EYlzJZ!GXeOS60>?S8X)QD!fL72f9B{%F|+{*sNskBgfQv7qRLmpTt& zzGk;nx`$=8ABQ|g)QDq0s)IgEs9@xyKvRClg- z2e;PBSvo-{%bw%x^8jj#c8B$QhBPRAY83uMWFCeJ+f4I@2#43JC1~{^w#^UBcK?z-BY%4b z=1SKkWLry6X@CV0A$mEqL7R7uQiK)Xr|b!XE2X?ckba$+=wG(LcPRZC`hMO? zU#kwFBKY-aY5tM+W^0I3rno85+>O6FzFEEE3g~s3q0XRyBc}nn_|Y(r zS=-S#f&34n^2*WC2m3UFC~WkWiGhn<_xG%$q6CxS6~py4;o!i;-yn|Np3oOUzTD_l ztU7{yqGPkjcV^`9^3S8UXBn<u_Dn~kMzcr-R%TVafmv$tZ(7*u<@u_CTQp}v|i zT=`V$A_&oJ5IN<>9;oQT|t34}rCzl7$65-ms$KAI*csB+vuk@8if1xb1xFc~cd5$NS>*4xTq~s8pWVT3Q zO2=p+R&rv&6=T7u@#c2x^n8Wt z6s3PfIu<`7;AKUi5O}fm@0`W@ZHnFwp46L6F7MkC%$3Z&Qkjc8;-XGTTsm>ZXvXo| ziRkKYdpxSvAKp+J%#4=hmy{JO8(9CDJNN?zV7?JOwIM5wXpSzL1Z};iQ+|Q91am+&E~-Y7I#kOoaBi601|=``}tPkgboAA5_kU6SZESwfr+$?wECD z!QV=n`2nciS0w}ltl%e+ zWbB4y;BMspY2Dhtf%Z?J{qI>CMU0YfgNelTo#R(Pyj#+?bR{Pv%T%L)5qudxnZ@|7 zW}z7 zCeKl=QrvT-Rn!LA&jX+UJ70h$p79)REe)LB8OyjN_LrUXPzgSBbE3iK4~{!`+JcHg zOLCEDZ|Y%LMd~kHJBW3BV46`mF4t#%!iRoPv8w(Y{e{WLtIg{Nnd5TfvNX_NxPDNAHCSoac}lm} z++e=J^cOko=Uipf15a*&qFxSb-+u`nPvQP@(~~8Jr-mOAj+W(kOPci987i%bc&}pQ z?-3@?sw)v`9%0tQ62Gh;%$=i0`jbl5W!}g>^v<%(KQIPhYtkV6;^^+%0)>rpY>)&uwpbzU;#?M9>KFw_DG2Q9mK@=721KX-YceyoY%Kb<7 znfsfM4k>JjrC(RFA@~X=ZnX;Xn;%(m$|e4svKQKe%--6SnhnUWND;mqp8}|d_rS}s z32841Hs;3WV?&PYDcmet`l@zPgygGaym-x~!gl0zVqho#N?Q2Gv_`1sDQOCRA=HjP zOfg5_dT;G;VTD7oo%wkR+9h}tz3I`on8&*0*?Vixm;9}g{{>ReF3pME{^jh$e~6+54V!QeuglTHa@fKqVMNR%@h1q&xVwbG!P;?f;-degZ$CXM zP;(sVm9t#bHj!R}4e_r1AlOMi)tbLi0+UDZi$oj367;nA-PA^AxEY0Tht&*wCjO+F zx<5WhMj7Kv>3_4mEW>sda_CXItKlIEiy6I0bOgUTxv-PH5IJ;JAzDI__}FehUr;)Q z_}tco7zn&1_*ouf0nzFapOx6q4O9dl)n7=PyLHI2A9UjHratSCDqfaV9y5fYyyn$e z%UKN^u=bqJvYY15R{L3PV{;fS*y-grem$*_DrD~uTl*DowiJ1xdy$^&r^&K`VNZIj z`Jc+K2Tb&)9NC!gtijKOwk@*LtNU6#p{DPN)J9MR`d5eUbZdHKzYNRD`B}cort%WY zr~B6)H3AFF!cht;8FjO8I{`~JdR#=~fXm$SVQ+QsD3&N8i+9xeqN zwI8w37hCM|9r=hnz0^v})r5W;YA#~k?rFd}u_gFKWalyt%I`7?kGi(Q5$t_%rlE!D zr4R1W&hbinTpLQ0MFwldLvjizwzQ86q=Nlfo%Gqzr$_`)Ia<$58<@wno{-m^pSA2d zs3p=ekm*68ktlWw8oq|6LPqqzU{N=PrnCPY{p1kz>z2IyGjH_POrd6At`VE&+R$gX zujKu@5wbqgU+pjIQ!^#}B_9X(b}P2*44IzX)M-6_GC(6%^&~?`HcYyoKVF>X*-+{l z7Jrrj%6%edo<7&E^!$X0P*Za6$R2!3rg~iM@xzQQH9v(uE;Y=rIUNTp%H+ABk2@|` zs2us~HMe(@?~#KdEzs%=(ds5Jg`FYAVv}^~1Z6Mjq<=f~k1f?*Dcx?r!p}IeBmNw9 z`_0eeg~T}eo8Np>299UVEZCi8gxB2YtK8v1QhSatQDB^GFE89^pRN!5(DRaHQ{#^| zd1#bu#CeV+%=YG^Y2LynY?;ANqsxYYs;A_bM<0JIc0*c8`|^nnGHjaqO^%_`+niGo zSv4UuI&K)WH^=308t@}`ws1mdQ@J@V(;CD=7T?}Y8Zmsd{{w0CI}Qn*ER8O*MFr-87Hb`}6H#$rUYB$c`gh6~ zjMwbyHg=OPAIS)($c^2K*!GFVJ>};pn(piXAw^kq`17Z#(_!E}U1aBUk(j08n=L*= zq^OdoZfh?Gf&}lWT~bsJ_W__Mbo3kjzPrH+k|wH$FV}tT9#_kew$x03ils-|XobJBl9`~Tyks{s!Me_wVC|Rc zh!%4}=<6B|p>x3Tr!C_nn_{`|2vhmkTnIm*W`Pepp-y93|U=rvWQ4z_TH(ND%0p4=8LD?)Q|e(^s7hSWn?P zjuv{&N<^0d0@6gbb@lK%5)W^{BO9`E5Aa)=B>D=14bRhRLgfu-_+ob=ZO6Kb^i?u1 z)PKfua>QTRk z6XseczSQH11(VCpa^y)07K*af2smyK1QV%6i@kI1HQPG{Jn|2v+2iVn4}tZ}_HME} z>=H!Hy|l92{M2v0tA|I!YWU+raGm;`MXTo(qR?Q!t_ci;J_3k+Lx>SM1Y8P(dF@5< zIwzAJSwgfL(BT?pxROK%fZXM~DxN(6luH}It7LAUcJ zv;EP&-srWcGuUo6Dnpi+^Dd)|X3IUE=F+g`p1#dxvGjpnbMuk+hJMTbo44=g<~>9D zws5Bd3l80jI;=-N!$PIM5Xc{89$4{_R*%loXT{Z-xEi*#UCHJA9>ofGj+|&1%yFUj zZjf=i-TDU{6kkT+PJXLi@foJL$WVAg{mmb_n3Y|o2FR5k%%%3pv!&;XQc()N=7pSr`A7qdN&J6 z$(Ldq8?or3xCj@eA7FEIS4WzvnO;T&26inYmu z$A$$sNB^F62Kf@(Q~fDqsb29#@(M*QMWB^(834L1&J=r+t7*yCYfpg)FG4oW*kXAL zH#L8hW^CP!_NzBENnTgeTAjpHiq%P5jwzNS(ajdmijQT$c|yD0i3_MQvT0dwEbivj zIdDrlx3|!+XNQjW^~ILBmeqz@e&p?ori{wo6qttzYqyU1eIspKG=SqSK@PN3=1>UH zx2%sJO=d$M6j4qT+$)!NV-vc~Hz16~oHSyC2aB4xP5h9rB)+I0NchdSBAXWfQtAw~ z6eaFg<5}n@)&*gLuHIjj&KQVJ#3pyttN;BUY+T2((jusJE&4UhD|U-=wN`XE*5Idi zcw_#Y-YA+!;`|`M%q`8w(h8dcKd|*YwP1G?JWpty3w5w?GfRTc%k{s1QeLuIU)3f& zSGZX?jA>VooC|nQY%J?AG34p17BTQolBZVLo*s&X=<8+Z>u_uMI+Z;PQ2GjPQ|tRv z$sfOllurJ0DF|I_+|RmkZ-w=7oT=YcnZ>x2)*AZX*@$@08jY6XtOlJ6*|N0#3?7Ti z+5SdH{>Im#St|O*@=l+m25<2uYY5qT7SO`5^I3Oj3k!ucE;5Ib}dZ=>U7tY2K*M1+{QK`>cu zhVvh?vkST8Q*Az&{}?X0ekWl*=5zT^;#j}AkTx)oa`abo)-XP_(4HcWr!LI4uDO`N zF4vLmp(fU;OY;{1_bD>ys|g13=lf&7%daQQ{m+N46GF(fCh}o*Kvql8?KP7t-V$3G z0Rwp83)N|P=-ANUbbWQ1t6c6QW7X?yW2#|>d8Av5$H%7TXN56O{TAZIDt5_= z4{-IzZ_-z0$T(QtVN_1~DdJ{Na(7C8`OV#y@j0DAJ%-5&txn1?O{|F8l;D!9bc$`O zac-n}LVMEursWZf*}eNRXjv33Ydr=5&YS#Q8qBid(qh@b!7d&qky4MJIEOHke7#wTlH9+b!ZUWBpSOgf6g-h^G9!%|D^z89p9!(8F_S zqQWS=*Y>3a`Vq#i5C$mQM$)f>rJ18PahUSpcQpKqt)DaD(8DZI^oR%kco6_}+Q{`4 z*kmphhUwg&(N|yT@~As;o>$Y!HF|Dv7=%tEKFy=FGhbT{{U}UGOb{6b}d#oD}8qWIOhEIn( z@JG)MKGKB`UE{fxOfQw-H&eI+FLD}&kL#cso0 zKg$-A^f8OJUAi{1@$c2oT?G&!wz5<0C1o=&|BH)l>CC zXvJ(>l{O_kg!p6RMxN-ApVM(p$Ea-xXcP}Ag3=k^!W>E+l#y&xbe2k! zK15Zey!cY(=`Epgyv!~y@@i%(jcQcdxjo7Uy{U92Kb796XL`QVsii7$4_J4}7pXri zHzHMWR&N~26`o_M>d13j36035iDK3^aiuDFTLWMDa z@DFdlybvW0V#8p{!5+ zQObEar|w^tEj!xtQ}a9$R;GT{sM*xQMb?YC{taGhE+M|h5Hd*j@#>PA;$#rVeROEI z8Kog7p3mNi%tLk_u!~;>sT^(>Or<87p>sU1LUAoF`$M64kwkmU{_#%;iWK0vf<%5}q}n#t{9ii+InLiZP-qF6-cXc=Ac|DZ`M z?+gb)D5^PgPF$|EgUQ;V#Gw&b=Y0q|AsamZ3)M zra}JLj6wd&FFE1S{At=%v0>+rcYO-Gi8)zKpGWq~*xx|s4%5S{s8~keKgOG!k3)Uz z8h;!kPWMK~ohXm?_k~*1{rX>9e6A+$7nGY#<2eH)wuizk<2mVLUVXyHi5-@lE~Dh1 zbsNf~w;(8X1~2xp@$M^GS65IToqR&Jc1}$U?wpUjQFU#CbIMjasFSaDuel`GFL%J- zv{nt4LAkib6B~ya?<1b~0bh0*(xWbxTPL7ry1%eVHiXO;({n;j45{irsC&<-Z1cr( z!`^5bCY|7LBQ{ncadz~o6DZ54BnCP94ObX~-E05CT$T%`Q_H%Z_sVVl=s|yb{h=2= zm;V?PERUXzRVcLUEsx3W51u}}rK7JLjse)iD2U~i8ps~x0SX51UA$pbrr%?@T9Uh? zCB>UUN%yi-*0=!!!!^4~+Lj-&rk^GwYD4TwZof_#)O<9dCA{ zGi_dMN%xhsnpd5u`@&zi*-$$k+l0uYTgq&rKT`wDs zoE@xWeZ4T()BIV6{)+c!gF^dQ4&mon@gYPwby^Iw$A*0lX7TrCIn^Wgg3Zu2!?-!08w53vuFy~jm64we;fF2pxAdp;c)fmupPu7uGU8!5FGWDCap0y zGl|WGs9N*xTvt0LKBIY;+vwZEV-!W4CVVizo-_>hi-sGOYLhze3ZGP)limWPuu9hN zy%{QoH~{7nXcS;AydN(s7wm%@#YBclPH#x3MzQC~yuO|Fkc(JH;*)!d8mfdIv zpEE-_p$vW1ClY!}rKJ})Iq@v3B7G5ItNziuGjBSOrb~nL@H^chMB2$C9ntF%_4bBo z&k4xk$WG`n+uWhA3iJoe*Qb!Arsbctp4}=vu~<5Ffpv*Y1vJEnmSejjMyCA5cH>3` zhRTGmR_5@puh|p&B$K?O0@;eg&c`dkFpAR`pam61^@kEXQD=wdGMA*x08saL`Smn` z0W^?6#_zmh938QaagPzNS}$1V<=XM=gZh+pd@~-EWVo$Gv7E>&vuVX1O)KpsJZ1E4 z$Hb;{VCuOs~aw&B( z(xlmB7`%ZDOlqEzW=AM2zbO7RJz3od#@&jQcNOcAU0-z%x#9U%!AX$D|C%%)g~b*c{iL9734{4|)DB>PM$N?to>mqh-KnB5^te!iHX&S-{a|uvU_YNt>Q5 z@b=|mBa9Kh6XgT>(KZg*hI*B!f~9I2JYd~R-#N`Kk4??ckc07Ta#YKDL~Kp+S<(D0 zV`;^)BMcAyXHD^e=+}*@Q5F9^LI?N=LU}$0gZ8SY7*b#kbp-C{~!7eW{dD-TFQi(`$J}D&_{EYO}ubLy#Al z_Yo+MlJ=y)Q*UcrZ`XepjEgVasF^;I>RM$vp+SL3hpf=lMzK`Hw z3X)Pp6VQL%|w$lGBKmf~}yiCN_bZM$gC1QOa0V#NZ#QJoAfa53uN@tt( zgaUp*7+`^QDO&?VQ?%j@4E!nH!rgl07(}-()LczoUQMCn8lX6Muaf&!keovS_X9OW z1oAA$9>(f7ypD{;`#iwRg%ZX?9@K-ds0ZiMGODN$-EG$pSBuA7?=&96dGoS?q89v_ z!3nF27kyytmLMkY2nm@j7se_t}t_{XOwy3Tc_$fWqu{ zL_`M@z06S4WrkutIIm5n{CStlNEx<~-F8O|SaW*1q{Ko2+=J1z?`>kuJt)L@&f$@8*ML_}Ofwv6Fw#oKg>b+?oO z;VC?>re3-g?P7{Zo#JHt*RYxOXQo_a0!S#UwMYONhR>nD(t^0KVu~^24`G^AMuY=a zK7bj6=2FErO%zdWQvGV(pkQvG-sv(;QHp-nekh)z9Jtz;NiSKwITZxSq_?~!PbsEZx}H4_Fd79$;T9xE=xCZA zj*DkmE+Tv(oWSjQW%x4^gHr2j&h_bG5iLCZ1!Y_7kCzy+vSi?M4t>~@Py_pvA6Z`^ z%+>sZa;Eu8z71rLXThH7hm<=+&MUFvir=QpFo1Sc*~IAC7^^61_#PsF$f-n**l=fBpcZXG21LmuC>gf!0deq+m&!z5@EL4BJE5nt zFlV)?3^%rdy41i5KnhEp2lek(HW7`gTWv2;=epoCPD9FJpJ(J~l+&)?vrp;PLN%$N&79pDUnTP;1WT@+EFuc*ysVmuQndrLM4A#+Z4 z0^JFcZ$(wx0!dpIO(Oqm_%`bIJ_^#(wfax)p(%P~DZfxUF`#Qb&OX|=sOF=KjM&6v z-~eiFypVHtPrB%BjD2NjK;tMSW8UCcd85Ci1!YC??^yVE>uA`Qf|j4w%0ZNdG(gyl z9Nz_D8ULe@ogVWGC5uEZpC=SnW8^f4)@i|O;)VESJxxPJ-kEW4LtWCAfm4vKN&wn2 z!O*=&$->ok>vBm^R!GLHHGLlpz_BfPt3;lm_{e$_!GVbQ6LV#W9zG1(9yWh%^t=rh z`FKi+`gpz}-hkK;p(BiDEkY17SEw&gWy+rlO2ri zZ=^Bst<5x|RXMFF>DDmCp~`F<9XCj3iRFM1u`-WL+`H`R>kV4Tiwr)dd`_;%?~>ZO zVfD7m)Q-k3O=;ok( zKfI$D_?XS#vhgOm`F}R0h2D5#>kYMGz|3yY%pSS8%06MY(uS zCRh3CY`whe34NXuuOwF&&+7M|3rZ(t$t8+o5g*7w4fRp?N4c05yLOOK>C2S^${9>y zv9J*Eq0sIjzSvnm@x?~p!?v|x6V?5(E7M%_p`>i_df`aH@9-0Dyo@r zvE*WuPT#uA+~V!K(Zhofeln2|_(HOcbu9BwyH;i_Bmpb(b=Wh1DS)Db_hK`b=M%I4Mp$`nqZQWpr%|sm z%7{Z8AwP0gv-34uio~*bAR*%xirH}0a|orPwFJ(LX5^8DnmIZK10?FZ=7+Y7!*|=j z63<9`)&7LCQ?1O{MT(T~aeq5H_&`jm%RWe|LTrFkuP#2zOZ2-qHP!9DpL2fRe2wEl za+fLeb>HQeVXMBF(nclEB#z#!)F5H5(3p9|run0N{AT**;7wE#lS=Zwq{hV6%6_0M zz2*)$YlFOO&htyTk#kl5?&$?n#Ij^$Yt}qjq{<13Ha#3tpa%+Qb6TdkC@b)XwkwrY zrtL}@VIbdmGX=yYk+}@Hmmw%)lbT}HwyKGU` z-KQIs8<<_qsVfJWi*jwEv9-kY^5~VBF~eo$h$I%GuMb?JrnZykwYStFfjj13TJjjq z$?y_?;d1+*dh(CrNAoq?wjk##s36eKoHD4bRGz%DTioq_dyo6bZhz&RT%+zQB(yMlfzO zV#9teSAj~ttmAPs;+d00T9vF{wBHxIevmJ;ZV;04kqNP3fAW{?shiQc9zb$%`H6k0 zoq;lrII zUW<%uV<+aFMNjaI^Ev$2m=iqS2yjk=B~F#`YlQZsE18wSiR|D3b3v}+33ang-D~!l zZ~M$QmB|5W?@sXt$I#6;%&lC1(j&4^Z~i)sb8;Yk6+_|51rQ>V4CcmpWlh`ib>KoH z`Xkw3yo3{9hg)5Ny=vhZx0a3L1;1_iss&9725p+o9U6sYG8E&R%jfv zj-+xhWc%7Y9hzbOthGtL!IP9@Lq=*g*s<-<%n0|?#aVYlHq=*0@RJP(xvRf_MK8lt**SEk0OIm1S4B zxxDXtUh{ewatd>HLYREJhdcQ2aJhM7Iu|(Jmsd2*V;=LCT79dk9jTgbE0Xy*&M%3^<83v4ERoY<*yu@8};O>`!#IsHt$Mf6L!#5v2@o} z+@u(k$S_Kp>&_4^mz_p$w4b*mGmtpFDYVh0-czujU+IG9%s*`Qa(2`D6;;Z}{tN=V z#8=ZBzTubKRn|n*Yc=YHbVlX%Xay4nnNv{8Zx|#mEwa54yZGOX${TXghInhG0`_DTmA{snOoK-_PW-gq5;L z%^x}p3;Rmb9l5}L^ZkFLGg&3J#pUt@QsKoe`YHVe3Fv`|t{t@2O~LW8tb075?2Fxa z!mGd1#DBRO;w@yG>u5i--|`9S6)lh1$_Y^-wE_g-pCa0^^BJhw$e|fWK>mJDv zyV316D+UE_E{i?b{|!c-`MnoMQiHefJ@d3wk216mdG(ifN~;qx@!X{PjheiL(1GZ_ zTY<+UDn}E6ch>10p%#YsCbJ?p_H*7KeQ2OW5}=8c83__sJkEGflksIP8kM?e;p z$-Jk~{@{JX2qigZC&o6cMarISm~->p9(8X}u3gB&yR+22sucf5fk?HH3uz5o)v=Fp zqpWk{rdPFDuG#uxDqWsnsWu06=I4B8ajHhUGC54dD-@WS5lG+McsBipp|1YaVO@w@l|!G_){Lwv3TMP51c{S?8{n?Jz- zj|r%wsG*P(-o^N`opr=J1+wVHz{R8A(E{sRI6)TRqxiov_tYXgB8Q<~0U6v(xqiKz zqC2c2nf)IEIrVTWB8d8WoM(}Kj%ADi09Wm}ts#fEF!rF2$dGxMN-#T9`wi4SKEfmQ z)UAhEUZ^wJ@<>`xtfY4p?*xJ1_YO9?tfeleLB8cxG2{ z^qMpC-Td<;bT2Wk%71ZV{l2`7=MqZ})wz9b<$$L}Y5}AA*naVqe{{lgPmRPUJ`+XB z;cti^IV_~RJb>W&vUsOFd2@MUa7v$}{cI9}is5Qaq4H7}9-;sq6+F_x1Itx=;#VS0 zy5z0XKZe~umqU!JSZQ#L(w@QW?x+!qT`YUQQpLj>fBe*)UOn`EEQ6c|gp=DWc^5$bEn-H0ppKUlqET3i zODAsI@XhO%a@HY6b40UsC$6&BQ}7c^6FfUHS?LFr z?P^cd0HdYpJXmmL3Z+YWqVxkBrMJ}6rd|A`gvCk7#r=Xah{VhAbeG1Bjme>7=|^!d zblh_scc9~@Iqt#bcD~(?+u^t^j{B_RKJK^=IPN`;TkE*DIqr3iJJxY8blh_scc9~@ zIqpH^g5bH^aXTEh#c}`SxW91RpE&NFj(eNqUgx-%I_`OnJJ4~{99Qfesy^j*j`wKB zl6jiesc#wPMq_10wL~exMl)^~f7g7uab?C7y8v`_{=c7k6!P(NWWKWhc}3oz39$K| z%v-koVqHhJ?R54KAJfGvm8}HPmDUY`I7LR~zj)g3 zwZpp{clt^@oa4Bue-0vf<@1K~-#6^g|Nj1W6qq~bwpo?84==uC#LT&KwP{x^oOWH+ ztT}aos@k%-GwSN9u(kI146VD=tqrZ~r_Gs9p4#AoK-J8%wQ17=HFbg7IrC>}1;p0W zx@&H`y{aS+Z;T~G&UN~cJu&NM9{@@Jv$PpKf80mJG)ht+2J7?DHfV-fq&|O?o za`EsBi;73N$ugp*cGfU=#pJT#*UhQX`f1ZDuDfP@#iW#bp?0}jyPR)rRUlY9p9-`< zO^tirjQLC4wN-V&xq&)&pvJubgaVrVYhzV8WA0p#bf2pt&vh3Jtt;#Ta+x-!E--V> zd~I}9P4(s482@C?G~Wc@q%PmIk<%{H&K+8Ju6uq})lAw}J1aP^YJQ-f7Mx#ORarA@ z{+v6jX1Z$@1m@JtcT2|9_zKp|m{oPDkm6=LweA-8&2^Qva~1^LHv^{bmRtIH7S5P6 zcgAgVs~i9Vzv|L{ZujsicU@pc!0oPDTvZtiNJwbyK38JTl?-#-_6J<5YTc@DW>f~| zEUa?RtC?Blo>48)c4@nys#z7C>z+SjUX>fd-4UEqTjho$YG>3gai1&E=L)PE_pG@! zx6PRAL`i)Mo%-r#*DP``tg5Y(_Rg7KT~j-6hO}MslskFm%$i>V+^YEt=hW8B7jnT4 zwR5DQb&_v*3Ra+IfqV9h`7>1)IaHDiPCBjr7a80X=tdX1ub(CzH{qJ{3D;{-RvS}L zSu+pbm`T&-!-P&lwc*jYy&OpOkb8(mQy^rrBe4pYw9=a?VzUY#R-L=8_ zfjKaCHG?WB<4D!xnK=`T>fA$x)uh+mbLKHJhu0yk;9Je@zJ5+^AUI?0wZSR|ffNRJ z_}V>mru()ffhq;IJlW3JAL-^lxt

uO6XZ7!R*DgS@wo^bNKf;$@c!zBDyOox15<|}biai#n)+!KExp0B`OikpI4j9>C~ zuQTPBc=~3}d3ca2Vuc!l}O1w4+zdD66S_Vr9n_f7>`cTJVz% zSA4zX*A=IFw_cHc{O(6j8~)(v3vaq|vV`q2`yDsG)DCAl?pcnT>$qCI*5k9wDc2)X z1v2cgFXAYk$2Lxa#w=x&7zQ zc04lrq9>kw=Ld&k0p%uX=_XPYTzc6mB>vT>oUx@>)*M`g2YS4>~Da zbW*rtS5J72C*fOkVbApX!k*#MlkzV(DLnlo_)|_wpL9~V;-v7EWo4JT3j#CeU2^g8 z;zIYuBT7bGsCE0Cls!a{v6zDzU%NWzG zF6H|q{(AABr)f`#A2-Bz9sWk#2l;Nq{}}G?_`Z(+Y1{$l({B83+tdzytnz+?y`J#wU4j zm-C$@@wgB0or3={+)w#V#lIhS)sM)FzY%vU-?{jA;hs4PTH$x&{)KNn{-<#*zW3qZ zk6T^>&)~1X{g&_V@Rwc+-S|F-e*tdwW!MYEkK4v~9sYLQFGoWk{QGhLIfgp%YnN-< zFZk}o{}}Flta`q}--x@H6+`A$^5bqP)3ibOci}!gPSf)7i@W4XXo9~U_W}c&;4i}6 z-~&he?YIr&X*>Q#++SYDL!9^@!#y~aH2m5vl;QgresLG`eG-2??jwAkll-`6Ok*tI zcjNw~4%qk`abp2+6+iBqe2?O9$9*KIX(#YMhP#_@=G(Ld_uGZ^HGXXowBmaf{sp+_ zET&!fi*T>!dolj$xQ$DAM+(2VU)@Q&@c%#UT?uqt#g(nz)vd+yA}_K*ifzCFV`O0fckj%shOAc4lB;>esO0SkzRj*#{@4fC8*I?d4J5-5qF(8d)+YwFx ze(PHF0pSCHk6eefkMJSD-*uo4gbxD-J3$}9`GD7K1&s)I0=@!&0O2EmgSKIPBU}u) z1^y}G080255fj0l@p=Co{YoZ{O>&X0VPr0r$X{A^nr$d?3^p^obzm zwSv`v1G2;b-(Znd5~&O)Lgm4O{zFlXa}YdZnO_gVJcH*RLFmp87J#4d%qR2({h?sM zSMJLSgtAH*a-^|twi^kGNNJ$NU+GKuVqpqdK!j)c zOMI0mXVS96BHK4t1WN*y{sh`G>8y8&t~Wm_@*mDA$*zngqUBi!!-s;0{YOxTvp(Wf zd*C?hVcknWhm&{Yp|c+H)_C@()zP0=C=`1l98gp#Ug$A!muLNV=z4}m#n9bhk-sS< zvKxXT{6D(?rVT=tuh!`~5s`C;a}<$3Fd7>8gWN!@BwCr3h#U+Z3LLh^Lbp#kOC59? z9%h9^)-1zW)Z-j0gJYnR9w(l&Zw5DAz7yBowwW)6H>R$`*X5XZjNjpilMh{Pu6dL*bA|Pry@2#Dana8b~DgvAjn zy-dS$4Qn;rqT%N>+^69^8a}Gw?=^f?!*G^W?@$d(HJqp6RT{Qy_*o6Vq2Z4-d_uz) zGz{{)6yb6-EY@&>h8JnLTEj*SRU!QA((%0-9?gCX}Dj*A82^LhCkErmm2;?!#`^Hf`+eacvM4w zwncxwhJ_lA)o_A_=V~}d!$lgd($Mg;R>#{l+^yk04G(DefQE-Od``o+H4NrhbPd;V ztcH^{oUh?!8a8OSNy8g8+^69^8a}GwVGZBbFe_KLr{Opa%QT#?;bj^&Xt+tk-5UP0 zhTqljpoYKH(D3QRI3p%I0(_kl%?&k_gJ5RR=H)S*rQT5!?>$y87w1a zw#|ca14H7Q%vrXkX5H)-SWQ5R=3f9MH0(rRRp9Poeqce{oLRG%E(FE1U=T4EQh|#D zh;8VGDz*eJficz^qAhD#xu!NgyP>L8{3M`^E6QQ1LVF=to~UNyt#~CaX>UXi=B;m5 z<`~PAIgX#Hv#S!Y^#Uf?zNsDWO{6VsX<4^EVURH({Lo@PbF>l1^5%_en!(lEgG=M> z%bS&PQM`8Urkc32&_e$)hT^-yrH%1;0>8kqEZ*9*rWv+8X6VF2!DWqYV9p8}u!+Zm zX)6)026dw-OA8PoUN! zNCGA*6?I^WScFtq>a{e-H?3(Gmm*dlZ>OaYOqJTi62xgf09z}ul;M_YtC+X~vBsK~ z<_#(zGAP8Gsw-;Nx5DxUBUptvmBv+xL`D1NL|j0ptWwsufhU%24x~DwqN=8;wy_x^ zpNgucw)zT1hPX*o)L5ba5EZcEX~qXGUlkQ~m|qBfh!D-tgt*A3ng`RH#3F>-s@h@d zaG$RNHZbc%wZB65YjU7seX~l71golBTHD2lAZ_cjP*0y`5H?TCrR0Fikf}CC|jauD^Khl0|bDPAXOA#Atm8 z+W&j^O>G-$TH7s($AR9zCy!Y=vZ)|{Vjr6*4H&Nud}iE-Zfo|T?R z{N!+;7#B{sN)1=PFhj-h8ecB- zIx;(1?pDAc-~qr8;G=+Hz{7w54(G%D9p^ZYrW9wTH>645lqP+5n)F-Kr0@4gCmH$O z`f1UlKCR`VlU2+}ga0TppPC4{=_$!VohuP{e9&oJ9pYrJc84|~o@HXtnRfUDR6Mpj zybWIdkTs88c?^3MxS7DEI{87cxF?-n>DGuLjNv#sSA5Zzmuu z1papJf(tH~*wNA9Cx1Z?NSyANEj`nv`#gqN7@Mgm%c=5LbD(zv+N|me&FP3MD=Ukl zzIxO(BOT81NJsrS;8p4IsH>+s&`u-Av?rXt=3y<4K)ttt{*iqx+gE(FQ;hL|MaXe= zKFnDjF=-vw!u5H1ledS%&0T@O-i}b{zD~dY5&Es6(7o`tZi_^kb`2Py)=k=q92s2u zj%c5Q;05;$Xbsc5Jp~10x~T! zN}oM@_F$B)O^35578~9f4&T1T=ldWNn!Rv3QI_MfWB71bhblHm~n-deAHM$sM)-|;cgZm%1xja$6>!21aL0jtOUxsQ?WHtmKt z+oDleS@qrFPB7D}l$!6okAF8h3_bmTA8n6D7kklyF@Qw1y94c0kXPl-;Xc!!wfaxv z#>uagmC2pCxt{&n9*fDnQ>V%=opFZ5KBRCyKX$CVWx@mt-|v5UXJO%BH$9x+p!L)4 zbj^uH~Gwi52~+wIQr(BlKwj@SIXD^@CUhf$`nQ0 zzL_)SJFmYkKYZ^!`TpB)@R;{RpF71Vq)3?B|F_`W&bBR?+s-SuLfN{)%w{2?yRo^JOr!*jqP@Rz%Lr|!Tg>ul?I z@&CbVua$2+_Z;c6>;G|kyL{)h*X+2nU97{K-SlA}-2%FEux`%)Tc9cX{rHE8gv7nU&Udzr^X-Rj`g)7^ zmwsov$1Uvh-RGuv+O%l}d?(|bG8*$|p*tVv$i43NGnqf`GRGs1{pvez`ap9n&n&(R zFqf#pOmTb{x!c}}efrr)9+BTJFZUd0H@;V#d+8&)cFE^|@e8$gK7IfF>h8cj)eE0# zop_(75Qhk8zskrd0EfEs`PNQXUw_ki{&J7;a^wroF|WEoOO2bp-r`D5;MzaE>drKc zd{0Na>CbP!_dQSgF>g{P}sfJL6M|sSfMmEX<+$)KnoTTk3#(CLLXwrt^K(n|uGAcjTU-LoNFK{ugc@ zFuV?PsoqJ?Yj&C1T*5~^O@8bpCDN*}A zK2_OwN7<4WU42R8{?0wp?Z|hVcI?^P!r{;KokFVw#^7v>QL($c#G9G2rM}Rc4wri* z_ZhBL&Ubsxfc71^x%QhK_tYH71D0a!HsEfz4sYRZatAk^Jd@Ffy>aMR|DQ}*nPyTg<%q3)MG>FCdyjkW5W?~3*w zc(m2;|M%NG_DVOMeCNB=}D@m_y4k zm)7=#MfnV69F!Ae+z;Fdc&>V#O`PwU)Wb38i7u1J^TLFCgOn5StxcZt&Bu2W#^*lH zS>AzpkMz2WIqT(G&4hluZ(ntm>n)6N=rTI>-f)j4pZiQk^alce>`OaZW)$yBnf~B% zkHnbScZhU-!P@&;f9hu$oZqv!F3kIk8y|n0G3|>)@yJjg+o!?(f_qRX?y+J22llXS$A&@9Elerh{(E z#l`?Ciy$Lsa^f7XuyvQhq>>W9UZNm^9`G4rGW}?g1v`BTegs)H(?7&KB0K_H_GbVO z3lU-bpb!Bk?8GI6adyA~Q4J~*;z12f+(1;%k3`_J1erloE(JoXYU1wpWv8a=V3J-% z|6!{iAD~|+M?f+Nm=*v;MVkn*8jnJoLcS>Y3_>dIfC>-a3CZ#j2)O-7<&>?R!%j;L zH@@rweeCWe-e(f)RAT)}$iF1!g~ZyEm?v_x+4KBfTGa2<`zA?=*=!5oPsC zUqM+Xbw|{RQPxR)9_6;w*HK5uJ2cj)(qB-IM_nJ~L!467k5Q*Yy$$tHl$SyOtn_Hq zPf^#w_Z;uu)FV*dN_`e}IFzIEEkWG~W!k)_Q}#-kH+4R|vr`sA*(+tol-pB&OxZEz zuza6TCQID}-@MdwQJ=@R7iAFCeNpaAof!3Y)a&tWPn`|*N|dWp|3rNlbsCfzQP)S^ z0ChIh2U6$9HxKoH)cMh2x}5O;xIEDNg&OMQzr2vl&x<7EJ%k45=Ez7SM-GhS%G{jX z9x#~|9+IEqsCRI#?6H{~Y!oi%ca~4di{zz59g#@BBVvM~9`JJvk^>4$M=j-$3B|*+ zhYl?)EE>;W*|pq26VMRcu-xR4*-_gKE1YWbQ#&?5N6#FUWh1LVL1CFyA{AfPa%w8F zip9oRnM0E7&|EA(*#jL(Ctt)8ksQCSRpzLo>CmImVX8pLMN*pD+2&|dvw~su--~ve zzOf3$Y9Oq@nRXrnGv=SJ;-_3Vs~~#8>}c#97RXUG=c$1j6^)i`vfKq@TXuDIUAkdj z^x}>k+tx4Jxfy*Xek3{jCxh>kcCERLu5`(+MbY!ycP@ywHlI?k@H5*A(N?J{08+wg zWJe-t(ykSXi0Bp90A8|dL3DE!0+)9(wTSpQ+pstg7{W=A#NUM2dBCsRx_aLDr3znZ zqW!>Cy`8`+Qt_t(zi>t4#vRux{OGxCz_?;>e5RgUXW?5tw#bpgz40rzU=Xjoj+s%V z+RusPDtgo$?oQ9lZEf-TZ4C-Po3!MF`~kwDOtSIktwijUifPg4^xAc6R*hEp1;jHh z6<_6d`$ybhzO_;~BFXx@p)#S6_>tT^wU!nB8HvTIm{V)6-q^HE0 zq^1}Wl9NR(N{yKlN)|~CCHbIcozCQDw{51p>oR-8@q1>>H z*vF2Pf$-qLJoTWXyoKKTpJjV{|u6n2^0~;J}k8N5*?Dc8t~aTD+sED61m+4DZ2RjA7APBShCg`sUHRFfB1Ic`@D}7l z-cm9UM*0ljP5bPtNi$Hj-_T&EGtTxYb0RI2ZxNTWtM}e|%f@3G+URDpWq5))_k?Mq z*Y?qWgKOGnoMUGA|L~3--P%VRKR4|;A@z#Tf7trn{R(e7@-qVSn4_eA~ZdiQ>)Pv(J`)e&rRLPo{p1Pl>bd3}cU7V)A=y|EJen zBkx?c%&wPmKHA!|+&;)nUwZOMC3~Y>?m$(Qjc4kI&eOKxHgt6P{VPmxv5um^V2&=rfF)mPgJ&OPq?Uhb_IU$o|+&-YHIIza42Ev9do z!hO)yP{!|cJO^%vK8JPCKEd7Bp5mCNH)Ptj!Q#PIo?fYLWD9CZQ z>x^&B$~q6_o^+PWB#bhTZH-2!urA(f&=1f1B=~&0vpuh{`V3@N)@9hA4)(+k+?_sv z4)6Xh=*dB&t)oUiH>IPQWqP_3x#=M;#&7}NIxV1mE8aq#2siQkxVflE>CN3`u;=Ve z*FMv)A26WQUFLYkF$cD!Z6EW?>+^cYv;FOZ293nHz3D{*#^xKxv#oS>!3Jp#Xh^Yr z+e$m7L4z{3b4pitrs=SO%EjKc4Ew>F?YX&S&T?wsIyfB)$pKK62jo#``=L6gIY7rj z%TEWS@pn;go_O?!QI2)cqt0y~3CKb_i+u9Ek0=v0ejD2!Cxj@5p8@X^TA!`~lAKO{ z#-%d{4<+OS5_brt8wXz{*1x*D;9e)OK5YFs=Axw=$32<4aqKS=G6VJA!r3FSj%*#d z(vL$o&hrKDN2MFbT9J@@sQVS>mBikXq8~SUaq7gm|8h^JPMmKbtWSykPGTRHkPWCi zI^-zo-NJVr?`?d?867$A71WXQ4B@?&?<(HO_{QUz%5#@@ZQg~Ao}71np7*>H@Qrpi z-bs8L@s7+hf#(D7&wQKkJ;(PQ-z+>ccwgfkj&~;Br+AO%eV+Gdo})Ztd7r0VTfK2` z-tm3KH=eooVW8v*e}V@e(;P@@6tQPa{?w@{S~~6{#)S*=0)DtyZow3jmW1aHj4{)4 zfjnDtp)p3Pq9)((4-_SfA~eEL*h0!O8VuqMbCo7aR#K8bu3Kp$#B3^a{X>`6!%aP@ zzJ76inSW+=^?9qS{YLUX*5^N^e%aEcOUvpnKBvCol5y43r&Y%%_+w{UH0Jw}e-f*# zUkHE6l!`+C=vqW|1t8AkU(9^}^6Kg(%vXvQ@@Ufyw+!=lcDNF7#h;Mb(uHm~Uw?lle?@I+Z^hDY|~0H~Q?+R%j?YI1=FjGqQD_ z-+$6&b@g>C3mJzR3hE0N^H-6T^_L@C>t6Egq70m;vg_;5(d0>~SZCv0r1Q~%B32KV zGJLaj{wy3b+6}V{BXClMLb$5XKhoq&vdDH9)BvISe7_}avv5*c7+=0(@frT1a^m0t zMWzajajMIg!&xY=L}Ls|sUkK+jHmuQ+UZPhPU-8-uDz>B%R|8 zV9WTJmc;N5Im%gYXq>O^du+OTRM`yW=w5ZO9m=8I?WK!5dyom;?s}XwxbrfJQ?_Yn z$OPXDr!VCxYjexlGA+LkcQoS|Hnf=Xz46bKHIU_<{9`?)PA}+`m+)?fx5+!EZ3BCv z!A(DLDO+&M6?&?Jbn%@|ot+bpVMBv~&V17!C!R?&(3Hy*nsNqaTF&4(>0|gPDmq+* z-@b#*a3{2p^hz5@jiB}>oj8X_;Cnk0U$8o>=shm z*h~dNG7}*@2~y%HV8>%I1e5XXyu572O?`QAiY8qkH!m-T?HL5(hr-chf-e|BSw*6% zL({?{#<40BCM5o`?z6nbg+)n;b(`Zi|N3++OMUOJUlbSXJZ#4S9YY?rWHW!?h$ zjlUrs%TnL>YrasdGcXz3>2ma5+FMTW(3&djn9thwfF%Mz7p9cRApG@(gg%DyP z8>-AS{|@6k@S(nT(JI!6X8iWSJitZ~N6pQmPPCxh0}7`^Ova~G&VipSs@3OKO7LqI zJ~10OP56rgza77Iz@L-l-vrdM9=|Oz0r{<{m)}X8W#cE1(=0ZF`YKhHIwnf+=01y3f5GNh&UeLPai@jDr_fwM$WFahMFT)?kI12oI3XAV?u}Q_R z5=H1&Im)$w7wf^pb`QQ6qpf26R!0NMuytbB<3DR{0u7uSq>~)2S1r`5+BvS|TWbAo z?m2naC{ES*Ys3cB#}Sx?8aeN%;7W#zG1E4q)r&w2shWe{7K8I^RlFASa|X&ch;=D5 v!^}8-V15p~538mMJu#e0&TRa~5>_C8p@jY9+-X$wBIE23y)Je literal 0 HcmV?d00001 diff --git a/de.peeeq.wurstscript/src/test/resources/lua53 b/de.peeeq.wurstscript/src/test/resources/lua53 new file mode 100644 index 0000000000000000000000000000000000000000..a12a8386862e99a0a235b1ca5499dc5f2c7f0f8a GIT binary patch literal 249609 zcmeFad3+Q_8aLjP1BL+3pny?PM+_Q7G(m6^0h!4GJuuNArvipBBoGNCCOsU=5u9YD z?H!HRipMJMda$m$;)Qs@ge!oe0R>rECF0f1a0Jj0QOWy#s;Xx?Ec3qm`TYLZzxyn`QaFkqI`NWd0JQnt-IvkUXwhoeyf|CtifnaYd(+~Sg-(_CCm z^DId&cAuUjS>4z2`|fM~3~!zbFJz!JTb#}3NIZHjJe)rl9?qYOo`qmxaW?Bmb)#dv zsNeVmHz0!DbdvJe-`JUG=~wu@GLx=-&+rF*&*U(?c^=k_fs%PPpBszkNY4NDXUch- zC@-E~!WVFk=2=uzy1u+@#*KroFP}NEylh@z;lPDiHx9gU@O9M{*9~IzcH%Lj9d*kD z#=z8LDj<@%Cl1mm-Cw!r`n|t8|2^Q6@Qq#G>ArjJ%T>ew9mKs79K1~mXEz66_vLobei2MLCTn1FS!;axTKofR`sxFjl8%^LXStY zY9%Qlzmt8m>pXAYXOf!Us_X5B2uvP2({C1z+3ZS^%5c65#~d8<1nzEeHctz1u@J{1 z9QWc_f@3KT`qki|`qB?YOLaI_5P;tUIR1p=Asi3mcofHDI3CCGXB_lf$xqT#;!LNf zar{NV&x-SN;`}_$e-+n%6XzGjd9^tI9p`_DYdXCuuK$Vizi_;U<8>Tw;CK@U{np}G zhvR)5AK+MzBaEW~$3`5RaL{injz)F`zk>4)93SJ@iK7X}ZXBQC*n?v)j(_9WkAr^y z!SNN2uW=l}@ePh|aeRm4M;r!@LpaRe5nLR_aSX=^94B#@zn^gNvjAFgK82$V$7vkD z;rJa#I}Y}sh#y=eUAy;ro4 zpa11OOEUXEoAASmFScB9%X!s%)=x~x7?aR@?S?-6*1m23XyBB0L&wi^96LYzn|0T{ z_1*jhh5L7Y`|JwOsmx1DPVbxa)0aQo=WKZM(u}Sny8Ux;dHn~=UA>l+?0nit_jUc? zs+R`MeR0!{zZGS_*?rB1pML)1tp^5YyLz77drR(yqN2Pq=ZH6kzS*iheY>ZAm1oGn z%g4KZ8d$rfVM1|s=5=znD_5SpxBt%%kLg=iQgrgyDdmG^>_6g|x4+=|Q5Dav=-hL} zoI8%BEGyVM;M=FR4Sl2WlId^n+j33W+m}4>{byS)9eMXx=O1`()BQL8@WQ702fldQ zc;bhf)IXK~I&8vwH>-iy|Kjia;mLpBJ-N@8&IMh5AAE;vt@r!qKkKfq*znK=NndIE z3pPJ8?~Q%4FTK0p`tzS~-FRy4PS9mlkL+@En(^4Qo4wwh$&bI3mU7GEx8IhtRVgW% zb3FYopASj<=9~T58(sJIOTFlWKVI~?8}vsOJ$N$EZTI%uA6hgxW51e}TYh)b?t5o; z8}Q8man(e0)ux^`OV7|}Rr_5Cw*SDf(%X(4VyQv?$)Qe$DpZKZ)pDF zZO0?sM%=aRsm1b&r!u|%*LIIxv}X8g-|u|o! zLw{i${m}S)uKHdT$8I;r;eT%&{-HSZ6l!mIQZM*@cA$f{(cB}F1j($C^J__yNVH^;&M5(hskjy(T~Q?KoD_*@#t9{v!AenTAmt8vObKaQMvaro?y zLw|i7d>-)UiXTqJp)X+LMR%#@ZVx2D91L>PZ%QX>$L^AIikrdju)mTtwkyYnr*S;Z z?dW$}@M*fk&0x|O{od`u>0Q;FKh1UMH#M2#3rje@f}A$;FnViEgG;Y!F20=f4 ztee5(*k8eIxMAcexoniv5+OvDJf{x`{Ar<| zO3}Vk1pZZlZ=TNU^^w3oZ`Nx%=kut*=ZbQhW^sIffqzrTIei-E^SHog3VBwQae9F4 z_oTqrEa3Ds*QVbyf`5%@m#aBiatL_}XLEXrcj@;pVYgDi&EQV})9;{Y$4a4xt2kOx zM15C%#rbR(_-6&arrgaixdQ*4z)zpR@nZ#kjh)-uD$y?FAL%z+)N8tE$D27?S|Q|I zBlKYQuYqR0=5cu@3;K739x`rsGfa)ZX9~P?DW^B>@M=+RVF{-<<#|%HizMW{Qt(+W z=$(RpPk~=A^yZw+`OtiWeqWpN7r7by0Q-x6E%Xqc$nkvy{sDnsBkX5@!2et5GdzpS z9~Ahvg&xd2uRu%F%z90BGt?w;hC2PJf@kPZIbR z(JoI2e4s0D-!-BgQ62U>CgfQovBz_d@%PtA68nEE`+eqIuC*39Q}e#+TM<6wtQ>3Dm6u3upIsi%;~<##j0a&dR5 z&_n$hj&}Bevb(~*Wcx4@a62UBzXmWlhE6<0-r7T*9$w* z1^!WipDy~B*)DYgUl`!^y-vvU9`xBma!9UOT>j;P&x6ALr9K>Q>L*j^Us5=qwSxY0 zL0>5R&v=2KA>?-pKVa6Yr{J?n^p|;Nxv)cui!y{iyink`3%pBlGt9jLUm)}!9>?*+ z1pZr-{thnZ&4B5*M9?=2e^|)TQk~F$ljtwK1b&Z@vq{*`cLLu{)YtX9n_*l+pU(?D zuM+xC74)}*Kj~TWbA5s>`+Y9#(=F)x2z(LbrT)13tp36iU*bnJ+CQrGt4UjKUL7L zxr^gXJv0hEyG1{pDCpA!eRBopKSkhuLJw#ArJ17KRYLv*L4VZLkBDP05_rXIuRn7B zB?AAnD0h|U*QWn}U*KKBuAUO~D~0{IXSf+=w7|a(yh}o9XSLT3K`+hX^bLak3!w)| z=yRFCpAq^Gi~dzB@SBA^&O11t2?BpY=%Gfm@3jK|u+T$>z?*Vz7I?SN^J9X3p(xiS z;!M+z{Y~JdV_a{hACOIdBJ^hRzd^{eW(1e>pMw9Zrv8PUpD*xT1fNRLzfAjoAcgw@ zrtOw65=j*>kMYHBs%qyx^imQ~OBB^Nf{G!`RW|dVd zB~`iQ#nsg%)zZvze|bf93C`7v=HhQfWyw68N~)?Vs)$upN%2f9ESC_&8zmExif7I& znhi!3Rf~vfF27w`UV*1d=T^*={1w%+rOJv0l2SZRDy=G6SSgjyq`%c=^JYuMxGj}e z%#w<6dl1pgCNMKY@|TpAOT{3Ps_(8+h__$xE-ep$Wwlb}uUsUdB>$Y!vhosX)?B4* zZb?yw=dBwb0cg?LV^3R?F2+Hu!q3fd3VibiMmE#Es zTJX=2if2@y&}wBS%AZ>@m!1co${AI2P#4k+pz2C?Dy3o}Gzt>};GTk-msJ-l3M4G4 zD3wZQl_=HpP&u9r%md`-kCgZ;=FMl^6cQ2Yo>u`u{l!XI1uuGTC1ffouEH&;2-QLj zKv-H?RW?s4Wp#m=6#+#mt;Pyn#f^iRz@(b05)u`NQr@&x#q(xLrAi6v31n5t+=}@n zU=@H47vSty7FCuM&7jgH2w1}8nn}f0FM_4a1qm+Z7gd+dnpa#dRdS}K3#!VL5-O~C zCV0*(hBD^PA^J)bQdC6Rt6aq8BmpX5TxF$PY0w90wlpx0l+Idl?i{90Wo{*bj02ZT zsR&e7mQ*q6Oj(r*NG@>D%={UFQWDalno^;GBJZt5OzBi46o?bIY*+;>OZ1Gn#c1wQ zeuD@r%FC%@P*TZE7$|tpsIKO;KtY+}X@7N~sI+WenN%JqrUHw~D(DiGF7ZPZurmfi z0Hp%vk2}RPVA<#f1o(>R8HmAw1+z=4U{4@Il}vg($}EiG0YsVlij=Bif5{B945ea5 zMFq@d9%ojGu2NM}9Vl0-%kE)ZeMK)inxJLDf3Deq6@R)V6`P+$|*W>M7_%9 zm2%aU%`BP69)Y~1#fnPSA($LhC8dm+A2z3;A~Vp-iTV7Js%q*rbWPIDFSUqURlERo zqkDqmyujQUC2(yZM!~ZyDtIF;WW9osp-fAKshO16Lq1jn*DYg$0;mGK1TtRBJ(L`6 zzG!nZ9W!&8Su!KQl}hR_D=DAJ#e$CzRS{Yvm_0GKSb?L&&9ds4NK7IH?TwzuDnN!3 zm=RSFZy^$mX`eBQX-KHWQe!ee<`lWQnM#Yx16zjrK)8eA>riLt0 zL5ML^6kW_Jub2UMQdC4nC^{FDeqPA}m^pk4)st*1TKgGg$_;}U8Z;g4ml=yiTT}uW zd#r432+`u{@%d)0m`eN=RdA;m>R1Ug18^54K~x;_C2V9U!n2~KN|ZollndFDs1-d( znzA$!jR1s(U@@VH#?o=2yUGfx1+!0Pd6qhfmf}9Z;)39Tgn=t1)k?tZ)J4TgW%0Z+ zW=y^!Y9b;un@KPu-_ONjJ=|2M+BZSnLDNON zyAXe0(JWXgE2*j?+Ti{Q3}L4FtVUT@?I#Zva|Z}P{>zGs=kbS`5WHif{bGHCiZ8i4 z0K20i$Rlzhi?;(?OR*4=8&a%$f`z3mO$WkED4>*PG0sXwtW0)?!kwrK5)P|~lcELK z=*jMr&JjKZxNGxKU_fyggyo9kHd$8Pp-GgA4ys`VR$^o*o)zn}^APK>5~xST^u}mo z_9(3RE*K%FhBjjMjhF=i3cqo7|6+`06eE%(VNJ7w>oLt9EgWDFzaqc~ z9qOECb!hG|Ko~QC%9!1tQSb)BeCH^&UC^7)nP)qrNW|V`DubR&68{n0i9KaLYlr+)gHDp||Nrm*qXwXA z!GZ7BbpZ}sT!xvbUHTXD0rVp+SK&G=!T{RHU;+^1j72tPZc5Ud);ek&~a z9x=33Z^5s#;8$Ak-&*jiEO;|#Lbq32@Ix&0Yb^MeEckU6{QVYu*n&T5!EdwRc@4!) zH;0f;Kug4ab_?FjxzSyx1)mrrmr^Zw>cQsEWx<=d7rK{j!IQ4dUxo!wGMT?D3m&P4 z=+AAzqv4}J*@8#PCHgD0;LRKh-JEQ}!(gJn=@z`1Yo(jBEqF(iT9PU)c(O0^x6pz& zb7FL_#)6OLOn_fu!S^(o;9PIP_p;zuTJXIs_*E9XnPaEht1WmlXG{1s7QC5LCHy)I z-ps8LK5W5XLJ0BOX2F}eKDyOp!Cz_;a`D z_qE_9Pt5+WwBYR)e3}LCwBY+$@TnI3RTjLUuD7HZo#j% z;P0^D*I4l8+8o_pXTeXk(1$JfX%_r83;s?EzR7|wvf%ew@Y5~$W(&U9g4Zqh85Vqt z1wYe*mxG7x`kRO-^c;i_`p*6dk{sM@-(-@s4>{fGN~yiyZ}{uD+>I-OXVYz?xgEcL zCkUnx$!KEmA%ZD1GQtc#NN^&-YZ&|`!4wJ^s~EhSUVCni*V0FonKG6NB#}m_ivN%-|UWQwU?MVelOUQ|Mx> zV(@JQQ^;b}Gk7$?6sj0C49+2#LKLHt!8Z|1p@}h_!Gj2xeki{NGkpCFh*3Zsd^ zhX|%n!U!|?Ai-A>yoSMF5=^0kv5LXF38s+2sAupFf+VK^_yK}xs5c}A-$yVF z@kYyUto;e5q1|X^a23Hcq#I2PzKdWQ%8f9CXAn$7xUq)8cMwcNx3P-Bw-HQJ8>61V zqY0)V+^Au24#6~Z8b@ICxcT6rXkpn7@R;b4ZTLoudMx(0J{lpX7CAuX{a@t7<`Ce8e)wwgAWp% zOYj;7e@QS6sm3Y>?Frf(;55*!8BAFg$#a$ zU>YI~H-rC5Fb$1H27{j>n1)2d#o$K>rlHVqGWY?4X$UkV2H!_84Shz-Y1aM((~xI0 zGq{T2u>?0U_%4EJ=rh6$o` zGb$N;6Tvi;8Pgd&h+rDRj6w!qLof|phMU2C38o>-$YAir1k+GuxEOps!8Ak}P6nqC zOhc0)0iGbMd&bG?uZ6NY&Z&QmaY0t|r3c*h;3w^}dLX#X?N}RD^X+ml*Xh(hft`59 zd)3d?u>K-$$=bb6S>38{zsn{uuG$D$-6g9hKpez-@gQ5u$cECUWJ&ix zn0n86kNO)b@$)$SVZ8Gt*M((uld=qtoWK~8xm#8n^)`4%um2}hNAC{DDXT~6@(uXN z{LJn7nc>Xs@6q_So(46#vkl&AJxrlp-9lg)oO9g~kGeT<8G(1L2j6hr5y#`<%-#8Q z-#H%J*rjR8G|$vcbaydEzQ{gVTOvV(C;BBw`e|@oNBkpS*4Ni(9`UNX?v&Moa`3yB z!tvh5FzxV>8yjdNwcOZ9`%3gvXqcbs>uKzkwd5Y{eW_kbLVFV%y1^y(L)E_@M}#%Q zn-buK17qHwj92;b*bad5@<<^;4ZkMJ!H7-H-dCMg>bM-eQx1l0vYPxNh}wH@VMJQ; z6ZA;-zN&*;lY_XlQE^kIZ7MA-z0PrYEvi7z4bO_e`%}5f`Rf=8ve~C?n2v(lo2PAx z$wpVQIyJ3DR?E}cAY`gs2c!B~)-IiPrmv)2A*;X0+E6*v>j7*(T~9hf8@~sy1gxHe z-pTLYjk~gHm;_I90$D3hgT+lvgKch3H7)?T<8shVO>3s|bl9a&otf6+6NRUH)So=+ z9(^>%cC^h&l*ZaOumAU%yY2Ong^l{+$=7=&vvDx4@b+W1~;2L^-!Mr z12y^+P<&=9BZQggsYFCJ_8u9L?j>I8f%P=n>W2|&qLWXq-<1MQjW%X;SPU?j=Zn0A~)uV9|!A(2^`yObM@W}bB ze-QCUs9mrvN%@4TNHXg0^7^7De@a)OAv-Up_5=3=Xx@LIGLZ*igxsFS!5Hkn!N5bq zccGm3XdvZ1xzE3+Q&)Ha2;Q@(v3}-VYzOc^C;xYY7gm^@<|EKnL*8OFzPa4^*om$*UHoJ-J zHI$dwUXzs)_;4%qvJUzlXM@lmUq&i}0s3j#?ER8Y*6WDNKsy9Yoj*T|u<&0eu~Gv!3^Qv>*C5+;!C6HB1F$t!J7X>OKz~ zSQWMsi~G{3XQ*2Oi`P?J2^8=Cqe+G{9HSpW2WI{^D%F1C2eImQ!@SuO(OXXIlW*e5 z;P35@+8v<7=u>-0h@Jx8MtAV%d_~!Mkd?$lr+z~cHc@xvqQBY4DthCUHuT{{b&I2J zCJ7oEpJtC%_$l@jFmmv8lH-rLj6iYzie9OJ3!3rdOOCp0fsWR)Gs@--Fqc`1qn6}@ z&ex@pSs!3MS%03)QvmEy{c=3V#&(i+2HMgXj^|jtGFzE$=*C6p{G_mURGi>NDNqO$ z?|85?VM4v0yaWyl4azD#06q{U6OM?xVI~%HB!qbdkDGBo=5Fr(w_Zvt9kpwrO^P87 zFm31$!Fhw%IL1r(v;Dl2eSVsEvTkrl#xgwSxV#1uP?^Hx>SO6?_>^~#gXDaOO7m^H z->UD${1%R|y%kJC!ymcQ>g?bE^*{fNieXH=4!y^x4xB}W!GTcJ;psR&dnSqEJQJy_ zV3_`$!h=+O99)(#>SJDbgOiZPt8SJxx1G$d_9&+4HCY2;hq!R8EwnY}(Vk_*dmobh z)SNDJ)RKuh9->!rYEI`nYSR&hIUYQXo>FtV#8G<(F6bd5KjCmDH^4g9uK++EGYuQ^ zy;@QljW=CtvLr{{8z2uZ2Dzj5B?L{acrwXRHw-*ATn3w+YF=75N8Nsq5d;7AHYq>* zsH65bAoA3sp3npYFvm{q&9k-Yt!UN!y4IzC$XAbfP94bHU*H%1(5nsp4?X@Etax;& z=TKpz$K>E9n|?h8eNXn+%f3XT-jPcNa!lV3e+vP+kxn+CDxTo)kgzMR-lvMm{!Ini zu+1LF`cbxETM2@{U|YFjuifpa-H+Rznq>)+qxLe8dV`G#K-axOPlblOb`j^V!Crjo z87hhv@~pOaOuzXQcTufEYuCZl;Ul9>?YYxagi!bh!{J`6Wn6+`nN#mn_2tbMI_X|#bkMCUux01>jZg1BrM{>P_Lg;saG=zseIPe z&?-<^UUtOsr_*?Z8seenQAujG1VV9oE}7_A;$BdcERJ-9%aXZ(hz*!Vj90KOrh z=N&;0stdzAdc3i}ta78U(oWuq7bB_KB5LLu!Ok?7?&C%(Yo=9#s)N3B3Tfgt!7I?N} z`sGjoooC_g8d7gv5>+k~XlGV~JNcRI`e_)H(V2+@yU_oEki?)EnztvJKnNzFWz^g} zFmP4PQkxWTq0_g)76QF$7TN{|93&f$W*fV17)fOo)g z1ly989>5*!&2R`)Hsgiy^=KC+H;pGAwGq|X%LzQ81&R9ey-y0P9Vq_3GCi z6&>`;Q;0lyr@RAJ;|XrId9n{I`33>@sjr3SKc=_CPnaE8|0@7?Cy(1|0(>KN+A@f1 zY+!1KKFC1fMP>sDT^)^Znw~ISeL0*e;-6#sYVeuZrsG}Zuyyi!-$u-m!BbHR%BUALFhUU zguzAj-U>{x%X@UE{|U$1yHm1HEIUv3Z)B5F;%eJ=Qt*kEGs+3a=Z0oRrGm^2pa$Mg z(k3EgyfJgTv1uqpR+4t3v3-yvMg2+S8ZM8lohNG-;%U3AI%Mq@oNmR@TMjllWpyNi zo1;!S`&88zDA*cr27ee4Jkv>WXNH4ku2Q<3G|R2qz4WAG?E;cKBKvovZh!GY3Bipv zx#1uxaJm4_M(v?|;#ITo3}p;<%i4m}r5_HR=v=lgl+!M+L_LxU>bCo|q{adbF4v}X zmT~P>;TnnK3bd{qJj6LBPMj=j=gXndE*YF0`3>L-`(~3GHtA6jaZ}hGJe)3Tw_;{I zDMMA#y2*Zu>3!NPm)w7c+;BQchRC(O#;d!CaFfVVg!RBrFCdq8CiB41&ZF38xxfRpoB%4o7kTstT zZ54L@gGkn(IzXW0jM;66lz^#?aP<^D}_Lt7FVZ!OqD2;8SW<6Jm| zT7r>nMT`Cb8#y6oH&yrM^=)*sV2i3IXK!49wwy!;k9eb14w?@va3aS0137 z=>MLZ8k=yF%0IP-v9WE5e8}TfvwU-Y=fT8|0?dQ(4lEzSl4hTi3(_V?p5?#s(F`h@ zfDTt^Uy|0EZ+9z~$yzQn2L)xcj_i`8pnFb`T64N22Kw-Reva8Pv-blX=ZQ2(8>JIi zmlyqkbp*;cp_aeOT7^>|$)o`|0p%g!rGzG%ZBkZ~RX(_x`xpHZA`SK0Ofi0TlhPUF z!Dh#%bu_kNzD#WqO5XeLzN}@mq!wmgG5go|!;NZ%cKD0arH;q&w>M%$$J*Upn$Voc z?Y)ot!G-n2n{!fKb0p7XJ4VeH~h0~ns2|KmoA6yQ$%CPaC$dR_|% z_1r_zIqF$S^_;_F{^jVtxJpn4lTKTcWxq3?0s-1e_49J7|Rx(T8Phs|l`=3$I z&~IpCc9^L2W41;U(~Rxp)=M3e!Uz$O?@CaSHQtP-fFHnwPGqsaXYB$QkyT`0l;5`q zqR6h5fl+?-;K$=>j8~xMJTEYL)^PvGr$CW|yuJ0O!AFzrnY-(@E1iSC*xs-yT~+Ek z+@ESl*CE7td?UlTq3^T(5o(uCD-=KLg~Y1R9z5tk=0Yh7o=#NK5vCzkXZJQHrSamY zQgfa)+L0g8#v#tQCskT{KH5`%8w)NxHSjCT2vWvJ#st-_NBl&LEAWLoQ_z%!Fl8i& zf?-$WIY?vI8}W=ONU}0Gc)GK4If<0Q=5}_{FY|YT^)|(w?YasQa#N z=yU#_56iY)?cbQ~%j#`*2u98A;;e2(ci4JAji}bKQ$?KEK|b6+;picO26I@bZXjpx!%y8s5>!(rv zQPvju4`A6bCO<@jRZlVg4z~fN^Zv%3Uw*h5%Bc;@>i9IbjBrl&!S)M%xSFio(RmsaWM|5#cLC>{NuNvmh)7t&U-^Q&oV*!iurFgt&chVcSr=ZgALC*xHf6O}1c zo7O@^$VR5(Hl{17PQW<#$sjyLa3Ou3mO)qP`Ux63mTzvxEjD;?`90(7cEkCz6+((pO-k+O+NX^yoNT_H-K+SBSWDFks27IHmk zCAzQriOB-8sDHK8KULpA zNeuN`1b$gEFNSguWXSqYytw}=$x;Xkn1T{I=DW{bA2MC_XBPC4%TCsRz74g35B>dR zs+HL_^Qnta*Tg#7vPXk&cf)dFnUnA#zf5lToQ#xo&7AYK87O9r;WB z3nXb`<|ipqt!qDC)o&fK`2RuW!}c-NL%w$fX;Qcy4&1}vo#+R>=f8h3!7jg0@v{{ERUDO z#xow>7K|izbf*JFtbIt|I@u3O6YIN}Ka&4Ah}0u%osOwSP%lcd#SuRIO z5I)-DNGjn?c$~=PdK=w?)Rhi2a zQ)I=Mm^5{uJsTGNbvNZS`|E_vBP@iXX?~dUvuG=AbQ>l&NwRiVOUz4LMP8y90;E#% zPkohn2{sib&nlKsHr11dM|wxSD_uEgrcN$H`zFGda0kVP*$LFuX;uOnj@JkIu#w{15W2S&z&!}hULds!6{ zt0DV#3Ray|f%ka@ie&Y;JYWol;_=ne+!OgPp&)PUpK!@3*?bV-BiZimE>fzJopnff^dQ4LVYJsaj4P?j=(W~ZX$y#s? z^npusKX&QC%0o`D`AkX>^KdD+&FNW@pQAsW1|ls#-BVMNb4=!x$n8%>dW-2Rl>DQF zd0DiZ^CY9Xlhgz~6(GZ??vfpOZ~`ZwQjFvJ%0p-e^$>Of(5MbWco`LDTOnXhxkzhF zZ}HSDPD_yjBEOtLIzY{5Mr)3C%uS6&npe^AqKzkI!GbY4fZ0)~kz@BlUBGr~bt8xP zx*S55IJ+sZno51$gGPV$Z2y3GI=HZHq|%9XA@x3%k^^UKlG-Z!yRE@GM|(5( z^JuF{k&UJGTk|I&HXz%rC2`m`ieviLhw!h2x< zDL3dT#sb!uHT1l!DRZ+I zQ==7gCuN3fmQ3i3d4tgx50}e{@ zQD(n>xZz{ohVN2*i6yBBGW8P=l62+-5RH34zZHeD1PztEtk!r951-whluxdVIEJ!8&i*FJCR-)&^ z9m1RP-8JeV{WYow{C*!ym}zLDuq9Jgp>8jV9SzrR7BCIM))224|19F4N;tZ3nHOYq zl3o%m(T5V#eVCXcH{eT4MXA}M)Ld2|1(OtnK>|eIRRA)n+R!~BC))ou)~@6bWor&R zjDxLBpr4=5BBvf`^DK(ZqVXPU64YD&7F+Jwh#T3@{3v*)Q{(KEwcd=?W;ukVtn3|u z_oL6WN1u7w)aN+$GkxX3SpKY&(j7@OB{g$DR&r=RCgubF{jjusXjUKypuH3g-(oG6 zqo~JNECYBGdR4 zGLO-epAho_2~W&?aB!p@yNjC?N8`v;%x>Vk`Az1gy9hU}^ktzPES*oU$T`A8lJa>N zMg7Gx#Uc-i(Zfn)e2isY>kebjB(M6ZXQD4OX{2ExlFtH)%beQ1`048jMa@9flj-9=heX;4l3aZ1VcMJ?OI?Z~rEy ze-BnQ!DeX#*erb)Ja}Q*o0hF*e%llLtzGHq^?$7Od`N8yHjfClb#wgjkC2S#hC6JV zfquZt5h{bYMmheJ)`w(U!=dv+kM*$OZJzAU7LUkoS~Ap=-K1`FgbG06QJai>oK5?p z=l_%mM8lyAJ+@s0K6o)e<5ET>soRX+xQhBmZ1eyA7mQb1z5c;#e73FaKcG0D`U{K% zYF&P?9j&cD0fnLokrGILugxY|WLEby9O~3?(j$Q@=Gz;Ml`ly{Oi^qo z`3jI&R?B10cDXE}gM^>q>4wO8%fF?n1lu|*WgU2-6CVL8xCLS6FY1@P-ujE6r8qp4 zeD5h6wiAsdDMQ0+0lb@x#-khvmhHO;iX=@>F6cYIqd_34_Y8=Hz4vME~Ltp69>-!@}!=%DTaj)rkJ+1DX1V`=j z%&yU4?Fa!ErPQ@61HGEZB@fMT)M9wYPJ}!O@z5zJ2C4(uN!pc3u8994vpr2P;la`NpeK{6}QIPFVt&1 z_7c*j2e#(IM~~2uONfMRk}gFk#2I3Nd>@}Y^YO2Bs|`cmN6OVTKb)b76>ZK)oRp#E z(5f!&TfYkW{rP8Nlt}xb^?%U%FUBanCd(iAmgY7!P#GLu!W6PWWcE9*FIeKk&nQ-o zzHgA#nv;{@Re!_&XXWm??T!`HEMVi)?sBQ0V7N(Vxt)cn@_ZgI*( zr%6gR3$w7p1RDXs2Ky7>su!2kZC_f9$~XUHlOlgJ{e!GwG``Js>ff?|J306MCs@NH zP>5KMyVw-!2X8ucf}Li@E2`>;3=~;@)7o{YxffoP`rH|Yws5% z9Mj=W zdQaQPKt$GZTGUUl3r$;?st-tGrfuf$D1L(oY(;A1LMl}hZz-B$#F?V>OLtBuE62#jGcU~G*SXgodcndnu|(Dq^EQILQN9-i!2+iBR%j@nN!i-7$uEYR{L z4{{foM}h~jlG({o`vUINhT(|%z-hrDuEk$3?IZUh3PV!)BVTBE(@7hAPacdF=AJ=| zNm;a*%ZV@B;~#Sr2BogHq4z6{~mGF(m!H@ z2~>(_MPAzAnkDwD9JL2&NYXGTV$Zv~(ybc_L77nkhA^&yS46w|kSswbf?PiJ)Ah7w zLy}^h06kEjwV5>~(I6fHM!C?dIlbCQCvvx5=z$_^Z*Zj3xgJRtJo%|Um_OpET?Pab zat0*gvP~AU`P5UG8_W9ahoLJKTXjdGymTzxbc%JuY6f|BmV zwjP?oYop<<#v+BV8{rP}5ApyH#)Y~45l)ZiXGIw?!;k30|?&sHbN z{!g@?4>;-$f*FtAbbGMv3dbKCfS_@0A|9#T*hbQ`0ET&rV3MR6*A*>y24Ip$#@x8Lf4&*rwC2Gg1uZ1$vhB{3bh-> zq$}h%wfiYAMot@B7Q2gAAP(q>D3opNOB|KOljq1WjpnYA_WL36q++Uwv{NRMeK~E| zyy@iIu0!bdv|ALa(hIOzIr0z7e2cww!6wcJ!}JTZJn}|38Uk^2gG`41R_!lRNsqkk-uLSJ{fVqyJlJ^wBCu{}0lfIM0-| zq<-ljpy+5e#;{OrS|RZ4JswP`sIMYpLM!LpG6WeydLUI_m&5!Iq69u7mmq@n z1V2WT!su^<1&>Cz-LCXv1NDF$)@}1_&GO1TEp0jG(CCV-3a0uj)wPv(Ey^W@X)z%* zyDRlsED@^1h{oP*g%AL&jT#WcVuH`Js36E~F9=9Fd(xzUUyYXFQDXo!9%) z3$lC0(e7kyc01@mjMik=M{r)BN61ED7(8Wq035flE(*U#GuWLp@X|}odtgX3jZKA+ ziFjR>HU*N}?*AJJDLe8aJ{60SY-48-<{p(vkNPt_P5Pr?mu(l69V1V`*_1;By^tQU z#IMMYBM-)cSUi@FneEHlU@mYC$YQxXt()!2dD;_Upy&;WH*ls=W3}5+*Fa<#iR-rD z!V~;1Ntp|8jsAuIWf&0Ly|xJ5%qx=)5kex&g-L~~+TVi=?TEPid$pbq!;C;!jm?HF z^Dn2QJReFNa{n{rawej9>fcplpA zhy@onoKY@vVw=Eb8qj8?FqG3Cs#>r`(Uiy2YFg-0O|;|{bM2AM6jz3Z>_c0>hqrDe z{qpRwR|4_VjDZZ4cGDFYxW z+z9Q_mLVQ0t;vv_QuUA=i_hAJM65pvmC3;m_u*Q?9#WQ8JfNRseJIz(U@Y!bod=z@ zKTcG7&0|(7{0HfZ9Yg zur{gxVL09+LBL8Vo!)1P#h=#levg%>-Ap}E>x@kgRE(@%sK86&Wdg0b5dFl3u@=TR z%8qo-CCW5(u=@^CfyeY=RC(zU;9pFxttGm++vG+JWijVCqWsq(aU){&T6QC5K; z8(+WnVhcNboF3RkFPOn0=VvV$=sC4_bf{Z8zP@1l!HW&qUhJkf`$J=14?9(ec0TyB zPXwUc36QkF?F}AF_F@xPp86sc;k7l&{gD}5f=Tni7TLBD?gpDroXX`qzM{CV|Ci=H z6+xgE3$NP)*eajzB10=M=@9*E1&9g-@eVRv44^Rt&2lkMP%xMlx?*V1L3`Np3B|sP zK8-bhdYhBIAs5rvIPD3h5%t&Qr|Er-Wn-C-7%(c!hGa%t632$}Iwh~C+m2gKWVbBs zGMtfiCF{b5z7;T&_4Ztcq%S3d2@N^?BkK(qcM7mYc6}%4LqCbU2mFP_A0V+rix;Tt zWifeB2h07B=JxE?yPNqp3U;Ct23%0TaR|x|`lBfN1c*ZP_ zv3YGYM8 z5qlk}b|T-y-gnkNflkO18)*yiV*G@0B1b|BLKRnc3fuvUbvicWyXl<^tcJMI z#)IXd)z0eMLUMZq8ywMpwmO3ba{ATI`B*r)nfep;kb7EWZ7Evdo;LNCPkd;G#wFi?Sy}pNR_6jtU4D=gs}W@If{i{<0gL}($Lg=x zj+@iE(W&$Z9z3?95DPqo5budKU{V@f=x$f8CIi+AGuo+B@|CugQ}|0tTa9q;N;3V|zlz<^O`JR2w2y});( z7qE3C+|yqo>pGyXLi0z~lRJ&|N6#ewqPJy_D+P=iz2Gtq8v~AFNx|EHZ?LVmqqZ`E z65L3RyaVM0+mN+ciu%J|XcGbEG;NnV9_)!>adhZfjHw4$%s`uE)@ktRVjq1cN1Y53 zK5Fl&#!4Qor^TjDZ2#+?DxDF~3sG!)AWpG2Z^SaR8NX1NI1Xu**{RrDF5XpwNXSS8 zx-pk>#3tUVay!=UMds4+;3QNe-?4T{N?!KwOZt<+NBx6k?h9W;o17S-C;Qm4?>se2 zy5be-CsBJJEX7Nk2iW!!6isQQ31BO$w9jIKt29q7K~5zgQDy{k&`XJU+c-aKE3z6O zKo_8(HWxx;6_afY2kLF@pArs=WJ*;!A#HHvP z`qPk>&A>_84zkujB*-ePOPednT-Jxk)}!BNxCAfY7&+8eS-b;v7vPmbS{cTJ{hJ(X zkMo3ei{rt1;^)WaCnR9-W?TQGc$;`>u7|mmUGxHBBSL{6lOmm&p0LInS_H$xN2Ro3 zn5$(Y@6!oww8-9=NB?RQc(L~g+XA1FH5kX)cmf+kXn8=d#p^M~N}xo)k9O2KxB>aH zjJ?Qdl-84cAfLdo&e%R0AYJp2msm(cE=8Wmh3e-4BV%6+#MojyOpXihqhq;|mW%Mf z2JB8|-8MdACV&e##dYVQ-GlFqj#X_I}}rl;VcTsgOs6BNR>C>wI`%Hm?7v7 z;~oZzOWA%e{el-j#2>P=heUs-fa4VAr~JEJH3u-yT=^#P$Fy_EeFUmeu#v!f0LJP& zLEUM3Pf>G>2BoNWsmdbQ`Q1u~Z8}Xi&y)^ib%}|F8 zX9`Bmk64LzEDZ+PU3x0ao(dphJD}%5uSpJyW5f)z{i zP$nMR_1}4o*eWTGcOIltkx`>nM6%=1kSsC*c#u+6qkE-|Oa!JrgcADg$O;78uu{7P zv3EB|?P+=*FZMmS3K!VC>cX2vfnEm9w@d2_XiXdlN9|t$d+>UDj#D}0)2g!y5|uOx z!+dJ1-aCa}Y(QQBTeJ@7D`?ZZ>UW`UfgG5q1i@z83Kp#BNqEi2i+~=BcKk)(8@N%3 z9b)=h*dGL;Od%hdi5^SiQ>n_dZBaIR&mm9MDU{t*pNDC9H+r9LDO|@mXWoiADG-dL zI>GjvW5gpgQIR`}yyp23URa7?LqrYE@TKM+LF_@I?-gNKH8HSu7rjTyX28uLmb2Sn z5BTodSFGhK4hH;bNXlX@<%o*1N@NZs=X-_SZi7u2*NyTgFOo$ADpxin`xCMe%MHqtnU67^{ zMyHQCkUzw5##39^2D(LGu?fU}B=h;k95@*So>VLIIoY;b_cNlrv|&Vqp^S(^J>6K~ zP1Hw;dp^47?s#ti?wKwE8knu>ST2sHXX?jkIen0iK|3V#eXSbhH=y}5_$EX9IJ=tL zhZf9Y`)d$v;Xbnq_lm`74mpHBIwEh3;mFfaFh=*2P+b@VUZKYy{mGj)ji8_5jkoOJ?Jf2nsspUKXE5x}pE6UxUR+ zu+WyI)63(bK!$!H1Fr?Bcf%z`W^~<5Ve{H0UFrIBehpq<>)UXxErD9T*1sYH@CVTT zOS1445NxnbVENlTZEjE8&qGGzJ&+*Zwsf{9c*KTP#NJ=xGa{MaVRaj${r8yo*FX{I zSk2xj#RZWr&HVv8EYxDkX{H**$b z9}c{YveD$M?3+c|BdKglp_ca7@+X5h$FX*?%dXQN4I~Jnm@dRr-v=yl{wz-`K_h|l zkNS7O;jNRU*U}qjw}h_!o|+RS;Ayw41!hATqqSi!Ja5-0LkfESTdg`3B$@aKM<7L8 z(#Plj5gRHo(0{Ez&I(>4<1yM>c_Tn=Oe%IA)XhPxhZ-SC!)jE{%0065wzFzv=1)+5 zAxNogoxZ;-;2e#rcYQ}hH&(lgfh6g+;Eh@2h3mdVMJy`(6=4!J-}V1hU=0Wnu`q3k zx;okS35eT|=soEj!pT}92R$_yE4TriLF%ZZ?-&~+@rT8IaOsO_wd_mQLx_^>Ayw~d zlJA1R2Bq+s|3``%^q}cT@6=Bqs$uM(C;A`phtJ2z{;vYB{}Ql<$;bLfC){USUul2+ zN!Iz{2r^_9>9^4E)nCwn!=k{0v;gkRBLU&u*vhxQ2n8dVuwfkd>CbQgWj;bzq2ZP6 z;e$L9_?~Jwr6z@^}(UlJ}eUXn%UpNu$PEg2?TP`o98SpQc zEO47dv^4J0cY%O?vh@cRfAJSBurK-V;E7I0OU@bCvDop4eR=Dz0=Lk(1lo$@->u() zb-)#qQ^?!q(f*2)tZJd2U%5a=1lb^{+b=h|*_Z)RpT&+qqzy3AA$F))nj$G9;dI6NIqfTXm!88$EG(Yu-9AL2c|{;S=Troj7YosgHP8X;q?2?b(mtd4UlZW3Ij zc`|kv(|lR&y&9DonX0gv!_8Qc#dLx=1lF_m<2s4y1K-wlF>$d!|9!-D51lo?p*DGM zAt=^&!5_VV7&f|jAmOGJVglWCZgjio1TagSr_tHJO7>I&F2Q;OL5@ z8!;&4x6=42ou5P$pg$igpa&E5Z{7o)pI+C10aV$22S7(^mB>ioUMY^OKKAO`e=+AL%8nA^XHc3}G7CNuSK*DL0^lHLFDtJF2 zr%Z!lNo~dy;4Se;o;E5iGn|hdA~zv=D;zr3zBtnpT8N(P!Mg#JRBMbl$WN*bH2uvk zY+Kf6=-6&ck`Xv47bAcUe4iO+A7A4BmVFuk{ZiI2kqWyk-=Bd>qU$4$wG+GeLjCsR z1A)+%V{I-zy71eIab1FX(y+b@uH;*GYJIlm_GYu+YWbDO&fu6<$?fpJmTkB_aXKf_ zMZQG*!Ql)B?;seHS=etUY}8H+lm&Mrp;!>PS9mG9}hJGiU=9c(}n_=@$>v-(GLX++kZTSuh;>Bj*@aE{gHPiVucFr1gIm z`nQn->rILa9!%_V0*gQ}9asZM4$=1|&@@;b!B+)v(HZlo$j8?FB#ba!Ucc$*^r;VR z{5jp{zyD*ZM1z5-Wt)8J2YEddO21`zxkMR=P$Lr3$)rhmVWU7ENq1quEMqpC)F3)syh&pKK}@8ZrzvvbBx?X>0Bz zM1*0!fQ5dKx3y?(6<4&jikzZGOK%tkctWWVl`O!w1JKi5@&K$zsrgQQ8m9hr;k*@$ zecp=dNsii5Xd98IqjnlDf^7*(3R{HKPkcj0gUo%X*Jn*ON%PQ4_1GaBKw)EBkpFjK z3b+|}APMHmCojkQ%2*ah*2LQ0-2O54RiO8MNScOP{|jCoIoH;Wc=bbkH>NxGLv;x@)2DD! z@%{z+@6W9N9-~=?ewczFTtvisTw*@OK7nR#TfB}$&pzSnN) zhK~kf7L)9?eT5x1w?IAT@jNKBkv*;3{49LFi*1X}hrDO>PM<$tm7nzqfrsYj8+?hW@8)wIsJe@vw16K;J`Y*VR zwkm1OwYxp6b(CGQmPq=_cjTXe&!Q(6Y-ReU7yBk)zbAPkq+M> zdvy1vKu^~uv1wieA33W50~DH@;z7!dwr$#IZKEp)=(`&5fwbnZk2U+h&1P>R_r4Ix z=EzoVCoD}4{`kie(kXv15EI1KQ7Mr51Q@lBfa7AA|>fs?v<-Hm^WD}|MF3h3G zrZ-`6nP{s%kF^h#Q;_}rg5qfX$8^=kbz>_CpJ7Xx97@VzY=hw}*@hAKAFxK)31vFb za~<^lr<2)9-7j#&tKG_Z_{47-$Fu_jJ-Sf9{Fhi|F-YNCB|qxPn2<%jqqqliXx1jQ zgJe{tlER-%hKkH4x*J@m!t6VABHU)p#6C*8*%2zFV*HztS=i(vpMQ`B!4USqWbaTq zk--GEvp2qWU^6|jR~o3*HX_3sc?V_7&;h(Nwb>|`YA#}rqJ>NWHU2KYvfS>!Fx&KH z`<)AV8~3t_CsoVo8|rsDf_DKy+JMRrnN?Sssf6iN!rrJ|RPr)%r<085F?WX)TJChT zC#iw$+7s1pMUC>b+@2IS7GS>@RsRCszfoy=kpS)3bIBmGHlIyDcY70=PTvb9+Qpx9 zIWR%QB8^+{bkvh!2!2ksbT@glHW-%Ms(jB>bwC&oWA+ed=3M-RR*kPHF7*mFsWE#J z{Ol;x#rV17^27c+&d&vYxoMWFUL50x8>Wb!?9EHC$0@ha!bXX+Q!6P|t? zi*E>4FyZ|Xo6dC&Fs3f_O|^#1-Ppd3FAsIWyGq}nEN+ij8KqrrL?YHR>*`5VH8(?6 z|3a4r?e7)s&HbVupTVRzZN_E!vJcMh8`CdsY_{VOZqV5W7aSFybm){qN8PKGa|qt+ zhNFC*F15#3vy#RYq9nRB9sruheP_tz=VDoc{X0Lgc=&PJ63hREnCHsL((lC<4txW< z-BEW04;z%%h{;1t(uv9MTwnSn1RO`@MJzo4&eoVniifXcy_CDkDcvxVsuu^{`W>gfg8$(kDJk1g<$TS@V1fi^Ooz&wnQ%GI6?G*VN0z{ugNewd$; zPa#}>-R{6nYNE;Tn~?(^!chl@i1eN38Nk+ssffrXI2lQ~2HYIA^gT&z%d25}Vl6_K z#tVc--F#S7h^#=kNS+4mHEp4xk^)S9Av9T5iMISz>B-|KjBnd$F*A5?r4%^MUJmIP z-?14<^m$o(n}%Syv5rpkqrRL?4x}4vCrnPR;;KaOlcE0yJ__zghisk?NDulwH1=aw z^Cg1Pz#1_Jisf(E{sw%?rDHIKWQwwc2PfR_ux#8lpT2uI4SOFjiv5T$z+*8Ofz<)B zTNNc`;zJ4&UPQsPi@hy7&576tQ3rd)gVw+J`&NhvbL~_Stl?!BbX%~KczUxBEGS_0 z(dK4&vyTKGIxCc+J$`7q58+`@y^913iWVLK%3^OUdO9%w9UgbJU>v7ktiBVWKmO_s z|7VSq`Fwzmj+a!=qa>5(vmfw+E;hfRl3)9>PgZq{c(qf70uHdqL z6_bsK^+WI$-t4azd?MoKxf$3D5qQE3V%YY*n0#2CNUd2m!8RW=!cpUC-jC2Yc(AQY z(~6N@*uN*T*Vu;zD$~9&#--MjcERFxAuMnrEUs>kUDx{ecNH7z3 zh7z_EaoK|?L0FrLZCGX>^G7K{6DL(IoQB&XU#4CX<52O#o`vYf-n#lf!PG?d%KXI* zRv2Y(^Ed?mfXD!C7psEEjK9lS0k_gU@s6o68<(-QBfY08@H~oF+7GwE1!#N`Cg8M5 zAfl$?!$9nP6z#?DbsYu0f?8q)f`{xdVBrDc6eq@YmW=+WXSsfoA8g(hWqlRxw2rP2 zslY8Y+8HuWO2y?%vEg3*s>Gl@zP5>k3PUT z@^bwf#DaqdFqx(gb07f>dvX1s*fP(jn;Wm^R`s-2R;kJv<>~QW6R%w2HsPF{exAgR zjV&v6W|#-yvuV~K<%e1C&htr9wYHab^os9dyz$5jt&-^pH-oBbVkq!4)3oO(Yg;PIn2(;Hs?kBvtTR=?6 zy$sgl_&ij(GGdc=WeS)n)b3N+HxNS;?LwK^d|UX-a^vf9Bu+`ZPPo7NGXA*+N=vlZ zt5NWvK#+{ySUqJ)5%f}9_HM{G5j|;jgdKh9Nbmzvj8x@SExdj*i^Eeej5oUDoL--< zXq9`UQ!v1N@s+SlZPuvi=Sa|CtES}8;7=_!?5uu_BYp(AJjDa zQo>Ds2Sn}FlLuC`V&5DHjC>q8I_7wej!F#eVBQ`o>QYE~n zP3{$*A`EY->NxK_UG-cV-&Gw#@kfcR5{s~!ccQ@a`i-AAz4m8gG)s)|ii!Ua2lQcb3(>igpm{Y8;{NH9nPx zb*ZPBEa+6-_FnQ%W%*ASw>tCnMAUCG54?lKBic&(%?2)OQ`76+0#WSwZu=%$uS?9G z&UGD2h4%LZ4Ovq>IPCe{hm%h?(Ne{FeejO^K!|f6yuyQuUFQ22RID!fv|iTbQ=1Q@ z@FvhziPNrX(rtr#+hlI{>dB>9I0#eFlORt5 zP0>lDk?1z9KZ1T`s5+mR7@2vkxPw_^D0Q9{y{9gi_8f!3D9VHR@2SdBeK1?&fr2F@ zJNXzZ4Uu$lRwM-u5y3|4LdkntReAESPx4bi%6;b9iI1o`lPW0*g}U20c%7H3&qrqn zuVs@;<;0QJU5d7XN{VXBIzztdQV44R+nW0su#=h?&tX00naz33hx+<(;wbiYR)rE( z^;mP!lbziZ_4tAG-y%vgGS_;6JezqdHNFTsal)`KV_vU2P`7=m?n|kH zZuy*UUi8sN_TyhU``b&IdWB|x`^GS`vM4%Odpig08at?f^TQ6p7GRH@ZuP5A zj@>&2#L{aLZPrYV+5JZ6&m7JrW607$TCJ!)gb6tXk5gn69Gi^}lN&grFmkvj57J`J89X3I4c|6H1Tj{stx) zj~9!D@?a{YyxU#{ibOHt*z+bLJCA_)w0`4;N6sMISLQ7nxKmod-`ZX?DZjnuQn=kR zfatY%GRt_?z^nA5EqcUl>gk7|3Gb;Sh_jqGz^!B^Urglq1_5K19w%FmwBP)Vbo+d4 z&Kpd>T6xPy`aI+BXFu9=gEu}heaxVZkA$BW82rt5R~6v-Y#pIuJn?Kr>kOsN9z;%u z^Oe3&4*0fx14Bf;HzwB#Hf6rYC12S-cOa{&wbm2cnr2^?7dbsW4&8Q(_(Iu=@Pe-v zU_{LsA%PP800>QoKHUy!A%E$6dmg*h%)^g@Qj_>kWh1Y7Z2^G55eyWk(NsYbz%>yb zl5amp=_?o(A!!kK*YIWeEd$4(A-NG6j9{dI0q|ii`DWBn*U~0>Vm~UO&CPsJVL#~I zRO!tk@5U5cz>OI`#5(P<<=_mukdf=0r^XO<{c*qbZ6qnqAmjA&+mF|Rxc#v{1e3Ac2grV|-o&6V%h)Bn&gm$~<2e1*>=$WB1@7H=lCxOrkVT|q0 zafny99{2u#W~T2?^vWON{Z@Ftq@qZ4I5pYtbRXLNj&mlD7_Z%%q*7<>6DbR^-XT-1 z(seVARH}GpH904;?^FE`7yLx^3|(TB2bVs`!Ogz;Eg1h?@xQJ%_iXLlwW1)pd&}l6 zSC*8LQl8XJQ?1iiTR**n(V&es{=GyiZ+&WAzKS=SXS953H7s-6H2wV4x{`%VK=8(e zf_?7w&e1+?_}pS_xAFhOCGK= zp}sA#-hqjp8Q&&#L$CE*AyCga#=zxnV_4VCM9Jho0y2=p(Zp z<}S|?j%adqa#)C)?zXXR zJxWfSk<4SN&yU=!9kLj08|~|+xs`9>6Vr+4b=eLSnGX2r!0B|rg*(%Y^!!GE70U)h zk-heSRE^p8P30l-6R{fPk31*G$6G0=_#ygO4m#Nokz6Rzb{XUqg9zfzn6C7&f`8Tj^obOPt$Crf> z)jrV$=v4!d-%(7mP)%fsbDycpg)eoPFVVwR>(4P+W2=f|-NeAIkJ*>)Dmc8KRnxIt zZWyy)4--&%h+d`~Jb|PE=T}*aUrp@Y6&&mYhFSd zvEoa38cqx;$q=2{w7esf8ta2CxOv=j`xh|8?scH~d~lBe>TBB5z)6RDuo_M?PwM;C zrb7Klgaxemg4J)uIbqGXrK3_vHTB*|FsK#(GdA?R(Te|^+tC-Ye<6OS zUMwE#i?>GKrR*#|j2y>B18H)G;ZLIctjLhj4Us~x)Q5&*MT{@bgM5wAUHN+Su&yay z{U)}}T1*n^wq3z|kiMg$H4fHagwD_rNe;use$&p89A>dw5rp@1>HLK5(6frwE+sgn z=DjnUpT6>F-~1WhWn0;E=hF{&B)SgGnV*T)#Ljg)LTw)pV82a(b^cXN3j+g5QR}O% zToXuD`DVWT>_9%FpNYZz|+u=t@r~}&$J^`-l4ZY#a`?)xi?y7D6!qtZBM;jeBhiP@s?+` zjkf)}dAQ$47vx2)vF!yTP9NJI9N{a+UrYr14j8C>jTcK@*iX4owCl+1X2P-3!$V?Y z^5;ECJW%ICvmk+W}QfkO390iHrUW- zY(i`*NcTTPwx3f}p=6FdZw}+YSy|~#OJsNxGq&Q_A>r5{cZRj-daQi~T1#)*%8_dJ zAUwy`;>o_$*tbSsIOAxBvGp&AWacw5>8*Cx-;7@2hCtm>>)WXis4B824K0bm?_$fT zFR?b9kNAi!D-0xv=^$k@J4)hu!;#7Eu^3Oy)>Mlq^m~~jwvo0c)AckSP!HQ4O#CL} z`vu;d=Su0OAv>V@V!jAYS#emYK@is98+Mwgmah8)^tnJmkPG%aX;3qfWk)v9=MjdJ zkM_gaO99YTp!^_Y7x7M3A(%$7SZo)vHzKi}Gx-4h(bPADu-AHjY!3vZy6()ai$3$Z z@d&4bwpucHxj<$5;6;n9hhE8|!NN%;C*aQ%JAPnSfv>=dKTctF=LF9^x7Chl4NObd z`{U^?p7pI)_*R^&{UobAI)4UzIOXtRMvH!D}N5`&n>evcyaq8w7AGH z*pb>|(9%l%T{0ataZ~5q2dQS@U4g}9=z=L8O4apq8c|K)rjcZb{o^?M}T zJO)so8=(HP&E^S`9+|^uz5f4<2kspC1Bh|@8TqAMsPnF2R=N}Ng;`#&C4w1@#2WjT ztY|6!#t;rd_3_MJJ(cCwHly+KW_Fe_46vE)3z9r)D&4lCgYd zKO?x4q=sO()q{UW5>@+o(%Vrz)coWZFj5Ipvmi~OIw74k5wHwhNk6cq7wja)TzZ1) zm3y5yC|0aEPkx=8sN3yFzEEK!$iWLeWmrB|fj?~)GWu8_RG-f4nAq8G{CUm07LGqJ z5>)!CnrldPf%cK9CcA^8?0WUs#L9H#LNl!%J$c zXGljMOinBbSTC*&R4%g?t)yCbNd&-uYt-Z+b1ycQv@&UutW!NNWvku@Kwu9Zd&u3So$7gZL!Q^) zaB?1s6$udDu@i)wxgd5Wi0_{VHAP{llZAD0O2jyf5Bby^2-;JRCysLZ zi>;)FolFx;)q*{iHPyf*8ClF)9f@Z4HCXY_dC6JE=cO*~jqN3*Bp_`HID;^kTJV&t zVw&8B1(7#4RWQh9BUJ`nqlOQ3N+kxZ><*xp!~SejHdYA zv__X`Df%u^8>7OoFP1fr2d+`aM*UqiF8y|f)YLO9OX@1=8>Ql?%I=Nt!|hP`I_aqfDGp>LS1D||xG zxIIQfFL}LtjEU)0J3(5KztzkWq8Y=A+~b9DkLdZSnrzA0<*aSk-76S4`Oa~=cc;6P z?lqk@atplJ<2Go7@wtkw*%ExMwglhcZ3*rxACb4#Gk3^g!$?d`m@DgSD#bFwJ= zWFWFX{lS~-_Lf`v%;x|Hz_bS@)uu|SCbL;FKeO8v=68JqoCyh0<7X+*T0GrfHFC|( z4aw<+_J6lATwt0&i^`RA|3mr)rP%Q~AvKh!sTD;Nl0%9Kho6wFEr!`mD4dWC7BgeU zV!L=>&3Pq|s3DXf9gfS&(`EiDvODC@L}FS--GK76!yA3wdU5E@Zp7Nf^~n$kC?t8ne_5yAnHVT@UFxM;k2;)wLUF-VFZ+E>& zRxhZ9R%m#9QS!pl+T=JtTN5f;A>44NaitorOATq|IX2)jR#$){Se0LwV)J^kBFy@1 zxbp0h=+LfHTz;>UrCWaQFhjnpSr3xIhcUfvy-!nUHm~w3#-`@bt$~DHRx+)Rn!c- z8*LoU57Z}Sp{01=&sn>W6=A_4yQzVbs}uF5k?YyNJES&wV?&oJjf)EM0t>Y{ZZ=yu zKd_q^66HvUy_Q!q>bj!27la#Egp+fDR=ob~stZ$R?+%Q-)IVd5`W9IcNX`Ic`3dZ& zUl0qP?C*NQUxWDPkAV{tfj_D;KoQE`3){PqfEZw+1*q2M%(kCBs9SZYwN^T1~f+jU?6oX+5@TASr+5sk~r~uKrxKV76bw&#s>2O$CuF?5R7%zl_09 z`3MO3=2`lZZAlXwYEu)z%j|Np>;)1y=TH@v`R!BiZ%E^S$)UCnC%MJ{J{-dk-70Q+P}uz{s(5R(H9PG(>aZf3a0U;BR#U)@shr>4M_J? z{b#Ygz8RD7X*Y{no8OvOPMq0wqg_$?bEaqFO(ca7Vlbn_4TKnjmfN3q{Wk~SmlsI9 z9Uzo@*7=-XAglZ}&GpzRbbqNAf<{JDW^JtcXl3 zc1x8fYe-VT_RqF$`IO2}R1dXZQYq`jx{(wsaf?+YYs8D|vy~OwkEj^RHfh*U^tV$O zK5|P#qMGQnI+RhOr)k=r;}(N!)r>NS&eh=AsWEH`;ikhahe=jYgUcbD!DyPoYgX{} zp3zus*OBUq3oB-~RTo8tIxmJPF&E zj>$u>oM!TZXrbR8!}6c;EAkQ!Vt;gucdwVlybL5-iFgVo93B|w2tvu;_$+4fUr=kD zolwg4v}Ke-S82ikzqX_(tNSHZ_EG7OuhRU%kY z;^V(kU#w?@8;Bq48D+)ap=6Nd54Ev$uK8@Mt$20hK`DCmsmX#8ml0TZ97Ww?276Tu z!B&L0P^@{uAfb5C z8ce&7_=wH6(?&8Q?T;b8woaX;a(+|qDS53b3bitFBhv!Rix(9-I^WZp^BAl72!_+d zjhPN#jw~`L8DTXa!y6TiQq*aa)K zW=7BXdA5q%sX{n%KIPeSw3Dv;kmvehNB$)pXJwaDlTgH(JXu*voOPzMKJlFy{~#%U zu%MV|0cI9780(qMaxeHFa|-`Oro?(m$yLk2V823qZA3J9a@|h;L(_}NSH`&prWeLX zR6qjXTp+K7jG0BQQ@@OIOgQ^{SPxxid-mr{vtIo667vf3+@DMf_((>QeGDx^Bo(WJ z$;LuYW>_MVCQ87JMhDBb87|))SRz-$Qeiv*^S4h}yuWV@MWG}AP~OWu#%%lOCBR&G zotfDOH8vPed!&{Nv<(2h<&CH3xUOOlp^0w$^%ofb=@c=Ew{Wd_3p+xx96CYt0-?0n zn?L7(WU%|42f^;G>k&L@ea$}A_#TWZT94(tRJen}(zvw0(IYyVU9QB3-5@Wmk7!Qtm&E;h%9m8R|bTdXFf7_BP(S%xkNCq0TgAw_veXco7^mm|!u=^k=%1xQQ+v zy+=Rh1E&KQ!cP6OHC zpY7SO+xg}8DypChW2CYX-vP~7i(V5dIHZaPVLkX+BiCaFn+MZbAsBP0xqP9&+goTC zW$pTMdkAyPV+QdjVX5L5@jvK-Brk_r&2wnxUEI!b3I1xCo6sfog8zBE}KVyOpWCKZgu+xX>GMXM--TTogO7t zqRI@hdGR+w+T0hBu8Q^0oE6{1`m{)(-bhV*555aSp*&*cYEntPeMhVN2%4SEGFr~~ zjS6KAwtQvAv^k zHm9C4hYbk$nMX*5u3#&!_FBd4L$P|SI~o}ksesv%-Bx@Tu-iw&QAy`{p36n-!oTp* zZ2u^$d8!A%FOXu+<=nI&(;^>@>1V+E46;;5?G8SmUDV?(Xyr~h1=I7HxJ+Ch+wE(g zBqTjvvP^?!Y|isgKloZI#`ZrV7ha>N)a#GxZ)#% zZg||obs}EEl+n*u{Aj(J1_8>;#mn=Z-gEtiVXU0@yTyQQ+u#6JE$Ux7jQ@l}<zCI*w;w%kyD&fWftI;C40SRKFGhll8A5-o_|=e?QA;Ls z0pC647cy|R+WU~0X+E;me$uO_fqL-%;CE_lAiFZIogytcb5snf1o~j*x_MO@pTya_ zYe)Tu6>oq?7zYK8i;k{iGyGg`82l2oqo&(d{45H&z6pD&h+QE3{e8UW$vVtjvCR~A z0mh-R3_r0g;yDv5O@AQ9QP6vfK2bhP9-8?Q`B)U`oK`?}v7Y0sJFj5+;P8sv?_d&QLy}0)+cTj(& z^Sl{9X#MAh=a4jdsTtCx;x`od|7mFd=RKDU@1rfz)Kw5%F!8BNeZ`L(x)ldmI>1Bc zS1u*m!H;#4pOGb-0onQ0UY8C5t>PoQ{Y}z-&-NSs7q1abB(~zcv#)lWlc75iA~2Xo zncc{gF^qkYA)mWUtO(iZTX?QN(mB8eApOITEZ*g3RONh=RzD!b8{_ygTvefw1M~V7Tg~s&3+HZwK;)Q9LZTeUJr$%$ zC?LZpy#Acu-c8Ja#XTUn`vM`0aid{3L+ppaC`EpzBC>(hg_Qg3PCb)arf0Wm`Vr>9 z?ho3x9b^tfPwu%o_W37iLqiVR6(&E14h5I4+Dk~Ug5{Rhf{gz;vpdr`NwS7 zZNEx)!0(LF+^|vbA;vZHZld0q(KN33#179#_GhYc4$bOM2x;%!AT%1O;nbaH|DFMI zrV&3bxo+gX;4{%6&f(HPfph`WLce<$I42=l$juGzL!%q{UFbEN`qNd7jsef!$cy9! zgz!X4rZac=Y^6rlj_^Zpgr--8L-{NpPcBZ>7do#fsLA!mkuQXB zNe#QEBbAxZry(WwPmJm{q=bN^tI*&*^+NlRomVpR(w>d%CNQ1T+Ij;|7w~yNjNtdG z61eIx7)_P!_E?BcV-R_ZOo92%Okp zn?s`{g_TNpZ%GliwaEr)h4&=;#X4JKt4={DL>F<-VRe4U7-(&QR4n8JM?jo&dy71o zvk2g`t<8El*AIp}#=8SI0<|#I_(kaYT}6ib@Il?rTw!-OuUaOX%rBmGQpkDP)&A5% zPoCG9nX zU7N2ga@Lq*AlZx^iv|hO&-v;um&6`lo~uty!EL~&Y@D7AuJ+lTK;UW#u-1hfhe)Jx z$$9o4ABAmsX0HAG+h)SqlbBw~iP&u5F-V*~-Z+W)ME!{8B(?3Km?3nxykfn}ER)j; zlXZ|&H#A`%{Ri>Kk6B=okss)&@e9BFddsUdc}&(kTlxb&O`~zyXYHWE1uI0UIj*1< z8V;~m!VbD{iI-J^95++{$<%7ta>ftzpKNgJS%-hALw>#Qp}H)94|DrSGQa)}n_2G1fB=wS?O-^4VC;zu=ikObxuj z&?$qSmM4t09^bgbuOD}JE>94Y|ghnOZ52RUY- zdGM%dgzh}W8`lzz|C4894%6%AKkzi`^@RStp(~L8(Y#TEdCuD^jeRlZSW|0AwJzGu zn=!|k2QRAKMVq)DbG&)bspd}5WpgM0zaUKny{9&HnhzolBtEW2kB#P4qOr^=b(X21 zku#}b+mfi%iJig37wl&lJBq=v7X6m@I)Fu3M+v!ctwvmn-9m9a=%BVqgaJy*Qpnc% zkt(1gF$q#_uSxW{WuKyKAhvH<^cPN8VDT@{Im1v<6PI}vA2}y-_X7RP^OD1w=VK&L zNS37k7d7zzn4`^uQ`JpL7pqxr+ZRL%&e0G-#{a`P8(*2Pj^zJX&$n?~n2S@b<_-$e zpiP5gPEwh8lR=}d$DC{)oT&QcDzuu7!D-SKVG0lV{nw2f)|l(q?mG40151tBflbq& zkXH0+hE$s;!xuE(FW_XzGf8#Fm}ukpKJLd1H?TQeroVqd(I@h#q&+4GtdV`P11M@b zF85EYXLNM!3#do#S=O<4b+uSS6HTb&TgQ0 zDeog)q1WX(|KRH2<0Vqm8+Rg31X2$Zg_y0*Ll}{nw+F94Z89`Pvf>M!Bd9>5{q0v6 z?F$GZ@@o4N8jy3zzpqU_&DOSpP9d1)-suXaVK0az;Kvo~`{tLCWZo(NVUNpvaWQ;h z|KVk-a($LBdwi2yyYo>!-fCj4OgPojtJG$U<-q=LWc1N&d}a1LIEBvK?g|2dAGfNNO@#=`SW%6hN|0coT3H(|sV#$`pRvMHGRKcCo z$Ow{nJ*IIO7E+_1{e4x|eeF!$)Y*&eSAU%`u)6I}|4TiRt9Ev| z^-L4Wb)L_5!;Y>@ku63G16vJ(O}S)P|IB1mu6dk0Z{MDdX0k3aWd5TV>j)KiF_q6-+lz~}ZsBJR#739+ zq60e$N;F$lxnA7QV4#8w1@Faf2Bl0qZtnMMnfmEZKL4HhM3Kb$B&WO@BYYSolqeVi zR2HJqgBL#!4yQ%qyL2^D!j`IwP-+;$0ybRmj}RIAN1mtg?zd?z4N#_j&Cj)-f8XR! z?KF$R0R=DT#QUQ9ey`k^`8A1l=}m#e%VH)!-XQB=M2sOeWxXQv@rOwRd3Il~#Q6@R zz^mxHzY^2!P!|CGB;I{MSLmDR%87luGTiG5>_Xi|(?+~k7bz&)-a|8dtUA{~Flt%q zpza@kORtP;qxwN40>Cu?l!0MwE3u;{(V0<$uj8#875XUrB!HzR_cIVL{kF!Dr)LRV z?S_={VGqkGe+=a{)u2p5<}}rqZ)S&8MDuM<-}%PJg>KIsAM}?&%eTCC{!YzZzsT5A z`^Arigm-&p2Q4x;i?tp0m)O=zrBmqUqqRr@%vY>bbRJ5$uJd>^wVU;q$UOTHIFX0- zBk}k>`-=4#CX*rdi4O~h+FS-Lmttn>pzd)Z18p}`ylWXVkuZ>0k7X@73k^gVzW{|uWi=6| zkl&(XtT`UuJUZ~Z`Geeq6f0Bic>Vgfo;M8Vv^+PiPgVTE{uK2?o2)rfmw5o~&;*=c zy9Al}7`0=W^lo`%P@rR6DWIZ|j4Sefjb4H?X_`HLg{s2**4CS8q15xnRm5@xQr7se zMI>5pc}c(8#WY=@fLX}eOl^*%!5hoOGJjk?lnR}4ijm(P0zxNP+< zr*gf@T=Nki(UR9+Uaa*Bak-OA0WT|`vumd%CzNu`HQ>FgGW>RWzuWZ70?^z1gi`mq ze$Tr~HksSI%(_sB*N<{fc6qFjdrjRmp>-w?P`Qo0%N`2qFT^C6WgotdF(ORQZ{NRM z_3P>d)(42ZDL#>ptmf}{WkY&dW$$G2g<{wH{n*hWtG-#d+ zQ?ePH+>B1`vEQ2F_*|fBbE#7l`qvvct04-$5pk2rDObLcpCqv_ZJ8t2ZYr`b2V0{2 zi~WLUtCBb3kdhCsCR9VsWc>jM^n1+=ZGHbBy^AiC7+xZUIi%O?QP)+?AXCjY^Np+W ziu_efmDzu$*wQMlRQ7SyD*X;P*8M#mr2s9rcPGyi~CcWb~lxP+m$zd_=f0ZcY zG9O7Ae+}@wvGpeAZ58jsFBFa&N)Ve-#-X$0{mZ@a5X20|qVMvZPMA!Lr4;zq2?sh}t(naN~=K!7NG_VasT=f7dq@22YY{aHJ|F8_!dn)v(dp!4NzBgZK&@?ZB8|8Zq@$1 z_^o_OQZBrdk7|-vkT=XF=JqOoVSAGnhI|V1uT4xV=2ew|1#Qj^rtdf+0mcMXysLZdcH8{`hlG5 zCv&b_y=ygp8rK7Lak?I=hFLi!r{`Q(IvmsPs_QUl5^dVbKR74 zZBvJ+O7-kCHM%{0$Sb2>|Bh=7pROPEuHmD6(tn9pjD>3S`<_sgR1)XpV{yv{-)&zW zH#<8{k?_>s{h?;xYHea?^aQ4CRoYwXt`qP9WNkNNI&`hEA0LCw(}%xE_aJ*AjFb`P zTrE-yvNh>yF5ZeB(N*3;v^>|Xk#B|)Br;y^@d+)(9dW7X>MC?>GGr&N*QpxOb!xm% z{vWgE;HAcj%_aP_zx|(2n+gA{W{jD4z_)U;bk50>G;eBCQ?N)#<+9ym*ChG=D(XAd%8-2-JZQ?SqUTd29r#>*addfSioXiEdeF}TX{ zcbNU8WF?z1QZ^%;xCzFp--T%KTkvPKF{{`}&jz+9OvBb8*!yE0g=0^J zZUXJW;l=QdPUC7ZfXJ3%n<737z|gkgD&QgBx{|Gu7x@htM>xaaQh#}?a-9#BL`nM< zV(om?QEXo@TGVXa+p3rBwb)PIkgb7Je%qY>6+1)hP$ZA<%@rZvzR>QCA>YPO*{j3{ zC)xsScE7f5{e!+X!qvz1vJs!lidAeiIG1*3yp?l4jZ5!}2V}c1TR2AtDnGUEN`WrY zDbKqqkQ&>Yn#(Z=t+lBkCJB>=*IKmue60`l3w1EFK{T7I`gfg7GPK0rlj||1S%*%B zV3|YT(2@rSX>XFxw#-Ur7gnYcj38gc=jo<%#P@ zn<*4(T$3*7g^Jt1rHBAlF>10FU4W1aCf*1)zQmD}hMSp1 zyK!n9pCJ{ae*_cl!9-iz$D$YCCwPCLmbJc50)|=!idwc{B95+O@d}5V#9@HV&ow8u zlREjL)Y+fZCBIXr)ZljknCM-`P+(Ne$oYerBE9EZi|*savj|5pqv@l;odxqH4vIMT zaAJH>UE({0!;eHK=rJ8NT{gYVb~Mw;<>A!KVpCIh5G~X`u2Qolm@FuX467p*vS5kN zqUG?Y@A;!2b*;tGHvSO)n>;DDGe7oeetcQ<7lDQ259w+#F*>Tmx69rIMCzt0!Xp?w zk^N2VI9dtV)KaP7b?`rwi*j=gnSt5sozP zPxNLB9)QYhU@29S<-|YD0og~*7)=ban|Zxr{f5p|s5hA(TkYFz_(*5}P(G$D1cvQE z5=!A6K4h3zlW99O?1wi4PWoUEYw<;HT^l+<)X4(~e;|K*D1UrW*RvXby(ho4;dO42 zu|smo+*h0Yrj9%rlovfotK37(c@$yvtz!E`BsxsBWDqObQoE9zd*uOcY6_gp({x=m zMb0>|*dkSJh>`=@V;KRm*Y*D?;C^b2XeA@ekXgj6)(tl1&4zbV6ME@)Vp-eX6G(~3 zv~GL1e+Xs@0=(#=AY!h)V*T!SnCb85G!D)ZJNdS2SquD}^KD}D3y&mUKtx#-l(?V@ zD`x`BvwJkKGj}95x=Cl|W7x=6Eet&nE4agFkYc{b`X@Dho5UKBW}j&sJB^c^4fe)Q zE^$O!`%1Qgjb)8SCrf;!>6=<`@?_ z4RoZr zOxF51QDAlC1P8ZVHvT>HI;hvJ(fI)|6sUadX14d#4GxsOW{9n#b;G+noJ-=|Xps{6 zn|OcPm^ag{pg*#BK=Rf?-1+ZwJd{6_fSxXfb1S3%WG19MD;$TB4EEFb7NtoC1Jq>4 z&Wwke@2D=+s$Xs5WSw=@waoD0O9>)-&pCyGFnk_rVDqZ?we)KIM!g~N==s*2+SQS~ zbO;bzcQ$kFd~E#q=j^*t<46ADn^j8_Z7?ePtw%jKlBY}i^Pj!eIOw*@N9XB>C`&Q{ zJucSX!SR9oRjjxBGpe{>vZ|9ek+9EG{Tpc3+gxwdr{oO8Z96&fI6=aj%d&{g1hyZX zfZjS$`UXf$ANF?#57lFrhRk7q0@JyX=Y944!L_g_ zY?iL0)lRjUMO%39b<@XY>RZet+F>8X)W*npQ#?fJU$W=lHKPsn-+rAhFZw@vDSwDd zU&;S)@0~wEJ6Zk)Yd*}J!A#1}HaGpHz3MEJ2bAS2MV}Osmvoi&(b*G5hY8RVpnvSbuUUDRu~PWnCx zCNGC=y`}SxIL_GQ9^V1JD6I*kFJ`U@CblI=XWVT*X?wT89ywm~zM6g5Kw*}LH@qLv z8CBiBS(Czz9nt{mQr8YB?9%x}-JDPKVR0bV+Z#Ez29#k(kd_;_ie@9#s)Rkc0B->D zAH;*fp(W{0gu^HYk@uhUBVS&aNq-XqNL)DSS4ki&*2j_V65Ql9ygKkb=hyiEz44#n zPpnIjsLMZ*hcbmdu{9@OVvAX);1gE^w0}VKXEH>19w!k-#nJBgq1&6V9B|!Q z!LU=H*)6(cIuBwhufA=X#}EjFU2=w*=0i$cPN1ELR`dUA8p8>e<7~2SSGERmf)}`R zIe}!BI6)i!q9ve5^DC5k%-dGtu7x-^PzXKbdwhiw^3e6-e{!VQzyGB|KzJKSUMhw@ z%wyUz4;mVDX3ALn{&YxYB9FOu9akPF_j{gBl!Osb|DYlP*URY@=_EEiDYel3` z?P_J-Rkj5aYpj^eZRa}vbHC+~rPQ25^X#`i@9jnP9#OHLq^fWpU%T93?Z{bWrsEPji5Dl6*-8ao80jVmaVqe8}AK! z^~?a8NTYW#+Zf&-BM|N7KNN*A1C2doROy{kr9IYOlxFR(*{g9k!Pigvp3B!c59Gi& zmkfU<`i&Oh;|G>ckS?Lh3yYNE^}@kV`ZjbX+MJVsmw02Bu}_|uylDtY z_ecgb(@$17K4X;07OQf>_ZEDR zlvd-2IZDn#dyH=FnqbBvtvEJnVYUi*sjLu(XCtj7z%IuGX8 zJ9~RCNCcImKr61@6Os|T&>nw3BNqFzD7re$1he{8Rv$%X>YyT$PJU_Mrw-K@f?D|M zm53h9BENWhS`SM&u1c-v8#)WC2Qeb1pvvUP=j4Tmt)AF6E4HV96(y+_`s+;K*3xcVed4uvx7S04&cdB@! z^KDrq*8-xJ43mV#^Z&)XLAqk)XaRj|`gNGRpc2A3l#Nrlx>(zVlp`iI)|H0jpQ?&& z>*qW)lVRXQ7`+WDKmJygSyDicYq8i1gJtB%GkLAb+9_{Ocgy>0vDsL1s^1wdvupE- zNHRciE2ye^!ULLg+iJ_Pe^8!q90wDeCxY+T z)gQ^HX0pP6j*?)X%bdkFoE`h}$jIr|oh=|J)^%v?%YvybGmeK}48KMO4muWF)4T2P z4-Bzrh9eFX+La%fC8kQe*mnD^K}Hpy8JkNc`S|S=F|U{#cB}j9%4}6v6QY%-JA8(s zdgB@(eUY?PS2=A`JFzd1vYLM)?wx_-aNuYO;{j8sL}Aw=SFcJPdhz#jp?#1h%rc@W z6vuBooi&f+V2W7PqCts8n(&6K^ly*9DHe>xXafd%(7pgVeRv? zyt$4<=DjFXSQ}#hn)gtnwvM=d8sf=}17Sl_GS$ic!$7_I;h87YbnB}XAh ziJRkveV?F1C^Bah--O9)kL7#!5e2cfKGhBYm#ih1G@gH<_*VOvbiuBNGxiAd1aHit zCw#TB4?`F#WSZ-<-ir6h-hPtC?E{n9Y?&yb9kferbECQnOAPsyDWs$*o6NdY437Vd z_xRe}jAimt7(v%}#o-;ip`!Rny5b*EG9AkJtxS zQ)+)ReL2GZ(s&ZKvR%X8nZ6uszn{JwV(-;ua#U?&C+@7a_xiD@ognA?Hv9YMiEkm^ z8NnKu($-+&$3?czixqUs-OoaetJtY6p~^AYyX@2W#<<98%7cmPhFXgrgH~KuSsf#c zuj~Uizhg&E{D-vaZjP~AfyRM8=+3Le)(ca_osOoN(L-kzgT`=U!JW12^Xk<6$b=?) zngv9oX^}VM{1V>#iY>s0RY98iSmd;`jI95ybdtH5;e zyz5*nUzi&4zD$a=J_|fmIq(#E@NiVI%TMdzvH8&|2*6%9N1nt1<_o#$Cr{>4lp4 zv}Z619D3}+vl^A_pafG6NEw1*Zi--r+Y?lrZrtsDwjaTKb#A&F^>m|T-n2e`)q<8B z*umwyoUb4PA%8GhRerSI;KywM(7lKDx7;UKkYLu7Gb8WkF}>jNkm!s0vKJMUV|vdB zrlzxm_a5l?2vqgIUz`8q21&B7A~#P!#_U zy{7r|NNcfg^q5E?iJ_YpO6$^r4%jI$6Bw(QGWyOrKf4G~l^XWu6_Qw_p(63lg8~9M zx&d#==!sVIZ}c(u%ejxYTFtlVJ~gaOpQO&YL>2J%I(?NIHV5C&QX@Th_KExKVM;C) z398%{_u0LAmM*v2eRfxFxu@M{@!V(TgkG3NsfV-ecCRcG!q-Y?5ldh-E9y`4yEs!o z=hev!UPC>Y!G!->Km9qStmdQ#(1)r*irG&46RBVSkMWY}xW`wnHJ{tRzg53rP+B-k zBK9P80R6$l%;m&ahf-s%{;n@?^f$;-w?~e?BIie9&a8S!Wab_#7m`Jrbk>|Hy#67D$dZLj;isI1< z`>nqeEC{SixW^fUZ?6qGA0u!ao5k~Ig5|+k55-X@hJod_=M)qreo#V>5QC(Gbl0+AA~RDTOKZ38S<^< zI5E#Bb<1($1(8>2DZPlG?<-o#RBqj;?q?rszH`3>Ma3L5W{%^GgHJHpn@|4A-XkN& zhdKu6fjM}q3ct?b155`z{7tpq2%^&d$TUq+AxS`83bLC@3Q^GCZ zrTnW38OMVv-$d_!9ooX+|+(yfa zyoB|afuwl`!=CP+zIWH#6``}OE@8ViR=P&GgA<}lnewS~)?KDK-;Kg|Mg!H8$ohIc zFugzSyWnm=|2NL>zzYV0=E#x0$TQ~)be*5U_j9o8bY)Y3-Wd5-T=}Xp9f-e38EG!* zJa7h;D{FPcG#1xxyW<1%A&A6N3dZJT5ZEtrDOUQxI=NyxthoHHo=)G7&DJ4&zJx3k z2HM9B%G)&--|f%T-W;*X>z&-T`6% z=l(|0{oM&*^mk5ff6aDISz@NY??9m}RxiB6(9uEq+;Wiq9%8Dseq%bvnd?n_?DqQ( zuix&g#}DlH)$XV9A05!|ds>~@JZ$j>Bpr$~1^{C{d2e0aVt?0czH%&6LAm$>QHAd&DN%VZY0n<^#z+KZn@{ zUeFj#4Hy#h+VJaJ`0W6#Z@JB&YFP0e)T5g6k2oaWihpQSrCG#^_HsP)_(8>1{4FYi zrTYPdr&fG5Ma&!b_%E>$Ew<}*vZYv@WREff$W&%Oq)q|z_(u(Hy*FKEZM%NsvJ@*HLUnk$C;UB>@xjr)Nvp8~*#E}Pk za}X3bg{mjZPtqMoLq94Dee-zA3tP^Y`o{D_^2&5LU4C#*`J=t^T|cF;tDhKooOU%E z5j;{kv9s@`ktCMI-nC*o^5qjJ+cwLPy5Cz6X=MF8Qmbf^POVt(3@kZH!=aO%JD4fG zfu;P%1o_1N97NU;)R%vqKj`}`_9fwK*ZJo^4EN2=)H$_9b?p?>&A&$kO5;j2z0<^e zAbiT18GY&&*Zc!>CHh+fg}z*UH?hhnBu#)qd{XQKE4GiNefC)5#q-JS&>1irH0K}Y z$ht9j3$S2E-8DpkQRDGip==hlxFSHxM3Ft6iY48OSmX;mtDf;UKUB63uPldBtg>PR zV&v7NZem5Z1D%q^u8;k}$}i{tHr)71z?Ei+Rh%DDQ}(gkzTw>*HoJ+HrviBpOZf;M zPYgA_eJr)Y(1P|S>4ANDsVH0zC{;`VEzzZB)dKf%BI9RGRwy{2SYo_3d7;17*TD(8 z#ik-ToAFn@q%+g}_M3+z+dwSKp(dh$itBu6Qf%tZ@mcQ}7j`-!oW>>>=7eG+2u`jL_KJgyA3JEufs^9L2axPn+4p&fUZ}v z^S%H8nfFCdp?xGeo5$r0pXj<1)#d%#jOwzSoyNw`%Bg0Gxh4h{&NkzOP~y`NYv?)) znW(>tPi7rQ^My3;@(a0lzo7y=)LFeDV*PlAHQQ#&F&>L(gu%F`PV^BnhgfFoKcjE` z)HawP+d(uGvO;S^tgfrI9R5d%K^OyS4$n8$hu!M)sa|#h4(DC7j?u}l+c|3X{E&5F z2jSXT{u$fXHs@m{oax!UIkdrc!^3mlXXLY4moOe>SyY5~6U$DNM>UtTi<8s7O6(wB zC^dF3nNVh4&Z5M}!ewK@f{?GRcUy*EDz_7^qhzRuShyjvJ-)zGsMSh!6N=gX*xnN{ zGB}9yP#&~>G+@E|@|_cu65)i%>QdG_4n|XSJ~RFc-dC36$R+@jz2fg$$lSBU#efrbx&*`&ZGKG^Kbyz@CE9v@!N{0*}vKR>x*}_gh$$^L4~Gz?P~ScBsy4d3$%3)fK&*g zR-{isZ0~8|)bIf_4mFLLt=H)7;l@e#<<Wvr7f3zoWWHu1%}?65gT>Ru>yr$1Ezy=c>B6 zqq@{B;ByNM<|*fUa`5)5j_N|a;=y1?Dm(LE?OO3SzM+s)9ouc{lPl`<<#>-)@qhy$ z@7R8<-k-kCx~CN%X8dMgR*%AstuP#@^(q_gRd&qratZ9~jXa(Ktm_f*O?_0iYXwYg z9k!d)AzaPqBb`iINS}6gx5{9*;t%tlNdO~ZLX(hmBm^B;uw5L_ejQmJtn4v>T5+?< zH$D4I51boVH*^u zVrg`$@Gya~7cf4D`qKO;r04*Ar3x#kE;R8zhQD|nkDNq;JMch=0Hosq6*R15{WW5C za1o7H9lBX*Ak}05e1Ow&7Pzx*vH=hN!Q@prgHkiDZCyu)8`lQPHia7BlAAV=nobM< z;8X`rlk+jWI^hc(*@Fl;QYc}uoQtI)-v))KMgDgS2 zg~YofdMlf&yopC8=2DM5%zWT8IJ|L?=v0&Z8Nc&%SbeVS69?NP3|wN`Bp=D{q$sd zh+Q$$fQ?58)_fO%`*xcyGOvVx@!1KfV7?!IM@ga8KwG&yy3_d&u;KDSZwSQlTqecY z*zu!zZR*Tu6VAhK<#E*mVC0ZQhmS3T;c(ez5AZlKB6Vb6?%~3AjXuxlv%-K!8nyZ& zEVYJSxctWbqMR?%^pu0oO45-1D}4HRe=vL=!X|{i_?%4+gAgZxVzx~W?cS{TCy>gv zMQh=GLe_@PP;8G>@wMK60*3Mlk3ZlEWY~FHZNeI0zSQ0{|YqfrQ2x`HWO*}zMWC?Pu zs|a4cj<;{lC_oF;J_@m;tS)yLGSKb6JAOvBg4H_zW7H1#fQv+eGfo{{qB6u57KPh- z3#`SL3<{KOR8W2Z_0L*(2qVpjKGg6g2+U% zl$em)Ep_$)HC!uwNzSZN`=2x`XBLRy*3@aBP}^M(r}b4=o@@rQ|BBB%%=T!dM zS-0)W|9*#rkt4>)ld}#YPabF8CTD)R?f;xb&wtha*_Z9$bI`bx^q7+{|nUE9DKM8J`8^U6@x#9_kHl; znQEVG>%-H}Q{B1tUYh?V_Q$8@U=>=2{Fq3GAZ}tr#5JTw&k+$_WXxy&2r%&cb<9BfU{*E^WzrW88aT>q>iqx*mA+=F1yt(ku?|%u8 z@Osek{vB^zc(~{*m;Oi$F@)C773T;SNbZ1PeuAu82g=D?{|!7ojnhHlDd3HPr#}~c z;ra1?@LYZ{cuvT|gYqtEg7%(v2#`KJYSof;K3uj{5>BEGVHO=`rf{yqh!2Sd%nv+w zrj$IGUwI%^Ww?HMz=5hD(*TJ|=Up9c+-Phi--fLIYWTkv7B#&Rb1txTG@$PGoj%P$C{iv=E%)N^b(qdxTL zHR#eSpBj>lv_i5NJ~`IyfL&FERUDbb7vvJawq0vAe@{2avA5Zwkvvv&0|szl2~riO0BG85PKO}B=vs`Ns|=L} z=?BYD(=y+`@pjJl4`9s&mY~(;b+zF?SCYqcJNw?sDc57#0oi$7|Cz-P<)>uIugNW6 zWy&+31e8fmD){=qabYeTt)B`GL`|OaAN1PgTYbwPpIg3DO3V`U-8^SNpYpDJJ6z@BYv7-W$nRTzysHF!P5GPL{^pF^ z&;d>yQp$|m*Ng{PbjPCtTx&eC(`4hO-0`4bUt-$3YIyVmP8)P|e>!)kw0_hutV~o)_}m8OSrn zJ*U1gu+;tP8^R;EK2|?HQ_-^%Me0`bYtYu$qIw-KT@(yQF84*jd#qAtIPkL+3@kAj z<>xT^;@4U4oAY)qJ?79I{NfS!75rH?)uY6H$^-^=DydfxpR$U+QzSq@D<0ZD@{h)hP5wkXe<~z&T ztR>&n>|%X0%l+V$+z09G3a|_NfHR6_Xu0`kRTkt2j1s{YBx=oKl%&Fj%Ow$j%mZhcmFDd9^*?G|G zO%}-GbE_=$s+{IbOIInuH^I~f5#fFaEWx~Wb%MQ)I7i=xPsnX}6v6|~#}wyFugh6< z@7|CD;G@iN58ZPO+dTaxmbsjv3Nh%@t+w2+c7Rbs3sanPzi>-t>%Tv@WO;Tt=OTgo z)~S5l>1h|g!-YgJ-$I>1I-mNX>k=lbg1vxiP7Y2i^A^S`mNJb#U@m2JLRTByyxh~Z zo)KWmPO9BxN<5TLS`+IxZNwYQ8$d!aF5|1M`0w6jw!=&`#ZyD?GwYK+oz!C}*3~qs zwU(z#SGPNiPtc>&X7lb%8Bg%%7*(;^r3n0yEIzX%&&(!iBxZ($w2c$>RPhnJ*TAZ5MqQp4T7s6Ozxl2sA#-aj zG=*4`IaR4y&6=rTPlKB{(z$^S;DPX-gsmrVcYB`1GwDGnc|t%u1qsFO# zyh8_bJRzfgHXlxa6;Z%C0AA4A#Mmj$bS`R=er+~bPb8=F7!1zjamUewmhUpPPtNpe zR{N#SNJc7{%$J{!FFt2hB+JS7e(y4;$D8=moe+BIfrkzelLrlBN7p9HYm-x0i9afA zcK=;cM83h>1}T$K@{(ftplkDI6+_)eD@=+Gy5QK)m_7nTUFE)8s?5pNpAZwZdwtlq z@i{5P;n?<_b*b^iU0|2}+xAqTJAa0tv}$dh7dpSeoE5?%anK=FWhy0?+l=6k6h5B;%b zZu;2Erf;}dVp-%=jgz~PgXIG@!*l#pNJ*v=gRR9{wQ=uaq*`8X=4;ny`^THjW85$* z6Bm+?4hhO^Cs<3r#86e4T@M_j#%|E`POUB2@Y2EoYHK;DjZ`>H;ocYaCp1vwekb zS+v9Q<}ujLO%+hZBU}W1o@TZpnF|K<@NYAigq;0g@k79mMdQ^KPhvm>=ow5wlpZI@ zH2$zw3QXJs*7w%NpQg0Q|n2njhrYm9^oih+AQPJRTqzgI|YUqWu! zvE=)1rMq@Frn`o=-x=8hu$;@68q3VKfm5A8?HAw^{T<0IQ6xU2w!x*rXd^ATne*w$ zV1UlNNRg19+~uFDyxx2I4)ZfvEY{M1-N=*?Y0))GK2|i_kh5=Fk(fA9+T57$wzo$c zM^zkVu_#<9T=O31hts_zu~!FYvf4_xiXyCV3l7#+#Dmoy-iO;PHO|~;wHH3raxG4= z`-E!|t%v$wwjKs{B~ZQtdMJj3dGV7u;_3UTtyE4QcWq&BUzJL#MVjl>hdL6>#{+@_ zMq8Bn-rh{5k1V;9tnq7Tye@rFkD~1FbK@lp9aMG9q%XPPUI1S23+ciSD}wk{J5RnL z%%3nwS+~C8KDq7fsS&Opb7JW61tyZSxLi} z+Xsjli=oQ3;yX9jMV^QAp{)QuXl@`Xl+;e=&Y-xZ#5z^7d`Vw`Oz0MfyyW|8!FX?= z)eGq*X6Ilyc;a^Z42b85_;@0;oBbtnhtSH)MFWFtd4%J?uM~VWMcF_4^-3;Y6G2{Z z{vTiziob+gDwF@JKOi_b;e}JDAy_+}DW)-aCa@lf!?l2Girs$Qh#l9ye@Hs+k6fgi zd)U6Kr-FMRpWMqTYow(9EkmfGmVABNA(#3aiCpwAsv!_0(^DOZ^x=ZW{gDSZl2^>! z*+1Y402l^BYICcYO?$}od9f;LKU1Hd0;&v*qID-o$h5;EVacG?&%S}W6l_^|KB+@~ z0{0k2==dm+4EJy77KFB_G0xfhikQkDJ(xqg@4vLc2)(2SAYtPMcd=Yd(+uyNK-vhZ zCEL~BvDZ=SB@gL>FQ1H`$_+h0YHbYEAVSU=L-!W=vV+73j4QZ+XFp1@r@1`GPqFkh zXt*|4A%ah~<1vdy$3)%z7G#t!|sqPR%XX`wuInChW_8R_rF!Bf(v z*O3PoRW-ku{80yCj!$|61E6tgQPK43-et+%>xp}~sdS+RN4zz4hAkmDSf{b$NcQ9+ z4#&<=3AY&M=tA!ACCjACQ=()6YJ zRMfXsSAEg2dv;uikD7En={nz;`lD#NWS6j>uf?&R=OLGr8a|dg3C*tM8()+h zEap~1Pkc^fdb0rIuGeOv9qGnNcAqA>3B4*2{WKV0&Z1RoBh7DzMbsIsDnm>XFnRor z1av5Q1Q6uY0?z=`2yE|N`L>F02A8{n54`w*7d|Zth0iw1*70Z_{)h^q*Os~Ji6#a% z9z$?z56z914Uw5eqpplJPvCjfm`F3UQ-p;%iYA}+{rhfu&<$yR#}(Bdr$+bKw7tE$ z5|gZrls&Kag}wV3dyi(k!>a@f4lqIJ-a^n|;FM;*gae^(zF(~G%J-%3&+t9_On(0P zKDjsFfychzrtdBJ?>cweW*q8vMHx{1Q*Lunz>KEJov)#HV6)|47qHnh9x_J(Y5_kf z=RkV+GuDcl*qbISfp{R#+uR^(EY+lbnZIt zR}jXTzkmzZ?W67N-vqoe!-l)E1E);q9q^pEhl#Ge0dlkfxl(w$Xitcdkb;)i8;;`3 z&{3Re5Ng~+=}X{K?L2&gfKPqo?I!4wXzbw|I7H-8cc3sm-(CJ8VCC`cR{>3H-luZ& zEV1)YIT%JL#$mK#9AfdKBbC(^r$s7p^hGMqU~yFWU_~RvBbC25E{;?_Q}L)h|F329 zi&VZ+F^lI|+TR`_Yo0mPj4NY=){Fe@GgL+BrA${M4b-px?i~;c6(o+E2fboQ9WlDa#bsD5_K zMWp2s6;3^9n2V*Ju}h)qQolD0GAhA}AzQ>Ts``gQF;z>;b|z5mo=CgdC-d@Wc)9;- z{W_iS%T6!E$LE0KT5u7t!c6zw%3XE!y)?z8nHY>xpfG=j$mS?UcBLElfeh?MKmiN+ z^P`>Y9q!CiQlY*7y`5X|)}{v4bM6`XMD4MtNv@AyA#s_+ExFjMu&uw{+2}qN7u&R4}fDr@b z%rbU|lBqm=;}(JA80T}82t9duXTQa|LX+B`pM{_s&*z5|jDOW-q! z*r`EcNjtG^Df0l%T_DJcF9!v%R*uzd#tP(JFdsg%nQ5=hu41W(Y8`}DfPAbHk-!va zFhAcRJ=uH;)yfJNQ}SO8>KU=( z$z_>a4FHpq-_LI&blIFKS7W2P^rV6EK>QJgud6zUMSFa=!ZqG{*F>kLfr4v%mBE)Q z2u3nlel|x(?p}~s*Ug=+g27PSwybJ}Yi}XCAekZYEa|ayI}P9DSQ!G|IXRHO$(_u9 zljp}EA&Z!CA>-?Ud|`eU*uSg1Ut#_Vum8Qf!V3-^t0dQGPh)M)2hqJ>9B;yMDtDv2@BAZh)M&lh*pRv{ z%r@TA4p!J8-XT>U!3RhlY|zPJXLLLwXYn2qIe|&_6C^(G4#g6e%zk%-zLSy4FSiVU}r=wNM|O_>8n{;)SH^ZY-9{{E~Wlb)SJ)z6{nA3i!Ai zL1k+@`kT%M4w;~JOqDNhNSorn?a%ttOnTYZGWGsh}qx&tvF5Jo8}3b#y54o=I%kC(?paHm=s9XiB+9fRm2x0B_Qp%|wSiE7% zGN;fWt!(CEJ>SY5K`Wo|A(Y4I;Y)MhuMWP?=DT~0= z@UTEcuGo+J1ed+hV5byhfgR_RLZ#~a{_lsy{dzUVM!^&sR45{zW{ z^?T*PXP3XE!rcphu>Dw4Aw@h$qxYLl^3OoOx%Q+ElV4k8K&jh^KOAWH&p|uTt8u*U znHw|-CjV`3lW~L!9v&N1n16c*?Yo$^c9;*dXFK@hgLw!%TQ~>YhiG&;t~z%S>O-}^ z!t^_^n`xWhj}X$y>E;Ickqkj^=Q`_2MMeGk%lZWu2aF?K?>Nmw-hkLQZy40J_lC0hyD437J ze8|{ZU_|S?tuT#g>A8|`?;9cwr5z_D@TY}F)OvRy%bDyu1p>{_cVOTD%bkFhKsuS# zh9;i0Rn82k><6A#|AT|u>{&$ku-C(7y*m#XZLgDyVqJx_m+u|;!~H^wdP$d7W>hlL zZGpb<&2d-Be6o#eVRT6!iC+0Oo*|rsUtWN(Um*$Tx^PPed3J@?FH4a#sV}4|A#WpV zBX4bsdrUg{R~g;mo!6p%gciw;ce?s%H>%k=vK?e+BdpD2ks# zzM)8S3onAAdm|J5Pi^FV2$sEG*r;FW;rF2Pp};!nN)7l;)J5h}FyrYkXru@IX*T?0 zq&ZFdZk9GX)5A~kE%@rUsXB2Jo!~u~&N6H(1(3L?|FB;|p?QAh%%kMmRpjyGSJ;L5 z8HnGy137xz<7?aI@D7k^pJ?`1+jKBK(?{B%y*Q`FKl~W_lRGo#*f|se!y)A}p3ls`_IGNN z`Fo>v(`xy9jFj9CSPm25uN{7~kR}v&u~6|#D(|}4*H!Kq{sva841tswt@Bc?emB-$ z0xwUQbKS0h#ePrv*w{yMl(?VWVvI~?*mwk9-uR(_s*wP>bw6p0L4T?XJICB$e=B-iqBZu}EF1NgYV>eIY~hI1b80 zC?Dtr?6{NJbv}%JfM4!Yzn9gpy1tsMxVDNKm;;l@?v12kkB8Pm8-%iGiy(fy&d4t(omXOH5jQ#|-_P#MdTvBfyk~GWnR}T` zoVXiM?(FaeB({F@GWY4fHG#|H1L(ZeX3*{%t0r>b{EYIg2jldgF`L%;sX~C9L)BbR zSad>N`p}){9l*vsF8OtH5AYz@CI17LV)d2Zwcr3dN0mAsH3eqd|*n&k^UzoQ!*BL+Lvv+&4+r(V4*!m7VX}V`(VE@?nd*4@kZNpyY&J7aB zZrNSK@&4p6pSC3|R;*>4%Pfge^RenYV%%ihp7vy`n9AMkSi$6r zRCx$pnSW?~lqG+$doXBBz2&R?hz2Iopl%6=I0==qn~@ z{(}6^z7b5Bb-aPL{YT}1_2Z%LOVClLx;Loq?Xo+)oc6Vt_J`<_DvzrQsbSQetEF(} z0{T?>34x^tewx;3W3Gb$5lO-~drGp)aWps5{H|K5`Y6(DesD&$8bJ^G#&Yr^K9#<% zS6?MTUmvL^(m)O695*(Bk(S3)rfHr!Wt$|RKkdM1+sjR2=Y{3f09xEzEqceudY7U_ zHpp}Mpy+)z2k`_&Ka&m9GwA%MD%up_pC|>^2QO*7LDF1?q&R=Um6*^_Z#gm^2xuyOp|1C z)@I*r`By;Xc@-tq4vI!w2#mWIxEbs~!HoyR6v&axYRDM{`c(?Gga4rQJtBf!4cdvS zfZ)#co_f4Cpz>|llmx~m-~1ZRdd}MqIaPa?C*}caMQc3|t1P7(A&A2H@q;`_;pPFb zU=+>zV>-5-YIS@!m9j5fGQ-oOuq=7v9$Fqy-u!sIiaiTzbcLMPN&^hqeDmFW z$h_uJ2?u1UA)&@bBvdwof~cCAl;W3R&I2Bz*)lGgG@agjhXs%dxzRW3!V4{$31eEVduES_zYeP+PQRG(- zFsIQ?b4Ev+pWqj_sTLD#^G4IkSv)muZPdG#U-AFiJ1C zwCR&se2pe%H`ZSiP0mifR#UtrI{TBIxGTH5=WA-Y{wBusf;O_9TWk-o2VjM(A$tuvuU7 z-&~SKNb(Zq^*r$#m;$0liS2<{8jxuvk3JUT4o`J{rmhplZ8q*hAKTvV#JMw~XV_P- z2Nm~?Z}NR_VVLS>8`o7V)vrQ9-&3Zcv#S>0ygPGUCe;n8z#W&JcljPs!VT~T> zBA}C8KjcWXc5i+v^Gm2BPyYnNlU|Lg$kBgb=yZZ_$M(34@e{N%K2|dVm)@`&gm@+m z1$KDN$9zm`q0@1_0=magD%dgo35b>Vtw0_S=4;H=v_>BD4#IvAF97ny#aaYFO!MLw z1{W?(##X^*o>uXyrq=8n<1u_Qfjz#;z3?duovJlcS?gG`4UKKYh%m6`Sj#6f^s3 zp}T}nSX0p7G;+POqT`r57j4XKxQ2^fi#ZPvxm~*gbyfd~-0?SlkP$cAKY)L3lxu2Y zmD$>=4l{sU`?g>Dbefw1Lef`+_g zz4(2Cbep%oyu;H&diZ6zQpZ!u%FHb&Jv9%b(Hr zKnb~d`c9x{XZdROz^XP=fZiTBQT|+P4H>X-`Q=g|>EZu+CA0_rz=B(1+n{WFS$Qbj zliI0Gm(Sa(b^?dO5tu@GyCGa7h4+M|<3o!Rr2jmXgGsST%UZYsCC2tgzyF!GN9u%c z>(V_QUyb@(aeQ(%M=DB-ru0a4j`ZU>*{6mwB#i=%y*H1Cp?YecGKM!~q_yQI(SU!2(1UhngB+lr)G z=nu~~5%VU08Qx|*(CnOaIN%iXcbN{L>sabULPxGUO&fB_e_G_A8#|pP)zgCw*6)y1w7SsO2`SOIB4^UCxbr_wzY5zF)Lz+0>&*WQ_Gyx$)#ln{@MD zUH9wRnBq(uIWYpdBq#Y!rPM$m%~EER`gQ(T;!Q(qaVB!7i=EZ1C6RQZW=OG;+3Hpo zyODdBT5Kn!Yl*ZxDUb>s@6v%j4yBG*POcarMID?I(_NKAwQ)~0`1pQx>Aufw!P>vlj$>?$~}}`_A#+W{i0G z%Dp)AitE=!W}bCS)uNj}Z@hX`v8v?YfokwNu$0-ntS&WfMDZ8Nf6i_nkla4(oyzS^ zjH|eaGmVp$G|kq}+H}7evp?A-)$QPRalvd(hb1_t6-&Wt!|OJK-nR#E_Mx!-=vm4T zbY@+8a+%*%d&^8`yBVTCyuki`pZbHd*M<7P_F+;}i;^E`GwlNK7fpQEuA57;0dE+y zh(W4TLvT;8(I$ix`MT59`;kWPyY}ixjWc@%bLH6>&FP%DwMaC$wOIcgp!W|& zvE8!Q2z}r-!nS=$Ov#neXARUkFLiioGMitEoc4D)K0b0n|Ak`)@wh-A%22-Abdi9>TUeGYrU6p^+sfV3X~n@BQKWRpJ%VzrHR!Pq8_+*w+{5HXEeDX z`=R7z3_{{+0ZWXYIsUtx{tNp}dXC7^x5m4XN`n}6rXj#a0X$V_4WyssBAfEeDKzNy zZHA-)=++|eGW!#f)2`U1=f<9IRQH^dT$Xv?y7l-=pID5yJh`#;2artWov?$#{zs0h zn8x0FL}%JcTChmC_&qwpqZAznCQ9P{xjEdoQ=)c$rFP677v7VvSEu{!p=?>v*%?c- zMVXr7+0|7GrXF2WHRt9z(W(v6^y%%<$SE6y_y$zn>{UB8tukfxO|)upG;;Fd%8j#E z?%8v3QU@!!RpgxF>Z*^Y&8LxuTe2^O^kC!NrRN(xH!{%m04wS#z*m94hFy=;)q`Hz z&TK6lXZ*n0nl#_&q;2khHB7BulUf9_sno|6BTf*lePnPKL=ALp-}}##cD;se4=b{^ zJI#JKZ8QgLUN-Hy2CdHLz+M-mnpo_W^#( zLV4QBpT)lXQ?xs}=<-qC1!c}C!Q|IltWY8|l|h-9CwUe>_cwcL8_o^bB7g*bj-G%I zb5oISRzc?&lAr4sh73Rc_LtglpKrE`gXYdi?UdNk7YF>7UE)WwJ-llJ2q+k3u|ECV=C-(bPYlCTtejhc0ojHZe>Al^{ab54{zXuLH1 zp<_6Q)Tap&N);b$QejcDIK$>s!Tz3yXPDqA@$g^{p26Zyd+T5KcABv6Iz5#-qRB{X1Fm|m?K!-#RmOkSYI)JFD|@Vodc+&}s< z-2WT|>9c3;1^`;BdtytU$)_{2C?g}TYf_(I$BN&`-}@i~ay$qIg^V$RUMk-KNxngpb> z(s6IYsXAGUg~%-%+B$ZJfaC0aVSnf^XkB#9H_@%PW7uCl!cx3^E~|9C`EGo`3;}tj0JhEjzfIu%a6$WXg3tI1@2-VDd zNwe?MhaAKBTFP%SbE?Y|1M<1-E2MF_0k9mJ$T$V&u+>zrqo+-pPd~zLNLQx0ur}sWJVk#+1cBiOj4yhOuBQyctxQBQhIPitnj# zJc;9a#(NjoAE~kZs>YVpuMO=h{~Rw3ZtN?{q#%p}e0ayWnfEdGPr-$}+G#R6t9*WT z2lA?E>JW+WX$_&>=||LqnrOZl%Uo{v9qNM>R85~?7vk5$!%w^Xq4Ep4Ajzkvtz z<52K|c(MCd?C6Mc`}~s_@?7OCSDlU4MIhN1p$F{_jY&0tl=;Ge_AYwl&hnK>?VySudRv2*o%je?}bJz3uqgG>MqGsG<9@s`YZ`6GaNQS&;DZgj3#%RkM zZT|;Xq3;UiQHSw-RUnU=)@Z*qv3>8Da!$Mr5RqRIo2>O)#VTgvhF;v)yl-%}(meU@ zE3^oL1*uWP#jv-_g_j>-wGFzMQAT-L8?fCMpxTB!jP=1sr3trCUWevw9 zzKkZ?``$27i^Mu`Ih3sks9ENsqO-K9d~jbx2X|nQcNBK?>HCHfH$vX~X*9yG9(&;c zilkQZ74+y_IH4;wr5SdT(YGf2K__=IJl%MBQBnPmp1Lf42Q3cTJ$^HpnJ}%a2o1q7 zk^ARFs^n+jm ziXgy?1xVp}I~fUF@Aq|LOHY!-(TY+qT$y7lE0*eko%SeceefGn#g7WQ}HSddJ6TSJxEePRKG$$Mp5&9Adu;uCWw= z>)l8E42%e-sUUw6s-S*W_Br&)$-#zBCX8E^)SQ9*^iBFDi9JNc) zlp(2ZByMtkP2x>$WZ7P`5-Udc#N4M*?^i05&MGy&F2xI^}PfkiW2`!uX44 z^ZLe*zOFp6y?b1%@Ie#LzhnlwvXOR~_SfvvOQK}gCl>7G=0O?03?)pDEOSF499!<( zP>C7iXDoSrKN1+azv6}prtlB^%+t3{u&z7Z!HcLOvrmrQzZKrl}0UnjQH!h)gLR+Ms=BMMb6d`_Xt3ZHvJf;?-LWyxAgT_yXZ zFb0QLO5sg>PS^Cxu_!YV?J3X9Lf^#D`O>-!AQ4Y@JJFdUP z#rS>-fH2~JioIR!Cd7Q&NrWVKS$f4XrY!q#Ku_|*egC%A6ngAf=fuMT){ zUCL)4cvU2YY;z+|f~NBe?SJ#L;P=KNl0h`rrVN*O@*O;sFAr$R{y3OSxhaApX|K)x zX29mvv$vL1zJXhS0H|LSM{3?_`VPln(X``Q2Lm>2fQ9LvgDK3O3mkU019OxeVTt_G z>gkhkkp<^ep(A<7kP}YpNVVavp>}prxU=a08oj5E6WEHof)0~=#`o49NiM(QS*6MD zW)MJ^Gu%nf0Yd&cO75oN>3Ikwk|BM|!=dNic0kd1omPbhkjbf^$ktw^d=#VE=Ei4V zq{qbkQg@C2#O|`b9>~||^z(bMGo0AAC;PvqPqfvG13bqMP1_Y?Fl}`Do_1IlZp@|* zC~De1ke6&2#8M@TruAX1l`D^@QJX8ru|L3u-LP4ik$ZW5l*!~1f|gx3}JdUTMF zD!KG!_BbsVk3pP9a>}0)_EHc{gTbYps09Pv^8F;IN=PE5eiqNQD~aXIS?LyG8?~%u zOFcd|-9khfVK?0;*ZLe3>@{OH>%LH{_b~eqTsFpj{{vJCUcUdafL5Lm-Y0_h<}+|L zME-cgp3rgcRFcHiu8X!@Kz!=lo0cEEON6UIi@6j znn(X!!l*w3oK6i@c4{cu9i?de=mtLnJWuBIrQ3&RK0gX_c4s_3Q0yLw-9WB{{<<(f zjhG_!6A*I}B7qzV>1&C+S$4yjF(QZT-|?}kIg{(^(iL1sL7IgIa`SxR&UjX6qe`-S zU2>Au8a;gokL2DIb97{kLi*^QRj9#?j|7|hPKInDKP#T9I`u=4D$DQ`0O*R1n>t}* z*xJOFV};mkE%wh@rG!xxFq3_&KODW%dMp#>wlb_PZPqVzEB^q&%rEv$Ehdh;YTo80 zB-fmnbOrlh?(Y=KrgQiv#tk!jTWZg$Iq}^it*5ZRT=ho0XD$zt50U=Wj`}3<{Cn6Q zIpW5vpS3gcr(;4*S)DqZm9IN;M@>eWhZvoAkS463hmr<0edve}i6}`QoctFSLbF28 z0xNd}SZ3q#bZ_sc#}<>Eep5+FS$&Vh_QUGW*W!9U^V9`teuD)Z#<0)gA|a9vFKEM6iYKg15mKF$(qGmJh`W{ktyv z6w3-?NCN(d%)I;>HSiG>D1qNYu~k4)8i3q9Q=-Xz1K_h!&SgDM_9JrC}C(B zK|e@b#%6m(H)^N*{7AQ^GbOR^Lt~R(k5#_mc7ptsG_}B{3GL!^k4xSY#$*PRU(0bI znuL%pdS4McnOLNH5z7Bpu#q>BzxM`r#^Co|k1e-AM($V}(K z_}~G1P9B*d0#x}LfRsT(BjBkhGnJQa3PmzU7{wZWE)spdkAUtC5F%6WQ-v=Je2|GX zXLqoN`eXB?#>LPE9M%fkj}n!i*wS!At$xtp!|yPJ`!-egC@QZ1`3`3HLYymI*gNwY zkcRXUn^fIGdM1}!&p>L#*bfS6O&wK}%-K5O{?`vngtRtksQ&?JUHYtVbvHha;hCJD zo#*+p&5{wjNjoYXX}+1|c_#=HTMpArv+saWEGTC2#kXygCEdEk%YytC^O++05dKMx zpF1gIDNY`SWVMQeibzZ#mLwkQ3T3Cqji<=0(;%C(bAJ3zwix*}@iBG*3Hu|KzI-%+ zt^#YzarM6nRAFz{UoEp<8~`yX$|rMqIPYz)j3MJJobJGxPBecmQrm{4jJ_%fn;A{f zE(nY?>z=vq?|&=Kti+a4k(O?%?QPauSIlBvA{=91_nwf@fidhF;2)R;LDMZs$cn z>re1%2dF&7n(APU)uoTE;P`v8d$ekPr1?w8o8>^H`8J@6+;JTLCsZlYGKL>WrBCqk z1ahd&EoMZ}a~FE7>e@+S%b~(Yy8!H3L7PmS2Z)h4kwHe9H$h!I0MegCiHYy})*q4i zJwF5a*9kEyVD*}OY3gY=k=H1gEBV!>|N2+l9RRl?n4}?}X3L&DQSmKDH8&^5|CoY?RVAyw;C9^iXv20H1{zO-xezk#$^{qwCRPL0nSq0GrPlUd~Bw=r|#xUWy)~4@Sg<; z{t{=G);$v+LOJT9W#67VNzXUupGWHXZ%lUZeK5~R`pmh0{@p(MzJ?Bh@4fYWUjBL8 zgFL^LZ!c@l`SzCU`L^$J_21NU5(6b@@9#XTzc;A@ytR``Zmlcc(!Qb}XOO|xg$0N12;}Swf^)DW9keyy9l)>TI^vEMd&X!0 zv0LU_fPN9p)1KLv&RVq_n<1lssUlPKi(4k zXq|B0X`NF4m{uKg?zdIP6E;DaepI#npiD3Q(hgFlNWZjQmDvRSv??epvxZ;pR#oku zxdt)eZt}mkLs4cgUasc_86CZp0ils%J1L);_7Q7=EHU!1=&Su1LZsy|8A)EJzd#B0 zTWa=N8*Q4umxRl%`H%Mm)pwX{#xJW_;vkZCV9tT zr49~F)Xdp9hZ&_T#H(p-2eR*Vy6r^R0mHCeXQojgcv+8eC(VLlw+8}F0yxu`aU|NO zMq0L78=c53e)Eo-Rl>d)KJh-paKEZi$0|=Nb-Qw7NacKH;r62;<zk0rrlrGI=kD7?3S{2+Mj%_G459IW%_ zO?Z|+%X#ws$$x2^c_hUo01sc*nb6=VKMm4jE*N{wVGG9&w58C(u|q*k(ZaFvrSiwG zdeg((pM@>^)oLm)N2c90;-!InXH(-cU8^JqwEF?1Ve2u;iG`!ftbpIY?Bp+KYOu~y z<4Uyr<(P%;!yPwp;W&Fu2C8wiIBpPswT2#zkuyoqNKb!}F&MQIS!c#>9ZZTaXzG z`2_vu{Wpc}UEHa?2|H>pXzUxr6peZPPynCpj(i;i`fYQ&(L`cJd*ZVJ@jYApjLu1B zD%Zu{U77qM_O6TdWZkOOu~2mI!yyI@a+Xux%`s!V?W=1-<~;9*y!m}*aY6Q1emwc_ zj|Jb83ntp-yy15do9f@fck7Qs=rbS6o!#n0Kb_9IpG>6y0wLQSt4=tOKVmbwq^L2D z&t%JhR_Uv0%THwE2U~({OAK zpLUuljE2(X5kjzE;0G&vqNC(}BAZ?^7#^r!J<>xpjrqvOK z&uvLt2HMpOW8RXFU=>b^*^kN+Ief<{&9s;$mN2~LDF+|R<>!zaL06~z4q^1D=cDqe z_MV)|tK5(DK4I?x-vwJ}7GJT&6A0VsZo_jnqlRA{WL%+Vf_FIB-4=ve&Ue}`u|qO1 z^FupqOlF&mM966N<|X*YCoOsR^Vk7PH!q95`&sn?pT~NxbIVAAWmB-D-B!(bZojF+ zeD`L(Zf^e2d$sgz`*guoh zvwRdt7i|uD|g-N|zcAyLu1apW_VcKS*q3M~h2c>z&H=)iMhMcG{p} zYYj}#XM%H;;M_-W4g=1Q1m`*sC4#7-*#f?>UBVr-f5Crm|L^Qi#d>yb|FhqIPy7D- z=MyFZg7cq$v%$WsU>u$QMB<_w@4hB?{_};xd=Po|1F^=O=2J7mut-JYO1LrR4gj)% zY}<5lcUL{j%rw-_cg1>U^`mFfDU!R%9mo8G&B!D3Pj1;XHa+B7(N^SkElO*v)=fJm z2vK|wwB*Pc|1$xXggW}ve1 zdAb(;=k{n_>m6bCMJX=0zzu=3ER-SFR<9XKXtws`NuNzSED9o+X_bx9 z+9$AVyP~3B{?%$;nR2ks1*80vqT~CiO_i`{`vem7tuA<~M#=T7sr)>e*iNQ^^C?Xf zO|IqY;uXm`vsVu&UbJ`%XW3BJA|mx)*d!;K`DX)F*H;8xYlUnfLIvG*s8>p-^0~mE zoyrx3krxe5usJ{j9{@WE@e5A zYx)njkpYgYG((VpPD4;zhB=xrDm%j3itkcW^;yH5?4JU7tE&hGXgIzA7MsP~0Ko(= z%++oB1UUXYH-w|@UW7w`O%IDC>tsKGF_(S_O_%BH^c7_0us}x&`Vx%{h7zhPS60o5 zq#po}iYC|A9I-v!gt}m%Jb)opkGu#%zU^p!!ob7?`eX>4z|G~poSq{0)io5z;p_(9 zbRgAEc;AWfuz`HM&Aix7V!jJ`XMRhYKwKt>1s3-$L&9ZZt;__Wh3|%zodkg*;qXtJ zJlR&TlS!r9mXT^jxaPpY3J$ z?7s@_RmE?WuUr(y8|ShIojs5`M8C6Fl`65TnqtXj%eD`~Z+$`t*Y=RsFi#_*yvo7> zNVjcnGdpUbr6NQ8|NUC{h}?b$-^2Ir1PUqi3q>$cl{TVz$p$j*XwP@@4eOJiW$AGD zJP0#(vea3|>d~$LPf8(`2>it$;$5MA2xVgPHGkEHc8A4{KI?3UcB zyi48U2U~nH1o6^8j248?yC{Z@9{?pgrZ)Kz3`nixxb=thecgAI%5bUtIM%cs%4(Q=o?L1)#VXeIZ86TO&95JmA1GB%ZbX{3G3~Wg^BO+; zo`e@5dPM&G3G;AOYd8<>|Ks<8=I6&7HtfD+lN=B;XG0$a>%GGD4B;!xKfXDuq-9Dg zl?;^@)b{Yn|)zl(1;h~}=qToQ0lV!L|; z>Z4we9M1duk|5q~B7Vi|PQFg8T$HD;5MQNk31x!pk$$XT=PEI6pl)4p(3Pgb9i^@q zmDtGG#B~Gcbp3XcR)_@kjX&*COH}ugin%fw`V1?q$DOAOGJ`2pK(FJ2`P%00yt|<9 z7L=~%TlG!@?k)|9zx(i)J{2gRzD5?ib!!&8dj!SB8{MQcF*An}_&am$AK}{%@&&qs znB`y^I^a83zFQ$Y^$ZsO2hlXo>xNr*Fwgng1>*_q3yY8U{va6_?&4d}ufb5j^AD)5 zG!fD8UEQS5+-ww%d~fIJe)q^JD@b%T?QFuOD_3;2B$(@F5Th8;unE_MKyMszQ2ihM zvWB1^_Z-^Vz|?{CMwPEEo=3Y4Pr(^Sy&UkF(0bAB$kjWQ4^vYYP+h4zR4{ShPk5iG zb>_xBqN%c+u^e0EryR5X(-4TpPRVHECnjcf^B2+|z)C_BH+{%uA6ThcpMY1*Q&cBjX;!GY0m>f1MGV_h<$lpp%jc%G% z8o#D?(mbt@`e%n>Z$(;{BvucNR{d+*_`1lSSf}8o(>l1em;+t((xK{w(WVte?3>iT zZt0m~oB%Cz2VM&1uv$xX-wuw*vQ)q6iPcBbWW%%CrJfb*eg!c&RW8!pQ{$1mVur!% z2v2!=OWWIj$rmN3$sdV7PphY5hxfInrM)gvvr!3sZT>@4x`Pm`xrck$Ptkn?b`L;D z><$*=Yq5C~jO!iR?uU@C#0ybQB!{Y66luADkC~sTM7n%E?v>me_PLD@7%8E>DC87J z|G|KYgsu$p&L`sB_1@lG%bPCxj{DymFg)A&X34^dmqm7G)~jqsc^OdZHcyTZiGD*_ zK6HkEkd}7`6+V1EjRA!uycbT8khf=y@7UhSh3&1lqoDD}3!C^H12b%*6MO;Ax48ow z!MQ7eS#IDef$}AV-mGQ6_ALudu2$Ig-ph}fjG*0MKJ)VJ^g?KA{DT+Q*2-OUM=Pva zDzSJ%;E10#MpU$O$n|CJZ&N8tsO|0Sf7(6Y?qcfTz->4y^9lu_x5RhFb*bSW|Kfn6 z_+GWCUC63_2m{EAY|D+L-0%#Tzt{_olr7#$826B=NlY##Ts2;JLRzqn9jm z_?36W{RQU4qc`V;y!+BzpEd#UUR=x>#>+9r_aS=2 zl)dgq9|X4QZh|(PV;v>&moQQe2~UDI!_BZw){roFAY_}v$$Sd1;`>?d#Tj6e7b9|l zTnKlqKulem5BJGUHd?7`B>Kej&6k@QjA-!k<b|-nv3}WM`!V}szE&1ZEPIIW%gwm_=8EP#2o_Ky{SDt2& zrnvSzOgXaSzMw*(chaJ#eJ8;XZ^1c3vE_1e-WN8R8gdIJ;H4Tpyf}v?<6!7H@m&x2 zEIujmUC;OhiSN1-Pd^EywYha5-&l1A7J&EPQVJ8G1c2Qq5WvRBA+PajV>EKeyp54_ z`c9?yjghlwyJlKq-Q@58XfyjI`vmjaN#CbIm61rW@hTwBVIV+Qe-Wc;_)CG!Fyl`1 zjt!xZjn6%Dqo%RV(BSUG=OW~JQIpI2;L!<>{u=yEJfEXZdx8Jl`iXGs`{<`w{e;u- z8U?bqgyRh{o(!%NRmP_^KI0R%GHx8V1=WVfrrHLQoA^7S3NG#SQKa<+_Lw{Sm+;2g z_!&MXen(Wx69tm^P8|j z-pu5-`jc9gn0&9_&8J+%;((>ZQ0(6>bLTK?o{MNfeYrigW&wkXOfcxp{K*V~1RF(e z9|qI0^f!EaRdbbn)c3!_*5igEu|@90IT7W^Z6M+xT6jKV7>FA$9y(&I)N6ruJk8$TlVbH=_WFJCI@O z9OIHG>AbT921Z~=Hv+mCdM*yJT&qXXs$UjLGt!D+JC!9txWncCa)U-N{3O<#bcxBUEev(V)Wo zFza-6Bp=76D=uFDJ;Ils>G%zXrRh4R2&+{>3>ekXVnON+u` zYjY_00n!%QXgK45;DF(9siXiF=LAN&{Mg5!w~*!LNdu;bp93_35106N&m$-EE?4eB z%1N%6>XJRR&5ucY+oLIu3aS4O4ISl?Yj;z)TbVFAT!T=}4S&2kED+B@6cA)t>hH=r zfrh>Ap;T_Ynb&ymu_-;WNJ##Q9o_cy4!CA7=%Iz%baNYn@e|wxa|bP8kwb$2eF4fP z&^);tWZH;fdF*=p3%H?DoxSMh=Wy5i7RbHR(f$u)$u@UFvnQ`j6Eow$d@x@|8kryQ z!pq})e9fIqDwk2!A1oBvXck=uib86dn_uw@|1isYp!A$S7RZc&4d|)a9pNdE$37m( zQc5jzcSEh-;>okDpJc>xW+wEL*LRo#wqIen6Ju3h%0x_VHX*G0=00{uvu67K#(wS_ z^ZtSyA&p^h**6OHMIOFM8(rK~dB=dOJbZiP;2R%MYoM(TEnI}my2bOJAv0kx2CTV9 z9+`%&9r5!m)VA3Ybqq)Az}&LL+;7ncp-j^H#WMHh{hm#0xOasW^?u0<4j>oep(pUC z!={1a@^m2jvkZ=976Og@ANham#mpsAsxJA(mrq8TIUCH=$`mPa=ai(I+P81tzIpKh zuN~aTzj#JUMi*So&XhgfNCT1T*|GGA-C~jI#YNK81JqXHgYH-iY=gT^tU>_4KUY_H zvwaB{b>kIX=f&<&M5u&=Uj1GC%%zm+@?K4XV7B3amCO<6*$4OXxr$Ly(V?uXW2xSN z{_r0V8@++pOTNt$ebGB8s;k^uE!vYB7o5Wf7V|BA=?&1>lMps?dlL0!Y)1%vx#f~u zewKC^a{ikFdNw;Z9}jmr6RhMp`-O{u!oVvejgLp{@fJT_@M?cvDg8=E{HzG}BMS6AmmP6-4JwOQ?Aw7DpW-c( z`viJ`b|nb`T?2Umk_q0}(7L(bX(@{ZHPBLDks5!#dk&MoWtNIXn(w5g#DeY`)wqUS zUEa9Ts{)fP(7~lRxoj_s+qmQ(8!^Lh7QZ}j?`+9Qe&|C0=II02AFRO71b;nKF^j*t z`}#He`%DG9c1ozFf#&r^x?D}zjtSTO-H3#IT6hiQ5L+3^E}f9m zukugiFMr@1J@aAbc{K~T6as85Wr&7|K9Sph4uLV(vh~-yK1{fZnk~l*a5-$b@SDKJ zq7PO~SXzQT1Xs0A0(_-m>jn@|l3rcMtH^KWy7gzEqewfws`U!qB;M$z@9BdtE9G;| z2X2vlPP|bf7OVLn`F`THQe8EEDrXnV8^D4oRzYk-Yu{h zDnF^P&SR#;hktaN_wtPwp{L8Q{2!W?5ur93w9w_ZJ={VYxi3AYQJNB0!eFL2EYI0` z_uVgui}08fQcj@`4cShx+ZA(yOmZ49yt3Xcmd5Sq4Y_0nwWuI#^|8yfK-x5Hd1e_`^ENHeBtkxNoi zd{L(8*Y)mxz(hOWpuR|xhE=@YEfeT=J4mGYG3po!f*ed+cLoFf?kyGq?O@`)Yh4^q;S_CS;);vydiRBl#1bv%U z%ib;i5F0;_MD?$l+!?2PyD#rHZ(0L&d_P9Vvn~mMnfZGyvht`s8^gFGYVQFkLud`U zTAy&2E6T$LP>CVMn!{svR7%*5G+#tPUIwIbrr|u&{5h-_T-WI~LTat!0a2>zuRpd4 zi2qD0wV~Ljqku_c{E($A3I13b4j&r4dYxC4BKPp{!NDt?FXq)~UiAxJjp3E|L8piR zD0p`VHH|gZDK1iq{P;D7kmO zWZ>S&lmrN%Pr=0i}z*+WI=UF*>$l=bE1h)OX9usbVd3El7yH9q5-`r za)Mv7Xtg$R;Q2`#Ttu%#9XY9DuB7_Oh}nTASMWEM*8ofIHsVpNiqy*QL1m#7JL+O< z)kx7@Dsl;SM*W)!;5A34TPSOOC;4?5Uks_A*~f%-k;|Uk#ol{g_RNZ4y@#g*W6Y;B z-C|cw3{n_oNn^0`BQn_5rV1V%kdR+uqj$4jI1Qi>%m-T>MB$=NJ_=GRD((hH1*U`1 zPx&2>D)7wAv<259Ll=tf#+%9n7H{dE57Z1H2nukguuKqck*AZc&aVU(_Xw{rK`3tb6azMde8-1}XCn=I2wt)pI2 zdx3opDr9{ZBEc+V{AcO%XVrpuRde$eMsD`r0{b#uJ{-IhnBlo)n_sr?gVIpN1hkc# z@iUO!xSDtc54UQb#Rv-=GXq^@CbAO*uk|BWUYV-tafSQVkX{ z-dQEX{RxD9&OfvTqaypyaDDAZvdtX<)sc!@7sAZ zV$uz3S7Hp1q@{OPY9aRuVSX&j-FMU+-#d_$)(7q zAQEekyXZpHex);(jWkP`;@ujy+{?DQ^fkrV9|UxdI7q%D7XR@yJ2Vk#nIT#rsHm>$ z%lM_yblrYHw?6rfB39jplZ4go+DERR>+4ls#QgEB``xWz{Fm-C2o%z~y;0EmC1qU_ z8gw7R?#RJMX4wT}GiOB)m`6ADzh$$}V2yJ>+Ppz*R2A+vi$5i{>XP3Cgt|}`U?XkC zMk02V(lm1-C?!AJKECI@=-JBBt<8?RkkZ*^Z!N5MM_rA-c24$A&ZiB({vkoR&5efb zG}E4f2d+?GLK^ z+_shV9yI$LQ<5W(ex5u!v;+SRpKtY1dhU3F_p<*M#JTk|<12rd0s-DEw#S{NW_4CR zNP_~LF~#xNk_h~lO>AEg_$l)K&XqsY%(r`fs`2zYG5bi)pHV(U-N-SiVaH+N>{2`b zSH6Ei|8DuzU`X*@>~3dsv7AYBY~cCxg5~QT$iwUYsPgIZPko0mGXJC_CL~RF-&i$GjN05-G0NL*K`JADTb4(DgAl&k z8p&zk`d%12BWQNw`E%XJ)HH%CfS==_{xZw&f#v1vAktj<)*_k`T-^<>f4{8f9Aw*T zfJ`vOj@A1(i2_!+a{w=v@?!(65{q`N?+I8#1=d^_1FDc-bw9h-1n6KdYz#cX|2^RC z19%}cOjVLb4z(>jmRZgw9px5rE`Io#q|n!Xcck!DOqn4YA_Bgd1we_bT8ju*K! za^p)mE?@r!QX^_xO_Bh#$~|K4m({GVy0aFmY32k7f8#gRRmF+W{}uKyO_mS=y6S`l zB}04F+G3It?o5znQliWBL|WwM$W2i$*gV7sow`zbj5UE(L7s_74&~-U2;RbwYns>A zpVrDJ2EX2Yj&zne_!~lgW@UdJ%+D%!3Nl@WNm=F$Pw(#LF~)U~mOi{d=z+q_?)-Ew z(5Zo(iSd||Cz5B6vv8D9x`urO*`ZsE9y^fw@L$N}MXqWK!R{MS!GCrw*oT6J@-utx*4EC4W&~NTEebCg;cYkHIIIJC`+)bp2-o6S3FDAT@q>b?2_>IxHRU#%0{hKup1j3iW$<+5wxh=UTq9<@Xr+5|EV0d< zga=6S;BgQQaEj!6---tEIVYGInxwru5zr~ffNa$6*YcB^$(ipxu<WO*F?lX50r z3hDE|&S%vP2F*gKs^fe%>Vw~@{ET5TuQ862Y4*}Rnt{ER?A^p!9aS;9c~krn+{WVx zdl?;R-Q@N-!RSB!V?I|`6wA0N9yK_A;iwDaS2oY8KPFh_-=R4XCDatfFZpjokkhAM zz~>>^xo9d;XaVf|ekIB$=?8JT%Par3NrGCLdlt>Yd<7dqN@i6*pw zzr*-|U_NcrgoL+l<=Hszv>~bRNaWI;Kb0fKmKS?sMDf9>#Bco^jH5g~p_}LmibWBJ zX>8NOdy$ez#(HKLLWA@4aM(gyW5Uo5WfmHrUXF@CU1$GwfA<^JNcY|U*kFS&z|VYF zS8sFZ)r3|IT5lXJ^_DK50wPbI^r>7&_&sNzkm~oCyTY?cM<}I4y$&@%-v{TRd>o$| zhm&nv>eN!wpOYSJdflF7NnWLnSL%n@$g|3>FV9K!vr0L$Ve^dEx#c*t!+N_=^r1i{V{_f=O3#H7arUu_f?*-$^a3Ugj$QPk? zYymx(ek930PUNpcd%S7QpyEzdFmLTxv9DS43K_rx1!ueRr^?8^M!&5Feu1 zbPREKrnfrzr7ONvvo5a}Qn$ZPe7~067@gM`O^h?<&U!Zlbsm{n*0}W$pRcfS>(3(1 zU(sO0#f@9*E}2n(h4ccx75ul*9B?bPh5cizeTs|{Q28@EzGS6RIJqbl(hJKDu)sk+ z?HEP5aahA_L4meswr%G;RpZtx;u9OUUgh&iF^Wn?;TzxeLJECFA@wJ0m4Q-VNiL*) zcMuPu@&Ci~g=^Z6{AOWIWM+FdnbV&I$hUlORLxvQ?;(6#=~k>Un?4RE$)Zc$=?o-u ztQAGCUP4ZsfrkMGCyMzwN;r3a8U-!-=-Z)@nMKnn;vP75d%HU`%EpGIB1?*9q+LQf@5y~)iLh-=*B`EuES~QtdBD~lg_noG2_?{>@d*=@2h1O+}mLqA& z-f@$M#q2*ua1V>BQhALA+Lz)veCX%C;e%>?0?0b)#var`Nc2CjETrv6`NN!8g;=C| zgL}h@*WVDsZW#*nBYd>2`wO&cqjBySu^>oL5td8qaZtgTKSn^x2x=*1&UjlhwA~%b zPGV*YK!^C|y(uyG!gxwEsl8RACnW-Tr=bJZM#R6}-)Dd!8Rz2Rx0&0H4-fw!Y_O5H=O&D*jD~{iG5~*XAF&h(q1QhZ1P?A?WiEk?F&Asf@ZIA|NDC^ zv2t#CHyF*K4axbf%YvoX&*9lvVrr>kc*tl+8-ab3k*N^Y+{+^`4Wo?q54? za9~QeE~TLme&rNPwpCZIiz@izVJ4xbYR%M)vd9GBVgCZ1Wdcdg-~6#VhVF4zT}8z1 zv|(Y-!2gkp)Hyyo*g-&*GsVx{l}!cqP^zjg6~Jm&;QX!LFm zBZfA&KZx>p@gm*rubnGdGT44{+F_zoZ>p9$gv#9WL2IfUAs0<}n9)!HJQ z`?Au*ujae?>j1`m3<(GNDo0Pl$Et)j$5rALN@PDQpeNqN^zJnecYfg?x)Sa;Dk(6f zs*D=A2xXD@NIn+Kp*^kJPVP1DU(K7LM)Wcr#$FKODQ~|A_DU{V4kHuebE(^#{xQt+ zrW^)6nprFY0J{s@P2v;J}m)wDE1xoMH7NZ&J$=UM$ zKo0d2MGnZ(LVJcY+W6D_%nmI+1r@$+C%Sg_q|6qXbX_jPkd$gK0wsSv3>;zJ!t(6|y z-2}EQsNzNElvDhJRujh7tBjs~#uO}|z{Z5|J=AWk|q)r+RA9iiY*-;}FaD|E^N z)qNI)?NR75cCs_a07kIh+Mf<`Y_|MzYRcmouOQ(+c$w|H#~PXe!v{^}VFpGFOWllNk-v{|&B>n*mVAyEUp^NS$$Ze`4mi5KINA#2z&mTqN3||!O`CLIezixwaKNK@rZQjg$uZbY{*=~gO`ta z{^*8zN{D%n)xHmRAZ3E)3-~QxehCXTm7f!o--zP-zsf&GdAIf`&;be0FDzWh&$;#? zvod!Tbwa}8mNV|>yMnb3BP*%Ee=1}wgXd#<*VO8}hvzL1Prr&wB7;ylgXXx^0aPocQ1eiA@%P?I zO}BQqAA`pop~_zwfZg)n%O9cgeS`87{(JduDt~fN{^0*!e#u3ei61lQ z!(RX8?hM`HwAUa{gMql8GB}|nyK+b4xs&?t?V!KE=BsJ?^5sFhKW^kMRDV$K7B^@p zCjEFC$LXtB)(+)&v_2o?YL4VAMJ#g2EM`wcTYhUefe*x_7K)9gBF%qgVs(iAG%PIq zm~C#~5U?Ewl!+T9o(M(fnk31nfyjctv1TyX24(u-XcQd<(@5u{;wQ0%Lb{f~yoYCO z0t12sLJbpeOHH}HwsMWYt&JS=7H2;CzJ$~P_Sb}jFJi^(+@olY%ul=?=+M5oY+bZt zqtpI~l@Rt7imua8pwgpDfh_jlX;+GS(l34sA#p!mm1o$GMsf$ z&v;FoI}VSd&%SjQIG%Rp-^DlvU09wtl#hL89~`-loT%cFnygl-B;;DD=*?AbI#Z;H z_H<<%SMVmQ2L1us_UnT&QPz+A((yQ@=GyPh@x&eBdl={Fe}V6V{j-giEqJ-@xzeLd@0&wAFg)?VA@6F7&ZIP)<@(oO4Z zXY(4uNH3!;@TWJPSqN!vpGWvKm%ae6@|33|{ zNFYE$*kM9*$Ubo2n`Uv(GK2~A)t6<^j9gIeb{rTgWn7_R( zM-mEtUYcbV0!MMYJ>VPWONl8C?38@|;#{$hZ$Ya5U~a{|dcM zedbG>6_ZsvEB2aw2<})VwY(m7er2{uc;E_x|ytzE?l!aRfhn`HwI2W*E(_g(2U~WvDk^enE({P!A;8x=iZ3&{S30UVQI| z`4Cv%aA6Y14kWG1VOR{x7NC7tQ(~dUFa^~XlM6|0;D?r6RD0HSQd5a zX{{Gtkr?X80xJ}ykzcDhL8oO|@vhkUlnU|^(?MmwlZvXb=ows? zZpt)s775AX3VyP_A_-0V9q**AEftX?_7RC{k8qj|t*s+%DiyU4@sUg^&T!j{y<|g@ z<0DxlXY2n~`6!-QsFFBfrmFaTQlK(=oJBaD|FHg&YW`xj(pCfBSTcR492sPdv(&?! zpnK3c?1u>Qr77#pZJWO&MC#k{qV-)-yK7+&d<_Yt)|s9h_%XBbW>_=v{ZsXd#< ze>Y!a^QQC{W@2BK8t|ziku|*jHEdH_L=Fj~GMc~5+i5UW!{MP&=vsxJ;?%bF3Dsu7 z>m@HpWGxE&)iVnm2h6K9^_09lS;E8hg%i@3_qTXIszO%0Mzo>sKGJ|6FdFLiD7qeI zJRKfosaB?&dbft&s&VI$WfzWEhw|cpA6<8-&$^IxJ|a) zeqp(ZVd+fm#)et*yOuN3a{4iy*mxgo$ewE+B%ypJ5LI~Id`p1lJ)*`)I$GcD??j{=4}6(zjk-R>rrgn#Yv zr%B69k!}_4R*tGttS6YqsZ!)w8Y$kN2QDNWM1naZH?eGFkB5980hWziij(Bk&GMj> zFG3ljP=5}UV%dFvvijyW-zHDSajxZYJHG(Q(3XY@^1c>TxC1n6hzE? zsiWRnu+z>(S~feze!&Sy+FTCbhwML6yIWb@^L@LGr`F$(XY?7dIR6j!v4>`er119mI!Txz|61g zR~TOho>Tlky-1ZyhAD~`m@CV|Jp(;TJjUrYY`pQB9HXoR)u<%aTx4Qkj~C|IOg8L? zUr52tTPX?EeV&74*bYM0V>CZ*2XRv;T2mTCp2O_d?oW!lq^8|d&4b$g zTf^Pc%x>*|AMR|tO^7nq{F?F_*M`?*kwK5g)5|am;6H3Tt77zfOc|a3#5%Ie+^l$+ zMrU%M)aF^Ugt>dXny+|weLIW5&(NGGh|wUM68p@T5ao$MEdJMfhN|}$v;PvVYx^7D{95pgbb*cT@x>j#EaEfi>x+w!ZR~P? zu1rqA+Mk35R240q^anlu$#D$fymL!AWOdRZ@7~u^+h6iJJ!nq*lGtiA%J81?bZP#J z!57$MaQfys#mKVIUb3GPPJ2_DK`(tg_qul)b8d8b?<8hrvMp9j`-z9m+Wm!es2Bc$ zKOz`6j3LFMC!(YnRh=~zLg4HIKR{g~@>6fKRZ0qM&FqjkAu z?_>K*B@|T^vnc;S;2c>!mvQNa2^-O^%v#;e#^w%&9AdDAdpMs)J>NV^TS7_Wp(`| z0^7xh$6*s@bn}~~NxTM(9+)s7#`#eS=1Hg5n^WWdS{|rv?{^;Yy5L(#othv+ zL+%;4Lc8XL!iIQSugNGy=j-!hy!oUY4Ul90{XAJukI8ekukq>H)U9bh+EO}>-5J8h zQtABX*Y(S=GuHeU8KoHRC7YPMRUJZY?UgbuXKQcD`D%URlb3fNBmW8IeMe;`g`lt( zO#9t-FWkVC*SRb0@-1m_>WSrho7VjV<*S;Y%E$f!M5z(mU%=kuLTbR9=_jM<=P08+ z^F;SG8<sGd6=<(<4yXo**WcZV%*(a z^5LL2|G?T=Fn%tKFG6OI>A(6Um2kE{BkA1PBPF!C$2#|_j2FN}NOM@;TdKiJod5M~ zNzy@9gw2N)MbJ4r_79A)3xBDVhFGj;w0C~I84g;P zZr)1HvfHWZ_gfv?+sw+gkIq}`%759}x!<|#rIqM?(!z> zi@wgL`Of|36*?*6d8^*}z*C!)9DGXoh}^){N`d*XImXWQCFjp3F1zy$!@)s8&&2w( zIiMPr43vM{8_5GZrCrSDhPe|D*)?$gcJr~3?o?GB5Ub^y`QS)@CO;8oO4fYLynUE| z+Z&EZzV@`{o6Cp!lP|m+IVT=}=16~t8~Feg!pi^rVg7Azq}m_Pw$lGQ{aUqxO^>m} z-xZ5bM_20*vMSQMq+h~M$69Dc!qNRGm5#ZUh4+6C<6ONi4xv;DRcKHk!z(%@9>q?Ec3f(ALn!Bml~cezDp@V;uZ(l zsFU#Wq`ZF?wTujl87#i4ikd*LEt+1vmr6zzZkHNfcqt2=DZ_k4(?w1mb%~T_o5g@PZ=$-ECNJTTM+MFt%U(oz5^0`o60-MnikP#(UO^7qlO868pc@%o{ zUtT-Mx$A7<(cfW=$PCuU<2;&4`p&j<>9cm^lzEH<|+#mzBfo=_9*mrS{2SE2 z&^vcM{ekD2q}0F!=B}iqpPV6sNs`QFWolb6#Thyx1lYAl_LHUxV@|*QW|?H8YngwZ zE{ndeC@u8oXA!P!5}f`P^Wbt?BeNvDG|7AxMw#hU-Z6d=YUs+c@fR|LuT55u&d^aL15PPWCM6Of zQoP-D`~K*vSojGxRw! z5~89cZBs$Ym>wV4hsf6xR!F~eoVDkQ)MR_ou54*rwq~wF3> z(kHzXSo0KTNa)O`blYEt>AYJVZaH#j>sahQyvPAf_h2gj8f~wM%m-4>ypJcLMw3v3 zNct-f)UrtlpSTGp*SyyvakfZ8Z@64oT{?WWGxQT;l8M7zu)^714Xxt6*x7c4Dhnq) zJmpB{xO}?4NCee?oo#<3OJb&>%MoHr8oY1GhJi0y4Ymu(J*-KJI{4t`uqN3Lr>iC? zt$H=Gi3Yc#-Y!wY)5lclN=lPUYX?3ak>ZJsd~0HgIf{j*FN5c8&M|XI!^&mUoDs<- zmQIai=0%Cgy{x!X^`n@4`ty~N2J$KLuHx=i=t5>O|KG;^f0W?AHO(!=*m{=85XUvi z&UW}%Q$lf7!nNLf*l-=j*H~VDm6v!?AhxdeE4E}}6}eb= zxox96yUKa@^T)WCNb|uYMG*B? z)B%%a4Oz_4rV8hRw}mLF946s)F5Cy9gSbej>qe^O7VMfgK{NoV(KT-Qx7}(g7iZ1By8{ zy%&48p4Rc4^YO9aYYw&j?TmHV)0kS(@52)x)MD)&ozJITBC4n)cH@A=fAPZHfE@ramz?0Fq}J+nOK16MC$x!Sqw8E;kEecq(sME|79 zdmu#ui}tVea{C-k?LKYKz~g#6($DHm?}6`Az5~S)&rn$n{A>0011U1X5dK~r{t*nU z#=xCCXnJY?M|h{sP;ZAkB1U6n$JgO$zq(q;P@Jlgj4+ZS#tJ1LNmx6=);PBEY`+R{ z)NFy*I#N{O)hoc3|A7>SQbRj`L=gSV4)*~br2Huk@s~i67jRN0GvP)SCnP=bjXa^k zwsMO~Ns1S`x2>%ryI-n`^eCa;xt`RR(q{^ruE9hQFE*Kr%(YHpY>OZoT|8nGL`YF&u1Yt|6Ybfs30LGV?~^x!H3{ZN4ri7+#-AWmhzYqDBrp`Eq~t~r=d%v zbsR#mXy2#LxhT4@mk(ZCc&Mo3bWaCw(Vf`yMaIpLFSi!LonG5cQFK5U%NY2j&EI6) zI>V3?ZOKBLk<2F;zvS(?GzPgeOwH}LDB8$ji@R4^%8+>j)Diy(_A$=;R!1>D74t2y zd?|9IoB%}?)(W@knA2W@5H9m8s7=nt$NkVRLQrhg9XW3KCcCr>HBKFv8sq<>wj&O2 z(tdfxAT{B`SlGTx`N{>0pnM3+I`3dPjf_f4sPQRyJxZB2 zljnFgKTO((P+j|VQvJoMgj6?3s=WR+o-?(#t5lAf?Xr3o+sY>=npt!#y56dv%qi_@ zc-xWn3D!rCyA}cS9Z?4;VXhh?m`F>_v(0TvOIYE~)q|{Xo#mHmu9`sjE#=L-D%wBGE;n>aF6ubK zegmpH0}{uhyh*DCz$cQYi4G2JKO?m#BaUQX$wCYz-VQc?eutF3qFlxa zhc>1qorf5zd_ov2hZe%e!$!Ug8^-EEdBzJx3n>w#f5lu&^P)q}a5zJcK`*tLsgQ)s zcP<*13Y(`b`8Kj%tYi?LVah%|4~AGi^0td z;zsgeCi7pDS&okBBSlN?{-k@8J^*ORVkF0%M_OGn9ZxXUtjB@AHJ@p*DTBD8Rh@PD=?LdK(dLn2m{pQ2mk!0J`M z!^AF9c@N?$XVW#(cM1pGGQTFE%<2ppcdX2j*Jx0YSS~RV95r9h9XqzWr*3KQ(=S-JhE^e@ScstKWD8A_3ewjw1dQawED8nPx| z{IiAcT^y6Od3-qSNm|T0s*)AZ{J%Kw7Aq!6W2sP+ust1n&F{Z4vOpao-&qTBMgDbo zHip!YE{xH!N2Hib)op@UK2_aTxh;RYZq&e>NotW@N-72@o@8uZiL6smgjgS6rn#r> zV|w=+l$c$Y+9ZV-prqZ(rovu(No~!bWFhtB-QGgA0YvBBGc85}sr@-t?d65R=ic_V z|IXR|3Q21rr>n2d@HKb7PVs(B@pLkG3{Pev$-r2#W#p3l-aEd)SCLBdU*CKk7J!ny z=IntVs7h&@(v8`aPnbQzMh4B0+QSp`kj$zP0M$rKH2>njB)P}3h$$)fCN`jC@641^=iFCSkl@Q=6&m=GE|=CYGpQZ|Yu<(O!h#+T zl;-*7QgK%+?Cj4G8pFkr096}d@0a?$C-qa-@%(kjD9%1Vv^lH&1H|^$%`UAHcKlNI zuDC?S!Q$V>=MCOqok`?V)w|wsaf)~EtEg2UsYA8oNRee6EOI>1%=f5MyjyQ~dH25Q zV067Su3xG&zNyk^h0*B2R#sS5bynf&XD?Hgklg%?!B)Kq7xNP3&Md)C)o)-s`qkE4 z@1^UQswqWQ(zL$EARm#8q?4f{K*IRIN^%K1r}-ijw6xBxP;ba=ZG=}gy8<4z85b(9 zRBDm=N4l-dGF7={4dc)1U{>|D`X9hn`2!mx39n=8c@sImc$+?R; zY&|PMy+58_!uMrPy?FB# zW-7xzwt;owjokQtA#xtvHo~}p7 zbDg0Hj4tfbg9~m!EnPgmH2-a9XdKg6tX#!LL8dcQj?~^fufXjLeV#kjIC6xGnJebB zt=Eo4KVwPGd6$VVkxnm|9Y`yG#+1dU@QZEZPCJl7yb}PsZ1PUevAKf|^o9vTG z>}A?8KC+HL7X5KhFD=XYyxuC)8(uGLMN?7g%Y z67Wjm5mxoT14iyY-fAPV7x;8@j-G-%lyBx9Um8 zIIGLOP}<>=W9%d%<&knL{94mNh?`W9>)a+BUXbs+cRwX5SnUkW5v+E$e+hRAoxHp(d`EKN zGpg6KcNAL~^69%1DU4F9W%Izp=s(l=2x?WTC|Rk2(@2~xO=3|)Lq0BB5g?dZ$xtJc zMmfNq5Cv}4lE=*w?H)2=7ZoS+K0}1vKSYjjLU9EvLb>D``K|JU+I)SLQI}KcP`>Ym z6R@nKW;#PK9|xhp1$>&Yfvh$azz3mjsn%@HbGbse0h5;-qfeg{>juI@SZ8Q6H#A)2 zKd5<(zY91Q#!I7#s4nXmib!ZJmyv>eYZeov$Yoyfdfwi0K>hW0uF}#hJKm zjl`!!dG4aCf}8~N?-Yd=i4+kI`KHpjS*2qxkTj~y$d|}Px07a;WW_A0iYHIPEF=_- z{9585Uk-)m{6;oXo-uQ7wsV`z_^doSX*<5TNb~(^0@-|(^$5k=*aFT*z%CwJI_dS2 z{69GFSxIujk!p7HmKqAS7NnR(oMR&GSBQ66(lOYO8#+;Pq!{vB?Im<7&40~#kJ=Z_ zSzmAIddP?42To&r4Cm#Lu1KBNuvA+d-9DYdd*Ksr+fX$4Qsnco`j<%GouEo0t!?gr z*QBu=gpj=0L$3RX`9MN)Z&9GqnN?$*ZHKuV*b|qhZMS46MGnNvD`fCOhSwaBVGQ55 zrzY)3A!y_&{#gHEEZlngSoKQcz}V{Tg)^S#YY6NdNct^9y&BoQ`5!sku(b-;aqd^q zj6=acVgn6ga_*tIWqAQAIU*NOK=gxOQ;liwu=Y4`u8g;Iaz&H;_nEpnL%oF7wKaeA zH>oOG0whz5g2H!Y9dAWaDZbUF@0Q2-?=$C#EByCIp`~W44_I2Hy+0gJeQpz)Zf8G0 z$A@b0i!E}aAl!MRR(LDi=`IJ&b7d~h!!jN$i*=tE?V~7h^1%WL6t_pvmSWES9RrJM ziUa07e?Jp}az~maML`l-S z$ROh;=B+)>&=wWZ^roO56O>(tqU{u7*Kj?pys+Slili3GatBTqdeNapJ#{Hr^8rD< zgfvV)w3QOJZ=`>e&SctGf|0sq6l(~9gTkBvMocvpGv*0xhDle^Bk9~SfOtD}xg%9{ z2HI2VLoTV3i`>Y^Kokj7gMpYcLv`P?deLqAeVl}wPt%3(GS zs_q<;#rCpE@0KMEIz!2%P{unyybQt2fjt#w8lhAtJrLZjmY%JCzAzlfgkh#X1BZ$D zldy-7+k_P+bheBBFOI+Z3y!#yg?$br!|N?iT1RDT{XlkD^5QjSPdJPN62ohg%o(yL zV5>vk2N&&>lXgBYF4By0>V!G|1IETZ$&pI3DC7GOp=+g!sWeplkLYr;7c`|?v6M9D zn>cBsv`A;^caoYKL_RQ|exL5a+AUQ-KJc^Q`XqAt8M<3+JWyRHvP(O`2SwKp?@V_d zdE_D}Lg!IEO1@M(%p&nHzVyhSs%fy;%m~>8e_7p(@2T59)@qs9CaxSK1hJCDaywRi z;El!|uhwjq$-I*%m(09)p{jMpP27w}PPLgS*o@(hiEGDTKN^3Uvt6dZvNTN2-R@R$ zHcLLMCZN1V6jDWD$!3Cm?`v9(-Oi#a?sOd1eQ@l$~{UJ$I6|d!z^^!IrRWvxPrA+9 zF#rcnWb|^D=EDWf`$){vo74^s9f1VIW;|X-E<23})i4HsqB)vVBz4+EdQIGx1zi{? z4pJ_Jvvjuv;VgW``uvM)A3Twuxx{ep8e=!IESryL=m^`9DW=GGt30ZAdppqY?mAaU zE<0#-L(%+d(~Q<{XyRP9!bq9K#3L^YafEW)yVK|pX3cxDu@8zV;+iJ?^-+t=in8Vh zqeNo;Nk4pz2RnN+4RS;_GIZPeu%s^U!|s)Y(@8ki!rx*niSRmtqI0YnA3R+*ZY{l1Vi7D z5Jng~GD8#(dp;=blWj+m#y=mjMjk|-nm;-+6y095M4ty|9csZVezdmq^Fq*kYz&b#i!RT`P~4(SLaJp&g*oezZY3NRdV`nKfEkd(h) zQcsmHXeB*w-h?23RLT`=o{g+i#Cq2^Q>cc>a4UIMGxnL69EIk*Vn;zWpKH62cCinG z!%dH;>V21U&y`A9@4MWF(#8;|KG4YE`5;_EgLe(M2-3& zC`0EjM+5YZTOxd<8{0Pj^F zgOVV7lh|6p$B9~nTVlb!kE_^SzLQ~Z{uRk!4(fjS80sp0UCg+uGLxxH#IJ;uZg1(0 zmX*e#4?0hSS#n*PS@xSNB12*!i`mCccwhTcMt`gG_KA*vzLY0C?(E5w(LVfs9nu?S zx2FPT4bO^$rCJjxDa1MlGemr^LoB~oJ@?C+fb0q4`=-JejB|VeC4M)B&K)Cq0 z6w5M%J|4?5i?)Nb?Cp-1={dTVDD**{j;fNm$>LqykS~hT@;;tQ)x6(Hi4qE}<$gkv zO#~QtaJW7=e7%~9lWbZTrr~YD0k(Tirt-2jxZiv@I%HYU)xoZ^0kU0eoZ)fr&x6WR zI5B6PrD|Xi>?jjQ1`~4|abqElDjM3~0X=FSbt%$Mpg+HyBa8x<95v6lNK@hqYA~Aq zVSo>dOFcyl%M|Voi=)Q}87+I(*QZFXo z%-gZ##|ZKYrG$*##jy@`)O=KQKwZ2>)rrR4m+1W<-f9o4Fx$Ov4KXl_&}L(2IWHcG zJ|d<3y&8kZ-IN%!l9-Vu=qLJPtOzer1Tjc_2aiaYKQqE6kl1)P;(PaHaE0C5%!gEi z2PavgR|+%)!&*uAnTE8zkVAahgj=mMRQ1t@Ny6OWabLVh1yDpce?iYwAD*zsgA@Au zOr>m%3yY4!2x@onPEilxea(z~|CwjH7~jL1{xyi8hPpoUaUn}Wm%*N}w2WOUti|#w zo)~!5n`>;Z`iH{%4=5NiuQvi|5#ds02a)~ZDFrhF?{i>!5fX9QOXhvfxZVSwSaL2y z$vO6mJKLuVi^s*CIxbb~V~@|Y=yrR*HGySHu}`_NiYGmBt-=1p|4*u$+*&l>FH*eUb3SYp}N8Su$!*Cl~sHJTnZU!>1L z9%tw^)f%Wu64(t9P`qT1q%85MquqEd!&>Z#e;+W`AHJg^3_NSmRpp^(_>U*U6c{+1 z#qXKl(2cL=lbmXb+BWWT#rW3gpi`)iH4?Ru9tBagG4F=vLR6knUZZBU(l7gTANx7h zG$k!;RpJrpv=CL|n=k#121n3}2p}u-QmJl7AIxOF3V~D+BaHR7|CqS{9`UE}hC20I z$3LO}-j2Q^B-00dNse`*!N|x8WA~YtQjm@(RWi`NK%5>PA?o|gyD20`U_VqSB$>YS z^USJ;nBn*FKI?mCz7#|DVMtGBkE0BLvGH7Ob!8L$%@UQPJk(0tm`r(qa}+m;j;&T7 zVIlL_L!x~>!ZBO8L&(^-XdEJ&t?^cq%0XKU8xBJ)+ih)rjE!uyKyD)F#|E8-g{oqB51&^Aou#Cn1vR_i#`G7gVcj9Ax_tzid*fx+9d|GHJ%DSTFFnXT! z{U&e6AMD-Mm^3-Z_}69VW(!}jh=(!sS3=Y9xb!m;^t9ig7g+`BGw-rRlzOMD&zwV9 zc$+J5wL0a!&s-#9r{Zy;3cb$yM1v~4kR|?BRHT}IuKAIs-#AO+fcoN+jq~SYr0Fw%@&Wy1W2_&Dsj!J%{tz1(vMtyz6QS>}Z#8Z|qWRK;-JW9cU5UAV|g4YDe#7)6l; zUfL_wQfbh`NQS+l-%YanFV!x|wzyyQjd&MO2l!+wQ=RmLi$0@>)OR83;WPGBLk#C< z;6Wi|Zb8nJ$o$G#b{`jMfTP)t3yoFQ!Df6tF!h;t%AUXWJxY5BT)+VVrxKpZ-bEr0 z!4ZinU!S=Ni>*5LTt2YcN?v3(Yyhx7h{Mn>Z`-M_>r?H8O;36~G3h?NM&@wJx!qYSPxPTVE^xXo3^_!h>{}bflE$9+7 zf|E#U!0t2iXtZs)VZ$0edW2Ssfdi48z^-N9p6h)Yfx- zWZe{<)AcX8EMv+VEVPi_VFgdeKbFZ^kQ{QUf=XIvNvTk_U?XRI(a zgn>Y5;>wg`G^I87YYs`#ZaTk(YRn$@r-`}@GM6x~6?=Ag-0O+u%F^M^v)oj;i*>lY ziQ%HsPL>?h3g>5sga%gi-uts^x5$ewRV=0uUIc7T=d5g)V_83MQ?TkS3R(#;ORJ2Ofry;;;T#9PMRy+bJ_9e*%yf1W(htR~8q zp+e%Z1NZ|ETWg~khqaM#Ajm6BC+e}Xtj7yRm~ScK3?{U#l;8O4hypT!dQ+X{%OT~h z&rnfW%0KV1!kj8*Nus*84Wvd9^}N=}i8z0j+M-nOolfENCu9J{Wxu4Xe@RBNk=b&U zi@(uET|>a%+#GBQ_4K+qKu8qyE#??3bs{*dN7FVS!v&FTxvOega zWUMS-w6Lta!p6&tS+iV5vp*1QZXlEqXl!(?schKbYWBAT>jN#WK%=XPR0D=iw5qbc zo;+Mx$}!88o!K(Uj&5At67bbE7zO^u>RHCsrAvxdmMkc#h~KT8zVdP-E3+lb)!_I0 zC|7e$aE-qqFxm(YZ~fq^ZQ(lO@X?`2A2dJZAdB$78Wm9YFwRN)wqVT`COEM znl$@w4c0aLjVzMMl4>?I2B>PFa&^5wUJpADRg;#g=DMbU!AVsXJxha?uIW=QpOWix z&24Pj&|Ftj8*pXMo#dL9pPx7RvfOFYT?CoZ*j$t2Dqk{p@}jy%6*JgUS>wM-$husY zw&h0Ga-F(sIa#*cc;o1zwUu@CQW&d3QeXd7qg}4aepgGNGT?Ig*ZZr20eO;kb7hHZ zmISDC=^wQ5H@j3jS5^h;*7{v*8hw6OWwki#*gB%Bmx@~NYN%Y}chP=|I?!r$b7k`e zSC%-d5NoZ(TWTBExz_rdTZGtk4b_d!Ybu5CQh;JBOkGVwW3%7oZ&+K`+}I#(1s^rn zNv&EW++;hgKx31umbOvMVUa`vSpHP;BmrE~m~kS&J0hFpS5?^{ty$IVuT=Em|0>nK z{)Wb2O|5Hl9T}&ThDMsczD%gmXVFbGzJ+9CERMl?Cag|PSd8fGG!FhExK|kHk*O=qFeu`_ZAC7Rjhn0I--u3kR( zMq`aX00UDlp8==3>gWNLfyQQIE~4v6!{e3E>~jyM<~x?+#0OwUY_OpInVD~m+fZb=W$K0ccqPV)gah)yuWB^8x`}~zY zxVgD87+}=1^G_&eeIo%BH&@jL8*XuBt098nP{vPN99r_!O0%J{VRB2brODsmW4KLB zJR#i;(sf;xRn3hp(p%_T;IU`lU%?0gyH^KTB+oD ze&O-xY_7+Ojz^p49FP7P{Fv(t9LoF^F1pbge~Tzq@qV*%Wla^Xw&>UDrrilng01uD z=Um&l>tOluXb+b>2Q0MxPKEA-aEFO^lBUy6Ny*76{2bPA)QI0{ z|KxZ2|KTt7fBBbLkGhmOWm;a1F*$eIWtZnozv9Xn`9^j_u)cnhQLrM@H_N~}&(x3c zs4iiul$lwTC3;U*eXw$6Q?RABT2Csl)1BnkdJ;F~wCdKPit_Rm^#x-KD(W{T{8sU+ zy=eFD-J$-9im|I#J6300SAK5U!llJV>B1tJCkX|b_b-QdEF4x?T0T2Oqw9j0`iQRML$iLre zV@}Zmk1=QAB4f@n{uX;nxfU5q7L*xt7A&kVN{bg5a~Cd{TU23OQ&w&iUuTq77!}2f z^&goT6-6bbbBjt#jYSk;(E?-M!bRnaipz}(Zj`&+lrCJT%2--L%(PQeB{Q&-D|HLDxzjclbIGqA5mm6m%{_qu>} z-xBaQS+_O*2CYHIyik6vd(`1Tb0Z9wb#<1DB(mxnvf{OC*?@YpUaK@li@(0wD3H13 zEERIflqm^8#py0T>& zQQz32CK2)GQYuwKVwLr@l5YcwS~cxSmu!eNY-}DIB#|sdnz(ADXE|}sQ2C1y%)YED z{9gyj&;E_(H-=yOneuLA&gy@JtxT$I2Bj*Z83g}e}fX<^yWa8p##-P zA690qy84k$3o6;CuYY@@$D@5k`u^4Z7S3&AE`dGAwYn~_t`6p-2Qgh1Lk}{@_Qa4A zs71M|s}fh~Dq#g(bP;A#k{D>12*{A*|#-SJj-+gsP{MU@4uD5 zN}rGamf&js*94jFOBnu}nB1&f>8o4If1QTaSb%t1%|xF6^$J>QB}z-JI0YNlhzHFJ z)T=+qOwZTlhB=8r?`rl{1}c%k$|T1WOs4;J^)k7UIgt@)M*bq-7+YIhEf^VHYwB9C zc2(6PHLTf~Wrb6$RB70DvBYppl(enT*oX>?29WGs2QTc z6srzf7JBWlEScybQKX50#5`y~-$Tq>*nboNCxV0D*7x%KX|HX>k@$))vey+_mPQ(@ z2BS!9%30%QG_u^P6U`{Jl1$`QZ*bk_Z*ENVv6(2VAu}^K%gCZGS$eE-tqHaST&rdJ zr>Du5rwl$P`e}}(0GjKoYO(mx7aEcF4K*`eP0T*E_*O!_Y%sF3%IpmmlZ;>EqGeJ@DCM+{^V8b87s%z>S32 zxu5*xB1|v-UHiD_+WiZVD?}O|uHHxS<2v>TakxC(2Y!YdtEv6q3f$aa|1R9Q99-Le zO1-*|M;C&52k@i3E4Va=$p3q@>@sIuO zZ2q@V+rM2%KXgYW*Oi6oD%WZpZc+VbbzRM=)i1mJ}Mg7FSVuiJE)c_Icg0|B3aBOsq91OSaf+G_u^FB_$#iIiZ$x^fE}c)rS2+0-<}T2{)e#!gM4RpL}kL>NkEwQX5r4A3Kmu~OzP z#U5kj{3*uK$DS~>B`(lhS><1iP3|gV^ciSv#^QQx*Q3uMl7Xe!pnR^lR<86>l2j=6 zYHQ4iY5M4@7^r8FKsJd5SQJvEZQ)@ONz14u_G@Fc*zqhC-*s`OPa8X=71SD!ESoWY zODIvgweJaWXfG*<_Vur?3ousIG>FZ8r6}oE4Q;`%gQ;OZuHUZ?R##)nR5FDpo z_2$*Ax1mKe81-t6EMd%z#msS`%|lwlR%;R#@?;418`YKdEq>1CHE0ag1WkrotztZ{ zuCHUUQZ#dvg&_L6qGxP5GT3ApU{NRnbxrt73ok8eLGRX#OCuUhG@96t>Kd7L1!|38 zpn8Vk^REupFvtfkzbxJ%Y(lGLL2VX|d&;x5_Gx=5T_{#lBW68CU0@8aClgd9y<8bu9|j%A`%4B^C1~&wxkKo^%5+HIP|Ob7ccH$XsGDonY)@0Avso z#Z7zb5!@K*tYcZjdkeJm>jq>HH5gNyo5WJv++Z|TS2Knhl5JBXy-<0IJwcC@Ba^jq zJJFx6EFG)?qjXRUpw$~#JXvl`-n?(};El^$CqHrHC59owdox$`bS@rX+b>)C^jb=NM zi))5;Ed!gl9^%@=CH{%mA>yoHJ7;Oab&&fVTmi1@*~3=&*=RJE%SO4E>jnJ8-@d-e zy|{Jb_i3&!!hhiuS10ZvuI$f!x~rV<4<}qNa38x!Z!FLDm>`HeYw%Y#OJ~-r3bM`- z>x^Q!XfYsuofs}y`BMwSvGyx(GK&4i`enxCOX-I7qUEBATe@Jae|@FTUsZ>P%U4%Z z$Gpupo6w??P)vM?1}OX?;?L(-)&qYtTLtJCbuG0dX>lj|bBhv@w`Uo;SLqI=3Zx`h zEW{mIvDE!7Rh8HkT39FdH&prQ!MaeEdpxqQ(ZCpkQJTNHYSHLr1=0}91v0UT6>32C zPcUObJ_hL%^~SndrXR-Csm9e;8?&x93a&Ob@n67h3*)M*Fqo*>!7QV|8VI>lHWZ^k z*NHuf>X%SiMGe{|n-0`Wx2s7onJAk?1t)LKQ?Cti-aK|EO+X9^wDE_1p~} zq+Rz}ZF|3kDWKY0fhwtX$}rt-@YgUBuk{=2>U>P@?OC`U(s8bAZmF%S4j8Kg{uZ`# ztrsdm_;4(S8kfkSS+N4h5Pwh{Qp=tgNaMV}>jtBmbGxvn2@K%F@hF z&?8PLg-*~`f*PBB{^pnsRH=V0jY_%=52ppXY&H|Ar%hvM$SB*|Y#@4LmbMD16_0i7 zR;sav98s!#K6#qE>tfn$b*Zpq*wF_HIcP@xSeDo$dj8>YOit`w77 zqB`eF8-3;(V=OZsWwl1N*wA-|5gS|?S}|0`Xd;?YeLYh%qk)M7QFVo5F)^;OJgOYg z@tZ2^np?m+eX}~it~uEtFv+NFk&=rdS>t7MgfQlB9AKgQd}2xsE{;C72sA0|JB=5LJ`OijF-4r46iaQWiYf z9R^X=$VUDQp@vwCBvMl)Qw_Nh2eBsBwP4I^fE$HFvg}QdS(@Lijf|Bxfn_?RcPeUr z5{qUc!zuP05lKSY`_I_1Q6q+|`1Ckl37z7J|6-4pU9TxzY$i73FmKdf;|wnSE1zAD zg;32)X1S=Z?0~#FTRpo(31UJ#3H6FKpy6CpUEi=c5Hx0?mBl)c+A9es2Ak=%Z0Tzb ztZZqnVhO4xAZnVmDq&Owo15vX;$$=gn_3L`xw&!;3AN~j2sIH~SBo-3r-nmRyXZ}a zTHO;>T%-oG2voP)#zyH4^h;JDt;v~7+l7U%VtRXwPvHoeGpdd(%%l*6iDA37L$royCWu z>k@``F|Sc;K3Jto7OtcZHw6R6ypq!5OA?KrWGmAjSsbFLO82lCMy(gcQdM5f>ndZE zQpWP8a>HL7@9;6%6bmI9GYugnsB4e{*hRC~nyeyPnaZ?Wmp(rAS2416xJf#Gb|!0o z@Bv-RN5up%8W}2#QC-iPF#=I$_Uw+N}%Vi#bxi{S&4yYRRC>~$WS z=T9kjsT-U_>kEZtlir57OI+1fW^tpb&ZrF{dDc{}x9vo07+5TmQRQkj`c*aZhtf}@ zuu@UwN8|SS#olFyA|-V6YFT(-D$f#YjU;D~j)7Y>!pXoC0o8<~ZbhI=l9$md zp$9qC!ZZ9;H^a$BJ))lf#+qrly8iiJU-a#HefQ7)Xm8bo!~a%Vs9g<9eRmg*pX{ml z`-Nv%?(c18@4x(HO00gFRgkvIsHOW-t_DmN8<=((>wJ|Pj1BTv*WzQari~bUSmQt( z*Hu>s>agTk`(~w^uss*)sqH%!`?CXjO_Oqw;X@);i2+SAVYr}oS!Ok(YVP`F8@^yH zgnr(VHD!x~OO~#?-rn97<49zbZE|DVSXCXm2Lo}Y1xr^|$%^0V|7%bq)enywnO&jwWm9ok5k{#ynpS2pu!Yfmox zV{cH5n+am!?5bwnNT7e<9}}NYURZLqq#296Jj>cGk54sk2{gEDOISjErrN{R)Dg;6 zti46xLx(KcWkVX4maNPknj}_*ZMr80uyj}1qA4#eh-p!DX^WI`;WznG*TuO8TYR{3 zFZadrw%W*UI*K6n2U$4OiD`~gb`E=Q{$#6xbT|KRfN4+?QNBdrJ25%*lo_PD*-6AnZ3aP_L@isF5{lw%lS> zqQSUC#`)1OSlm>$Wa(x`>9%O}$ku4I9t>Ic^1LJAUY_OJJ;Lp9!t*ifeqvaMEdW)XZw=yr%J9Z6PkTPUoxJyppjJ7(lbPJvR7vGAS#=|uVOZ`azRm9v9Yp@x5|peLd8fiR9IF7Jw!7gc!GOJj1QUN{rixiM#Tr`)HGo;iB<=nF?r9xYR_YL-i7T8kFQ zST1+!k=Lgz0;v4a5@pAUE&;TOl{rSF#G>n2xeN_iItDMkF|5keN>mEjDqpGAv0~!Q zqL%Eux2a*3X1S2>MoCM4`h5Z^r3@vB1W~ERNOF~|S`vP0u%&sbnioxNVKvA%mSi1a^Zv zz<#hBbnwZFgJ1>N5B7p-=MnE`L(x328>|3(!Fq5I41pPskPheuyTJ@k>e0CpL(M!7G{(IanCLXu~ z%=iO*0#<-KKp)r*2Ec=02>3)G*t1iQgfF!VC;#XAJLt}& zT(43OFa*|vU0?{zczr0kQ=Y+tpqztr1ndSg=*J;W3|awZyh*)5&s*>z*bVlBzCS@H z=0YKp^aVLzF9Z&PU7+u6`akG-mv-P_ki4Vh5B7pPKo9S*_k$JSF|Z$;$o!*=W0E~! z_g~=)upjIM9h@t>6Lf<;U>7(j?jKQ3*2^Lf;&Yh5 z3a|$ZfPrI#2YbP8aBztB1U<)TPtKC-1oJ>g6uN^x&<740?7IR3yjOY<>;(Hkc@OoN z_=6KU?>ZQmv7`@%z<#iYLm4x$wRDf;ok-Ag4&?wt;0`cwF5$pIFk>3| zap+wh*bA0|{pay6n7DHk?oQAH_J9HKFxWkjy=TmBd%=mI?*jJ4$un3l=pw$jUr2qx zo=n1DPI_7716F{gU;wNKyTEPWAh=Wfc~9*i*e&m?fq_ZHV_eDLT&ERa9=H+g%pttE zPdOev0``Cz)1k*y!h?fg01V_(4$wV~aA4l$$D=t{P)@J{^zq)=M$p4MXWd}u6_oc% z+^-}Zus! z56q~bJwOk*8|(rPgLzAdcNO_wPkq788^{-QFNZE*#tQgBp23Wnqz~qSUEm6^AKVBA zZlpYdt0*tn3r;Mce3j52^sI*dU;*T1 z?i%VL?zQj<*bnxLe;xIhh5Idp2M0kpILTK}xxijUw#Ams(!YpEX?0yB!p2h0&%M>=5VdiV?M+Cck?J9q?i-$wc7KnKtb z`oIFPAFKyMx5LNs4DJRUt%RQoeeNP0=xC!pU?+GO><0(sIYfCq*Q}z#gy*l)a?A;2`Mmk{|m?CxR7V0T=>TfW1G5uAuKx!h`+bAn4vr_!5vk zs~)fy+y-XsrT$4G7! z9t=DUUBDi&8+1HFJaGq)fgv!Xl=A$N@`E0*0t|rxFz_qr1Ue4Fm-75;@&miTv@+@i z=753U5D#=8qCG($xC0ynd%%j{LT9iGOj|&DzoUMj4_pBbf+4W;Im#!`;4!eG7rt6Z z`9Tku_j}p}?0p`(f!%+A9$?@F$^|<9NPWr)_afmz$4k^-p22Q;J`8_=-C*8zl=o%m z1bV=2pby*$hF+mP!0tZEyNLY295C-y`aS3a>%olINFVG04}y-@sVCSAIu_&q2IU7G z{m>H(fSsWGO~Qi}U_aRX7UiuVT@!z>H$pm~=WX&|f!t92EaEqtS{RDGyi=I?^czm;rWyJ>WsGoBe=kH&Gw<#1()&pbvDgKQ08i!7i{9 zJP7uKN5H%bh_@1VFbC`gOTk{S9(1_K4-A1lV8w-$3mgP9RzaVO$PerR1K=Ro31;wx zk!~;m9szqncO~we^6e4)Jn4hoU>6w3qFkWt2b#E=@_+?kR}SI8{>ji2>}CJRF?nWx ziMxvDTBz<@mGL4Pm=_JI9Y5Z(`c zt|UAt9~r6udqLKujEou76ZGVhKG+4ORa1|vs2|u1vRY?&W>PLNqX2qU^AbT#SM z5D&}&`@vGsH;ej$f!U-FItsDtffe9kuoujz<++G*f$ll*C+Gn&Ga3Eh4$v`|cwh$D z3kJYJup7*%!`(xCumY?AyTAb03wDB@dE^IngN~ai*L=zec6$jA2Cg9=u;*IR2YVNg z?k&)(oO*ygU;uPnM|$!M?gj&kupffmprfAl0NtQ(G4a5z3ep98!QG&H3FQDo;4!cV zoVbQ`m%<-l9=HMwfg8bYa0lqQ9)1FQ!9g(a1=^*7^g$ok3x>eX8{ikP2RsO7ET?_I zE-<4JdafWJu;NDY0R!Mh&~X#_fF5u+*bN>52SG;@{#DQk%mV{p1=tC8`6v(Q=J524 zTge|R06o=|3+xBCfsPvb1?UEM%X2Ms1AU;Q8TUHc1I)M?x`7_h2L`|p*adchyUp4|KFpUeFEpgB~!Wp7@{#41oc#3+x7az<#hF%veJ^fSnD*4^Y2G;(@(j7Z_@S zj`9p10Ufu}FM@;vbHGlp6zl=(!9j2v7-*({h&$K|cD7K?wd4!BK~I2qU^iF~_6DK9 zJgeFbB+dfbxNZ;6~8*MfeKr0lUGxFGF{*;wzNz4xX{e zmx7@ONf+$-CiMlo9)eDrz;D5Sp!?gT2L`}SFz-9$5B5Av{+r3~`?NFY*hx4r1MCES zKO#M_>&MWqmFJ&OKCq{ob_E@~NC(V&1bTqo;KVzL|8w{b?0uAQU|=`p2OYnFE?__C zxQlu`PQAg<6Qm1f>>+=!AM6tMz0eyR1RZTW?;||exu5W0&y$oBtau7O0W%E!OS)~5 zk+gnn()nqpr*2Q8{y0zM^4>EPRg3fKW9Oxhzs5OcU23Z_d&101E_YufF(r(LtM$I2 zC}PDh7NooGPHsy{z9BtT9wi-y591L2dqAV?Zb#dw1?jorL*4|ApIoJyxYmX738ivM{0 zi^SieLnUbxk%su!>sef+kR z`B2nRl%Cx-YJPfQ%E!s+*+uEDqV(~Em=nu?BT)_#zxGQ*(N(AE`1d83q>sNhWlp*) z?3k0Dy=_!cdhXq)dD3UJo$g65PuY_+I(-ICBux;q(h1HRle`m;c_(-jk4b*`6fq1# z+N?C$FkaX?6#W7BQvPkpp7il|r+9>%$(u%}kB4TISjeH;dn4h;KR6Waknq+|_@EQ_ z?YN(5JA&fA6Zb8+pFYC92lrOoFCXE4825*9e=xya+FQQ1ox5Ww`aN-90!>o3B~!wM z3C*qYn@Br6Lb$~V@ueJj(mr43e7O7f0b~G&%DwUu4G}xd1ICc(+EEv zBixK{U=NjW3ur3(?HY@tq@EKUhOrF)&xybFQ}xGv74Dz09YJv~#l04HN!$L3yASs! z+{fCEptx_e!hc@eDPJXdi+d;Tt%M&h?$%G-cjCTfMEY*rdvM>5JHw<^Urm=Hs#`Lq zLe)shbcApw;jWW#$d|TcKOyET%H`pdHj4K6=1}wl@mF%HOr(@2JvaGA0v3-E`YjxD z1OM~JNMZR&x*p=aM?6(;B^NB=ho6+sXZfr4RQ`17TSljkEsDz*3Ac@K;~yG|Uc4RkZ?*)N?3jp{~+$maDPY~RJ)g?=Wa{hsLCsD{3OmG;SLe*dU1db zs|es3b1nbH)_NoyzWU&Vc##J7Ip-h=x?Bf?8t9LD`&+?PmLo9@Zi zD!NN~j^S_OzkHa#R})-GDc!zq1di+5L(wY}!&Rq`^-x|($Af<%{y&TPUz7e`Qu6my zM&iaVkE@<=FA(lwaZvJ+A=Q?TtqJn6!WNa9o?XN%|ISc!g2c0aQt#ckFT-8#?VsHD z;=T&^OxqEZavs5bJ?>u-_hIAk`dE7l-7?_p_Xu~Xgi~~rky!sEojiHy;`1uvG%TI! zVc}K~u9k2%Ki@6mL7R+c>s19|e^ss!;kFZQmZV31cPBHtsc?<4a8jc5NJo0W{4qDGI!JyK&w$?u z$F$F)L-KrrsIDmf1^Aoz$LUlzy#Dxqg#Q;M{xCYNi-nVPLWFDj?oc#K!YO+DWByX! zF8o{Zzgzr=rE~MJa0jJ4ggcSmx5wz1M-qdC8_RmON^cmwlb2~Oq-Bc7ERRJZj+7&3 zH0?>eJGoD!+Y*RUoG|`W5bhA+zLpRUIg~6~nH^5#&_=>}SwH`Vgj401tJ^&nku`pv z>ONYF)BSKK;U6LVO;-4}5&ml>U9wRkMQ3ZOAr00E#=yDS8c3XMPru6?xi86 zUJkJEKai*BPt>^aF5F;k*e2>nFn`B`u+H~;;;HWs<({uw-Tac%p(5hjS&S@(n(8$euTS#d(DTs zFUX_hpJVxt9G5+~8$V!uQUY2(NpFP}e!jRVzNYKnp{1gfYa{;I#QTEfe|NIg{@Dm= z>94S14t`yPTSYi?WVmus(XD{j3K4aC_7dLppNaau4BvCch=Nx%W|8VMlI}6Wc?s7m z5mmdR4Bnd@PTA&Ay8pZ}D`WkulOQ=Lq#qIfUGzth-}faKi++u=5q1>E^y|5zU(ZV~ zOx}A6WjXolcz91xuZzYcSDeD*=2N&+j6AL$%2oa&PJfMU5noG3+TfL4kwKJ*r5yCx9xS0}Bh4aSr4@oDD6ixh9 ze^upyzeWG0JRWQQDdor`+}Ov4qOSjky|)jqvbfg9pX`JW4PsQRXlc7uw5W&?B1Vh4 zAt3|^5+EWfy7RU3AtBi&J3uVeXego$5S1#mRCAOnRcg~7YN=WqTWhIBjg_O=Vw+>p z($;EfIf|`hzxP_}p8Z93&-;7-`(2mMbtUu6z1FOmXJ*ZsHS^3o8~2IjC;>hecx|E` z>&#s5^SuH+Dbx-s<%oc<{OQBd4oOcxuniou!6Ecbp!b3PfY4Q+oj+jDy94ynpWw&b zgdQKi#ahy9GroP`+YG*6CG+{hVARF|F8O60hw`jG9GxtD@&1G7Hu`wb{m-zxvqpFM zd|!^)g+e4L1icINGue(Cp-Zp}MalZYd3V5fc&J&ol%o@JR{fOgC@2TUw;3p^4w-qN zZwGxB=#S$*xn6uXCfGrEkJjadP1~OS_^tEC?)z6dh9tqU#5TdOaZ2|u}@V|n2s`W#-af$00+7Go}XJI|#SJDj& zjR|@aKWQ7yS2-KQ?ap zeQ+W9ARM`%Czd)Q=7DSjVoHb(v0C*I6s;G9ANZapzb(LM|XwIUaSUE|-`G zr2QXqmh3tlh53qIqBqY0F9m+PplEvaQt4=E`%8I2?-lyIwZl6`%-fK;KI`()rJchz z`h53_GRt#~LMBVFPi?rAQ~Lq?U3-S_(CD!RsdjW4`17%!?F^Bt?JXX3q0YFayi4(~ z7<9kT(VJw|PVfl+l>%2k1GvnVCI3#~OMtftzvdtF-!UYyUg;2ujy(sz70bXv<0Pp$790TjeU6ftwep!5)AJjXmtp^5cIB>4o5$Wd#i`5 zV)jAk)ub22=$Hs`Fw6tC2J~K}uN8WV-PLtJS%D}`UiOo8Pb1wSr27`ralH-W6#6TS z9J}a@?5o_ZwevxwD}R}Od}2NO6a0U6Y*eu~{xc{a__s(tqF>M$(JR>xTikaz`fb5g z4(7AkpM4$9)sXbn;Ohflx$yCl^s9l7edTcUGisOO>sfGv#O2mY^g{O6=KO~1s%n>X zeADM_jz606i`+fn&jo+6Ao1sermc2bqgT>}ZiJwy=$2-wp7v{?MsxE+;s;gLhTGd6yU zygW<*a`1CICy9fG=i4aL>qNU8?{|ghC{;uDE*4PwhwO9i-9&SJH{?;f8eD<@NWlR2mI6+ zH`^b0JMj5}&syulTZN8Hx+o$~_ILMyE_LZHsVCX*y$kr(m|p1ng1Dax=aKIVFuwYJ zfO^7{ro1lTIFko?C0L-E&`bT?-XtrJ)t1+?S=HKHAojgy46xRx4xl% zBRUIL45aMa!M7QFQ?d}bYJFDcFd54(A061}+mPwI2E5a=Gp~S^M;ej45B%HqACCSJ z_c6ILZ;2?YpgQiz{`K(NhokESQ2o+%IqR=xGGgs1<;VknANccQ{Hl+5u8yq6WOdYc zW7XjA2fx!tdBYT2_gfaT0kab9!JKR?eZkZw<+~kn*1dB$+AR61UE}!d_gxMt=Jb`A z;go*05Bz(IFX0Q9Xw=T(SM_Tjhx3BN-tdVwCi0M#`&+h>ckSRTdX z(Ef{0RKj~hN`RljOf1ts03MMRm(0 z1ecU&+~=@f^S8s%>lLwoQl32E<-k7_XkKTgyw41;_pQy67iScJEWM@R%YW~1bffUi z8r`4ayDe7#(*IV2z76!nS%{!q8)b%`xSpVPO6QrFb!23ESwmVXoq$W7?S{OaA7EWy z+D-e>0={Q`809L=u8oz>p6?Uz%kK%E1$NU9vnOLdkN82pmx5MdCe2=G^gPl}lXRFi zcj&7#Gnn$+WuWIE{am4Qez%%WF7ycK0no1&I_GZztPd7|N9uhO=cUd)TlW88dLU@FlPYrtS$mW6 zj)$Y#^C9gtv;@x^Ye%W~Lek5v-o?KbG4n*841o7Sl=Ek%fjpy9a;_2h|9{T&`l;pNrgg%5U zS0nvSr2ii7tsdfbRPv>7RFrK-RhId6p1K3+a{qNWn$7;aLHv&+=2Mxc!ZdIug~Fk0 zi$gEnn8HljHR4+5fivrN8Y!`o65e=y}psI-k8}^nlOxUf+Aj%PmW&p6wU@V+UjJ4c7YHJcWxISa&GO zUg}0r2*tDDZ`|qd_mS?rw*NxyBdlz_triHq8uT#e zXX4(*8PJ!;>1#l52fZvtM@9JNDTB24R?vGvzs>Z@*;fp@(&m}xi*h-;BK5on{Qhx+ z(T8IC6<^2Xd^+s=&lLT_s@A3yNNl#qlXGkBpBs!mF7=@826-FAPOi_I6PrI#5BhwW zSBf6s5mG#5Euz#%1oHZEE@>_9tv-BfoMDjX-2{56f6)9^SkPyHSIWWnvrv{5YJ1TwZ2UvR1;BSP`8s?x zsPP5aLPu45g`k&%{?(YAm|wbl^w<(@$3oB=z_$y0AFv)bU>r@d+o-dS;UzFNkD~_T z>tLt?SZ^CarG9omPWyQ3OG^F7mM1(4_@yvr7v+3l5BUAmhfaCF%yrGo6EifyOeTl)1rB#^F3qdah zy;$hjUeV!Osc9uD^->LbJLpZ8pYB_d_rWv3MYFE;(h0s@XAee;Bq6j=-q+2{wy{>^ zYzO@i=zkSDUeU@tAXipk)((T4VM`t*AngHP?>YEQMb;Djn#A!XH}hN>R}+WPIoSV=P&;A?>AOk({JuSU29croxv@*Ii%GvK=lt!?wY+45RbR35!?RyOu0@P2-__%n>m zNg_aN>}40kO8K+SM*ipF{0i?@fTpPVrCGkfqpqB8w(WqNA5e6T+H5XLOwmYgVFD10#JLKvc9C_q^|qV8Qt!a zrOqMb*?N^c-+p<%JoqJ&0sOrM=I^1oF>~ZrQfY@#=b*oU57UC!CHgcTcsX!y2z}D= zM3#{JF@LO3wln$hD%uMs!jx?f>Ab17C$f`aci<4+8H6J}5|BuViS!gHUBkva!pS z_h6HJC&GBFn>y(BbvS>ZL|&TvWT^&Tm++N|k+~4|QR<6+puI2tww4m8_N&$4I{?0! z0-zinzGl#8W{WMB@^1k>SiyBOrCYikB0qmHVZV%+thisa2lO1!F}+ngvV`*91wIzI z^l7m#R{|GNS?9uE0DhC;S|1$0afXp3=4-#)bXQ6APLY+vWHhDEScCX5gS%Cy_{DM2a^5dY9x{K>vh1V#O#^cnc~=fj<}tX_0Kg!R{M-> ztR~XTp)W#$b@b9~DV4Vxf7Rz!6(1n`3n8LBj!8t_XI_w!)eSoGnRh3UCK8b{UpJzz`4RX z0$JI>zI9uJ1gF`nec&HEhx0y+c)~SX)DE55_5ztb$vPkY3;1+=2cK*tn5#Qs3$sQ4 z#)IAkI)d0G^)L;;-P%k$mO53pq`Lwm%$$zOYOC z$#)pW0)I$=5`7OX>tt>LUs^9_7lnTd_&0;UMflZ@%@Mx}uQxDN<| z%i6I^o_#;?0pRKfYkei}zm)GlN65W`WZT_9K-+0jdpwEc)U!DJH|4lhp z;a=hoG5w3LlSD+`4ft(a$&dZV^f=`?R8|X)kSz&qL%h}8uSC8 z2U7ck%;dS?D17q03a@1_dKdxnbK{UMadKGG_Z0G-q`lz#uJA!GI1a!b;yoK)uSk{S z#r2GAOjyRw(fgU01d59rd!H@!RR%eM2!0Pb*?&{Js`aIIRrkrw8Qt&89FY0)kpr5V zCMo|`$jed_lhd(F49)g-`Xm#JxAKciSvPZ?}MNEWY!AWm-OWd|!d&_cZBSgq~C`nSYrA z2;YA2bwSR}!UyM9W-v`!a=bQz(0#^aGCa~~TgRc*K9RkGbfi81=KWZoV@^8lPXUll$_93r_ zz3UHjW@XNU>qem<%X2>s{#CaO+WTM_YblzPdk^p~;Fsb)R_;1`WGT-<(0f4NXmqEi zHiZxjm+;AVWX9f#?*RyaBSbhCC&t4k4i;aNX?}&^>jodxES?`<;p_8*-V1u-^TYp; zVU}Ks<<|+m2_1vc#U{swaf3 ziF0`tNMPan1bn-|wdDW7}~X%*-%N`5TA z_~kgEfZCMqSd`6ftL57c{;^*hj6Nd#C?EYcY+jDNH_7#3^UnmhgXXwlCS4-4su+L? zoFq0s@Ds@&@~Q<;d02<&%)~eymv?jW98L8kZyM|e(w!pdbUcqi!OJj6- z?g;7QM30bf;(XJGJ|%tzO0JqK{9D1_jqefZ{#qR`QBGN3>&fu7rg(yq{~qCApT2wt zNnZ+HZ=qYyvlU=TFW;5wM|$al_I#DG@(Y#+`T*#U3*C(ivZrLOHk!Udglpj~1>dR- zgVFB@pO)LbchY^LwthDw8^`Z>*ab#a^4}!#kq!a#kMB1YyT1d3oQ;FgmxRts((MMm z3;1P%X}iSFIhO!>7xV+5|3&Cp@4C+gBZr)0$wgKAp*Bcp(|nu-iqG?BVI4M3H9I^F z1I)TEt}i9@KRI`z&ky=u(6`3&gLtmHV{3cBhgI9SOq=M*^KC-9(mVOyLek=rw%QK7 z4)_A<4foN)ZY1ubl{fCY@cN+0nOQukJrMl*R5Uij{*<-Zv-qUXt&P z0&^aa{D(8CY&em#SZ96{p|rg_v^Idh|4ATyTI20zef@KC;FTffIi*B_l2sbcn^&u z{J51@JbDS=MDXQCayjRemF9tK`5a(D?|0(=*69X}Ir`QDrVKCG)aW`x4O8u$d@ zpG(0v0nY`l_LDT>-wr$<`0*+H&jAkr-!1HKn{V!l$}2Z8qkUnu-;oR`fvxTKxO z%s_d+iG2YAB%CwH3In`*dru{DtEn2zdw20mUF0F0+-y>|5ysXkq_W| zUKs$mPeJ>Nta@aQ5`W%Jzt!${f`3VO%x~3s+Rf~MQlHyF-wb+{WZ>#kyg^L$q#kyI zegJeGmxTwH;QN6O06$R?`zQVC6X1t{$H!H?rjT*9TvltPH|RSh8J}#dD##X3PY9Ur zThXQ73L&ijKVtJ<_kLaS~R%_!B_q;$4@*= z{9LlU`{Z+TVM)q8US3c0TJ3R zSw*<{4);sM_5M25PdxyOmqAkJaPdW-^1$Ez=n(I}fv*C7mk5U6zeF4h?yGX;mim$J zMGk-u!#V4x0m2Ki=b@GI0Br(2=P{0Nu=nfb{TR=oVZB`E9QJn1yj*c=RsWH$80nUZ zTwdc5?g!ol{6~U8UgEkIHa01zwDYK0=>OXX?Ykh_E|72M8Bm9801iwdcN+M&f&Xri zkYFd#Vc-f1X!R@Kz4U)K?zboIKk#jYWSp$QGpNRi+)d!`27gclpd1}~!njyoG{g*s zJmb^g+Y7$w(x32LiStePD+%X{@?mRIT_2o#!8%te>c(BE&vC^V&%Q_hj_WVdetE$C zJ=n*Ddn=zTKHJtgNmmAX81zv>hvkq!o~r?P9q@+*SY$6@v78`_C2l!E_xEiA-vIdj zCjCR(ACu+ebBMW_m*J6;ULRS9m3G{N^xZ!gjNT{(SRm`n*NiTA+ru)Ki`{jvJ+xd| zSfCnsX3);HC%1d6Yj%0=iQrrEQ|hhmb0~wT1**3~F9CfO=sG@YyT#`{`uwCX2d~tN zbg-gqyvj#$s%fD_&L;5nLe3oFb9SCf!$RKy`T*!?{y6;x6Cm_Gp!<8NKW^QOMG^Wz z(91!O&)+!72TkZ>knz8x%Xd_Tekypa{p05~r2m$I9tM3S>GAz`So?^b>&G$0*lA?z zC!I*Q6X|wKy5jX&vo~a3xzT64{KZR_NxR$FC*^z^{7ar?|5LjKX9nZ2tnN#F?*n}= z=oKPQ+m-XLT-j)C-xrYbX3a%?{fz5Qs&BeqO!te>@0Tw~Bx#%EKMm=Mk#4AZ5c*Qk zmw^6R+*>`x*KZ}?)udk|^b|c$%s26!sHBtc&bCAD|Ce-9o_CRM8`5DK$nwPJl~P}$ zO3>dy|EKgj9iOkYBZ9JzRJI1dL`nX6;Ol;F(7vk_FL%7YWGBI`$#Wvrf214vi^1qm zAj9k>l(W+(t5n$QY~RuXi?>PSgKuLdB9MQ?dqaJH!1rb4nQsjJ`oJuiJokRc>)*xo z_W1q}pY*wjpl4wrvGiB?&Z#`N>IwZIKhC$OjJwmok_Z0W7vk@Y*Zc7CB<^3;cEhfe z>Arm__Q?)B$@4`d{jUe@ylG1PVX>wI=ZONoKuYqN^5Kf4?Md1dq+aEFzC#uZzM$n=g&LogEkm5xr#+x|f&LQitv{DKKTb|t*{CxwJEpV3CUQq%!D7N5%7uR- zD}y)kiKHDTf?fxDlO)h~bo=~#3*8h+_{zZ71HKo9uO{Z_RB0gv!zJZh4ZbD+mFREA z)(7EOaDbX6{`**X8&GQODG~WQkggBuo)kfRZz=Q7yODu=p(6cEzPDZXTJpS4p7S8^ zFz|T0Rm9p&=wq-j&;|NUxOeZ}#HSStCi&-qJ^=br(yrIK&4SqXAO+yON%)q6Z}02e zXQ1=3QobKc{%+zL@CEkry<&reL0^G;tM@ssJ!Sr7b5qolyA?Khj(teC z6Y1InF#VN9b)4llJMszWW8WCG??Y&N;+&BA``cahOFhc>#(Tl1>oLepzEdX8Hx2kM z;CG39?f>}H5ZXarE4X%$a#Vva@Y_K<@22Gt33iG6HKZR+Oae)_1$aKvp_nW`=7E$f z^rt~z1^UH8cYY!rNqv6MH-oP8h~f_UP|aFdUl&hZ=%0YT_ur%+R|fk4dOG_s4fF}W z!}}Gf}Rh0DAxb+U5vzYvsk8+{@?3UZ~jON02xxxTOp@>ANQTmpS72V z@$VA}-)``21K(EMJ9{ktpuIp8(BvHiU+$ZH@2`5f0EhE*q2SM`9i59v`N!b};*#HE z{U}y`%tO}8zWQO59gRKcg=rb2;3fB-d0`Px9S|^gI8E^`s&4m3@6LCuYm@*iw&U7Gr$g zAA8@4eV$jwzKe7@Do9)c(VuDHD}Ec_kH@{WzrNa+n6}$e(Ca{dLIC>b(m!s6jKuXc z`EI`V4((tW-^bu>1ekn92&6_NzwO{#2R^AA%TKJ5eK%0(@}2!{pbzDD$aB35`YzDJ zlKu+!{Vu;O1iJ33iR7g;*>5DTd)AkLl2Fl5$l;o_8Q| zp1@7VfQ7zB@&jG{9*#TuQknFvpa(!lcg4E9jZ4)iv^1Hde-89^(D8bg^#UQ4I$|h& zKj__{$L+n$JZ;J?>9dx=zJWeeKNk9U(EC8gav|m8)j)zDRS3HGXN>bPI*kzG;$K&T zo&)-=q;tJZUjfO04ATL5=C4aT$?q0~!M~3D9X|AufDg`ioKO7dr@^-ueD_kn|IIu> z-`Da6f<38}M1K$Nw zKZ)hprp@n@0%`kS4gL5V{h9vMXp1$LgxW7b8-fMo~xd%=H!@beOV*bV#u@DW*v zXupNM<~gmDev8xCK3UStKk`kHIWSW0ahPCl`yhS4mEXD83Hm8g2CbL)I?7T&OG%$j z{T%wcKk}WpB+qxQ?DUnH9!ig=z{+3|mY9-QOpl(H^8EwrT(SJ)->1~}2Yuv0p7Z0l ziPx7{L)1?IODfeT`5lf@@I59#l0MA?H`X1|jv{X&`1XSD0pr8|5uLyL>cHg;sI*U+ z$orqcBfgK^0DMUbE^^lZF9-gn$klq3?^!{lye3cZceaCX?1x-WNgYaIS20^bY#3;{G< z?6s@XOF%#HZ|Du69|HZfSb8-H64UgZppQJ1XlJq2wMnPHO5YB8KIqe8=|QiH(|3cu z1avI#v3#Jn#_8{Zz7F(s`OEL6Z2mX&iJ))$H}n$Fcm5lC1L(UzpBgKlyu6C9({zG< zAWeE{m+hb*0$p@Q)=$Mc%l&h}b3Pu7u9AMnb{D@73ntKY+x0DV_AdD9{z-owJ&XPn z-aN+7Tg#^mlGZ=CGA-%l_h5GYKc<&*%J0Wa_!sxrs{UXzlAM*31&#!NVH5azz=vsU z-2QWeo9N*V(ECA8*N%HYANV(P`MnzN6TW9;Ik10Riy`vIl*8WuJ)QhK&`ZzF-`sz6!Ic z*+R7bv%4JneRybjQm%JF-w8V0zf*t~HV$=;frZg}=jjC>8{4om%*| zgKvTtP58bq=2JRfjW1H3C8hn&~QbI9*H4S;?g?ybMU?q8$otn-=upnD@w?~+il${86=*uNP+53hb!T;3d1*t($_LG1Zz$XN$DC*WS} zxvcky{%r!@1^l~$YdvwlUw=T(=qJq=gkOH2DhIz8_N^iK@p3VVzYshJ!QT%4cGkzx zewj`guo|AaEMcz>CEsZw=+DvrcjeUf2Y-HcH2P$${dN5itL^fB-#)KcoQ=r>TVI9* z(fh4P*E=d|{+W(jXg|IW#jY{=U65QKUZE!)*eQ^8!wFccuy^Fx-KYbt_J7Fp&M$`=oVFZ2WaE;w7I#@P$7UweL3yFD|L) zrNDOqhuh`qIX3YZeOL|p$djVcDxc94_Mrq~YCA*rlu{v}dZKqbkS=g?)V^m>ymt6P z*+tVaVu5|ZNVdefRap2e;NK7a+*6{_H*hcQ*(u+r<@bi~kM5bCIYAcEQr-k; zhm-c$4mo>IjoLUG_w!`>L2GQ!E5Gm7by_s~0n)hrZSwB8I9p}{CE2q2F(1xFyd8Mr`nBZ06!{Q}DZ4%#Z65cuUohC5@PQ5h_gVE7D??uH}?|U50eIdC}tOxOMVx^FOmnd=it|V z%#Q5`y$f_qf2fDC^2Gd0>8GO_V6VXUG@qCIiQ@eL%GNO)NA?2piet!bs&=ysasn4c zqxXrN;?7JxccJG*e79)V11$Y{HTZU39JO;n+CO6D3cFET__l)2kKc{_J?_2vYqPGk zr8T^8!hSgzV(H1kw;OzW!B-)CDo_0e%wY4P3nRkU0KWW7qqhHA*I8n} zFSH1p^RvMt`m+gqJ>aXxy*-Dk7wli<>n`~|KSu@Ovgb#-14!2;0M?0ZgIJfoCpbFLF~W9Y@m0Lo5Bc56F7Qb9N@;TVQv8Ger8sSM9xcoxI68BSt2nc+nY zFJTy9_yWsQz<4pkGKQrLuVUEDu$*BX!y6dh$naK%cQCw@p=*z8R@(C)Tw!4~<0r1N z_^;b6{Kq#eJiXe&LtnSh@ij1A3qvQrjqzI;b~3z^;bw;SGkl2QcNl(;;SU);#qe2% zzhw9l!~bIVJBDvDJizchh6fq`i=oHo9ma4p!~5IqIsI}-7}pJqmw(0L!#a(whloM{ zHtBsg8htzC?M(lD#=F{#{v*c2jB6$d|6XzBX1hh!Sbi%Ru4dT5@TWH${Wiv3JAIAu zc7_Z2e7{|9{I2~!Vt#uWc9H*HhW9gklKDKu_;(n7k73JACbya44~YMe;ZBB6F?@#M zvkaeO`0Xl_^GnA282*;we=|&|vZUK-w_Ezsr>(yG_*{XXTKq%C{iMIncrWR1GG5Mj zA?4*TK8NwZGbV2#;~wQ*&3NupMz3JJ`zIE!XS|>EOI-X(qbEJg5RnmV$AMkO-+qTZ zZ|(~g|1#s{KeKon-pBN>Fy8-?(Oaoc z<$Emtb<+Ke-|y1DYV>b2-p=@T#&a3}PsV#*HvT6WFW+nNUozg;XYp~&KS2II(o0#s zX?NQ5xq2Q)`{3eb|G)YCv?smq z@%b6||JC9zGoEw6;;%dYcP!q|c=-1gclt5VZ}E3YFa3kXKXUQESv+%t)n5+d$1vW_ z^rtZHy>0xbG2Zh>i^tlJ^3NeXm+`4CJ^BBa>hWfh-`URq%j@bt;N+zdv}hxr=L0L> zRgCxkkH!Da^re}`x3?MUq5PgK%WoCqz2tZK=kWQQe^JW%I;G0el`?&5 z`PwP3gQ065$5(iZrJwHjQpTIiE~9tlSU7_5oY58^#d!ZQ7C(;hcE&%$crW=!GG0ph zXB~aGrN4!7Kj~j!JU7SaXEEM?ti{h`+&j+Vd5rgsvUon@e#WOU-kxpr0OS2fTfC6* z9Lk@~co)kzkMZ)OjK7TWT*i-K++#e*c<)H#Kc4X}#+|+eSU=UIyZXDH@pAGvF`mnK zgmI7YpHRPhMp%Arq=y;5nQ=ekUuArN&-XUe zpDVWui)c@#knc+jr!$?{JHi#i@SPp;d1&*y-SSV%6R!w zi?=i0US{zS<1YO_*&Z(buatNsC4OB>dY3M3c!lNLcddni>lkO4HXRAKF~8D{NK_$|Ein*>lf(H^am~dN7qx{O*THc`ENJ<;V+UuJk0oxV*mB1A8y_}aJkXX zCcpo9i=XG>YfZlMr@Z$qezBv|A5VRr3<9ZPNebSa5`T&DQ4IU?1A2E1;|D6Od^irE z$80zIj4oS9;w$>vDU^XY%Y z^({H}z%f38;Yp5uUO?|0erS@#namp?-%$)*{)16_o?`N2y-J_Ym1BVM{D~%y$^U;J z^j>21oBANbFS6(S48t=SPGwlca52LghASAZWq1$6hZ#P>@Og%>F?@&NhYW{b%={Ui z$#5#eB8H0@)-YVba4o}o7(UGK35L%ze2w8d3_oNz{7cNA;h7AlGAv@am|+dW6%5xh zyoce#44+{5Jj2%*zQgcChQp^Ze}-o=oXW6>;bMk03|BB*%kUnC4>Np%;qwe%WB3lk z4;c=>g!wZ(li^f`MGO}+tYNr<;aZ0GFnpNd6AYhc_!`4^7=Flb_@&IB;h7AlGAv@a zm|+dW6%5xhyoce#44+{5Jj2%*zQfQ!ixo`iAOr>#My<6056d zsq-dPw>3hZg^^~XtOzx?)HgLIMS`F;hZ-s*0q?>M5pPm`V?F*yLaXq<1`*Jjsw*ND z-lR}nu%@|Uc_>&{jkGT2O{$7CHMbx`3$CvMQ4)xBq}7sCEU&LZ?oE)1f0HyL6I$7V zq*YDJmxmf7DOLFY6#XnxW#G?^Kl#1@V%T>@V4TL{|AaU3Ivo)ii(L9LUjQ-eK_uYU zSo~jB{8sPI$N$9i5nn*@2-C|xuEZ-feIbY+V(fDHZ}tV0eY4A-1GgK$-8iXC_;)$} zWUO}S-FUu}18mn=EC>1ihiE;YtOr@NZ5xJyql-hCxp3Xat1?8s z>7ID`6C=3ahCg|Jm%e1n4CN@D!q;aGX9) z?4Lh&XE*%_T;CGJ`J26$SowS9;cz+qcKN${`7>yV&)?4ZK>KBuzEo4k|GD%od@m)v zn@=2I`WzDz6X4Rh@S~LUUO|=d7FfcrSW3I`r^F8K`Xuwub_qyKiK-ma^u*LSXHa5Nd+-etxjv7-^WAL9)S;n!w*qdjMbllhPJJZE1M2$^1v=j>(zjM_ZTbM`P9KR#yXlJOHfXTOs1 zF`lza$@qylw^Ee|>3yd6nV20(BxZUi;dkza;vXAZM@Z&B*^Bk(1VW~Fis$-i0*vPs zZ!q~1ef4?Ac%6Yj5<&W1miPB)5{QWSiy7XL^&|Z_!#lEm@)bX_er5ufe0x&zy+--t z<#+uFM`1mJ%GFTm9G5a&q(=;Q`+TD#gFs+{(`s=+&!T9k>!63 zxR$?iMiT$Chz(V5G7buV`Aq@k@6i9AC*zagT{jzEL;OwRUc2GHBK{6>*Dod${|E8D zuLcyUCN2#q@&juPuOvPk6|4E)VYtYZ>lolemH#C2hkqVWzO(ed=gApIk<(4wtz*eI z`2_DJej52NB|boWF7aaGf#(8>Tupod@owV!tuoN+h<{%6Sl72>B|W_XDBM&iBX z--5VY5=uGCe;LrYbEm#fyq$PC`F~Elf0yy!K)jE5`3r_Wq|!X^x5RUPZTJPm|3+dssJ@F~T zdx-BNKAU*gE5=`d^2xQ7c>iw#8h=6md){*5rGGQrwXe+gB;Nq>5#(N-LlLn@a{Y?@UF0t_*n63H`v(C<9%4EFKzxAw`djqi z_!IGR;%8FMyTo(eGdag1F4srI`~DQr__ARdcyjnj%302Go^7xv-+mLkKQcoRSN`LH z4`m0&0hju@js0r^<(x%4@R{j~e3AGR;$h;SBR-9I7jYR^bY(tf9dpqN?1-gYl!y}?UV@o+&vkpkjR67MDcPvSp!c%ku6BK`{S4DVzwCnewC zl7E2wR!g4u7V*GLljHREuf)5Fk3n3n4~X{`2Q*$jTm$bA@S*BCN`C)*0dL;N`6y~IZl|19x7;;uiQO+2U64_uXK)tDkD(-C@JOm|^@4#B-aI@vi_MD&Mb?-|I5|Gfa%P(a9n1C%&0@De*55 z?kHpU< zK5)oz*S;4L&;8i&uadt2_)z7UNB-_X<8L7U)oJ*v$REy}uAEJL-Z1h0EW?W^r;T{- zFvI^!{5IfHZ`~`b-u%Sx0zOnZH!J^%UiqXdavuWEwfWz@?tcKX2uE zoBS^kFa3hy>xjQjyq|ap@psb5|63aT!!-EeH24VgKPhLR%*yjw<~xdbIq{2#A5XlS zxErreA>K!PMusIgi@1NW$?u|^^NIHmcXnnf@!TtoKR`JF;^8HRAEul|4!_Fq?-CCZ z?_FlN>tFSbzrk=fzi0tIlslf|BbAS(3Z=VG&dR2Op$$yFbUsO5A;`eT?KjsjhLVovt^fKa?5-;a_ z)4vd(<>d2yYX$K|#NB&X*Y4L45A%KO1oGDqckgLs{w&vW;vV1k>TeJNUq#%#_pKoR zt-!@^^wVz)s}%X3*3k9SMLAvE?_;&hz|i7z7mTg1DFJAHVcc;IU$=T-85OuY9_=9^)J5ippd5B|Fi zf06vh6CWTRA^$1Fd+s&L1X8S(EE&w0%FW!*%spAq-IYq|IDxiRSy4|;oqd3I^y2X4gU%8X5ziXH)a~) zM&hNvH2z!3e+Th?;#ti10pjjF(iGy45O?R2-l3fD5qIa2hLQgX$Io*~1LS|k@xN&0 zxtaLSflIyho}WBUy$F1$dfQ7m{gmV8L4PFf@jQ;x=l6-bb2`rN{g;zNezy)bJlpis zo%3<_b`0_G%U1r$EdS?;yK_X(5I@`T^Zbyr&-ujNxuS)%8}gAb=`Zel(&d!1khnX? zWVvJCg_HBDA+yPUJ#lv~%Gu9V#NGKRS-+O6gSb0~<;I=$#0UP%B?b;RBID7QXv z4{>)+3*AJot;Ea!U~(1`-$A^W_{GG3Lfq>&em9Q1PC-F(db9he9>0usl znYWf~Ful!UzSGFx`;N&ep`2nThv(_^H%gFZ5pj3!?h5i>N4))AlhaB0^-j*;49_FJ zf_N$MCy0L)xad{+1*TUMh;JglJO4M0_*U`<@{B)+<#`nNPSyLZ>@{21ciKTQ6u#K#ivBEF9Jsl@#UjsM;ZBb-Croew;R{CULPxjQ!= zO>=TSG&#;6m`S{!xNG0}#NBzjLdw6Ac=<;r=N952;_m$61uW-s;<+Cizq9iziFZd0 zpHBV`hm+s=hhHP^&I7vo`8sgXPwzt0H$Tg>Rqgen;G$cXZG77IAmZ@<#Iig}6J9c|Gy} zA>N;1&-EDbDDf_z;SUfWc`W^eOv6tgemrq^p48!=CGO6ZzDfS^jz7!fI6wA0;_lq0 zvl~-^OS||}+GVEV$9kJm+GRfZyJ=^7neP?E%colVb`!rE_)zvF1YG>0a-QQmoBUzo z?)>5z#M_AXlHcLC5_jhTPb2?&;_lp_>+hS1yYq$49zI0eokMhf*LLFWyrPr;1aWt+ z(c!(s-T6m{zd+obqjdPI#Cv%jaw^OJCUJKz)A7GU+@0TacH=|h?wsc;_ETSu)w4S< z>imRk;_h6j!^aSJ=TE=O@_dfCJEvMo{7lDx%nU_bInN{R&doYJpSU|OdIjaoAl{!M zr-ZmWzw6{IChpFmwopzvad&>#*~9CdoMWw=yU8CR?#|~r{+o%rbG(bme+Tid9FtQ= z{BGjzT<=)c|F?jvzsLR+@L7Uy10SkiJnrQ1{AW4kKjq|HZ2c>r_^%W{*2}re%H#aQ z-%yS_S2~CM`-r>qr%un`A?}SaIj%nr5O?QUo&S8u$svC|)TcP`eAJJX4Kr&xLJq?|d#-MQMu zY_EmDHQ$S@o_ooE74V_jtBP{m`P1{rzl?a8=MEQAek<|5&slk#9sUaOuFo6p?ED(y z?)<6ij~j@W^W5sUnD2eW-TBsb=KCOVcP`e+*-kw7G|Tr%^6w-*aJu1c{Ca`7JCD17 z`MyHDXP)urQ_eo(?)+~r`QIkq%X7hD;_nl8=YRE^_n`gL$vM~LJO3y1c#fOI-TM3} z;^mW!|24`VLp*Sv;kCq12QGeonCEA+i06{Ohy2$PFCd69Da%Mw-SGZc=%H0 zOZ-{l?tJ!6;x7-ur0c1H|3A?)k%v z@G)@dkG-@5u0FA4bIAU9G;py$J@c(RWvu@biMw;ilZpF@yYtGj&rGhfiMw;yZap)P zxOaugzs}gbnZ(P9KTY|i#Qj$q|9!-l0vCNN-eS1Zw@UK6^WhzoznpmKRmT5&;wy;f zUTt^<@h=naCVndO?I7NFjq%?>{`JJ&IrLu<|E80Ft?}POyvNBQUQPTb#ND~^F5UR4#_pX-yzg}5e~WmYlkN4-)?i@qrwZ^LgU`BHrs6?&kF)PPF!F|C-5h`gR=g z{)xu#?C>cLACZioPP}h{;p3R^xx@qK8h$?Ui-`9;W%*uDyoh*C)bJU^%ZT@HF*z?0 zuOuF3z6*&rIGpu7DZ>b@#CxcRi)jdMBi_#Ey^eCah<9~czHT4p7UHE38h#h~ze9ZB zrhp=DzPZE6r=GZRvzK_z_l^ILl(Wb2Z#4OC9pi1{9`$)W`9CJ!(_wP_8AizbjJ0q1 zA;WXXpF=!wg2{LKGmdy)oAHOpe>U-f)rQwn{zb$~A2m5{Jz);35 zoMpuOzE1hf_shg{jyL(PUwoCgKgAB*O+3teoqhNZ;^ovUw+{B0lYgAahjG;Fhs687 zZn#-R&-(>&f2QHC|Go-b#usn3J!uBz{DJ%d*4vl(T<Oa7xy zvUcoUWcjubKZ*FjiH6T4K7n}Gdc(I7Ki|n2Z}@Q;MhFn^8)f)+GYu~x9=I`}fZNx7 zHE=n{u_WbuM6Kf=V{*P>V!Rc^bAD!Wu4KL)j-PrymHc-T?_<6BiEky|KEdR_LOa|; zymXx5BZxmuJU83$2bk|JC+Ek8-$MDX5%1j`P^6sr0pjIfH~h22KPDcgeLk7^u(8%& z{vR9v8kXmH;^BJ@-$H&r@d1uIQ&`SP#JfAKoK6ofcKoz^8z`rcco*$MKJhDni++~h zVEXCiO_k*D|FV^55&4^m_pn{gBz`k+59ea0rL?=8kCuHPBe@TR?B2JW{4=cl_p%-y zBi_Y)o!&m>`0oj*2-hyp6VIVOV|t?3>%`kR-i3+x6VE08=ZL>gynKU|$Bh>s6YuBq zy86jPgX;YH>3~Z3kaCVAUP}9eo~+mD!~>M?%9%^N{2a^oa~Z}z&EfYOemC)A;vUDH zwUobzxPQ3u|Cs#O67LylxLY5nC!S0BZk=I;lYgi2@1*?OiMO-gIXn3c;yJWG50U>7 z;^nsl6mjF)kBRsGr{T@y{{``$wT8>SbGd#)JePXz{M)yP=g=>5_3#04FT={;&w7Xw z_fwAZ-;O!O+A)Xy`rDSRH;#BW+woN5XAtkYHK53H;(5e-*}m<>F9V)2#Cg49^5;He z<#gleLWds=sD#JaFRmlrPy3m}=V~C{$8oTN`K~4&V7pfmUrRiP{`sZEyBz;FtvvrA ze!s)%Uv(4TMtoqQ@gGlo2k}z&FLWQho^^5t0~()gu=fh^q3p(f^0(8j7Losdi1%>3 zKAQEA0mG~F7uuh8;-i5}KMg!+<#c||XNkA7{H}h^Cf1QdCk_(tM=?S^*{-%30{JNYf* z|LNrX*!ca#e@5K@sNrrN@hb5?>i>N5|ABbvCgXSh%%6#e=@+@@`X}*n`hgEq&Qar} zevb9}nr0~C+T~>6(q8T7TK)eh!xDUvcsc!KXIJxx_xp@LpYksOemvxKSDJhu@p+0f zk`OeI-+iy_9nw~&;qOd?cT-MJX+R}BN;%&np1aU+xCeSYnMTfT@_Xbzo&0YQFI{EN z`v~!Oh?ie$_}7X5-SJaSDe+H;`y&BGzD)cm42VvL32AVe;>UP>Edhb&Hc`xO7@fdJ7wkDSUr@;O2LsHK>zmP`$A1S~6N_$?{FaDl} zf7s_u-+Dt8-cxV*g~ZP#p3C-~LwuU!C*Dnb4)7eDXHPvBzkvK+Yd|?);<~}L zz>kA{^YgseEtFHM{EQ?7H>SZiP=27vo_7<|JV3m!#_;{bw-N6N1{Ar2_)f)-{O-Xs zijyfJ_zmUsF9;}#o}<_AiT7O{(73D5_lb8^8t(kDe-iIrZsnY(sqjrDKkYN^$w=ZS z5ie)Hi-@19I3o$cC5mI6xzXfzk~WX{0Q0?q_)_Af?59n{8x&_GA!tv7Z&DoRhOP@J zcZL4P@2o1$NJ8+0;;>icR?Z)g_PpW=jJ*AA8vK35F|N^Wmy!RIH2lY(YW3{3S-#GH z_B;H2!!MznNyK|90*bhH{1Wk;I>T?tumm%R4_syV7=yiqiZhZBRFU6(=kpcP!fE(# zNrT@(IpMN^N;s2p?oGr0DEWJr8vhyO|FOeqSDnB20`bzi>B`wi2jUIl?z^R~9S-j9^`y%n) zj{}N);4{K+fy=n>z9W=H{y!@}BMCtk43X$_?y`WQSCMvt;t7nrJ)8Ukv}5-Y&ricY zCk?)oa{6euPo$h>#Ji{`7{2vtA>LjQ(D)Y(_SzlJ^5}FPv@YVgl;2MN`xR#-A^1TW z{5i@Aa2#LEG<%49v;#L2-=9X#A@b*NK6pF%M`GZR`Y*3E{nzEA!h+Cyi@JSdFL$LTL!N;%oY%L68#uy;K1 z_7&DHFOx7%amN)8&rgHTOoJ~;gD+Pc{?)>O3SZ4ER;A(JKz={RulvYIez-3`IPg#;*2B&zaxJ;^?yETe#?%&VQxB|4KPIw1=*r z9wP3(i|@v-%(JY&w9_AWk@a0p%P<{@uje zS=_&WoN)@K;;Wa7QGCZ~gG#uG2U z!uS^upXB(7e@Ogd;$hltH!jb1ILC2kx35&3i4%h5Y4CQ+32=O@XPP^S_tO51ApT$) zIXlSTwJe~V2gv_(;-%LaK8N^j#gF`c=5NT~d#&+*mHdAo-bZ^rk@fr+;yqQy{|)kg zs5m1D!O>VamGSy4C6|Jj0eAPYN5Q>DVCr!Oz%K4rUg7wv_BsRsf zFUeQ8E??f}@|k&gp=MLGaQeKNK^K#3+-7)Z+nBy#ls|S5!2#hD^#uUQ2yrZ9@o| zNu|dk9&!pb1IJhRwG8LydQ}ZgEg^h>zlq3Hsf%g>TJ%m!=rx2YR)i{1ie;XXA{EdI zsng){ibz!*pDKR%ode;^SDKr~DTOh!qNHdzjwWzk0SEIGoQh%ed7U3x)@-qw#trd{o5L_N=X{o3U zdDWsU4c_vW+PaFy>IUd*Lxpi#pDOVhS|Uwh4~1=v1l^B0gj-wc8tNNEsOE4Jlt(ov z7femHs+*8n*V?!Y(oxS+w(6#ZGfPXn@bZd!l%XPAk3wjJOs=S|Mk55Z6t&GwD^cZW z{ATD5dXK9BXjd>v^Un8Jlu1)^(YOuOp~}`;$gB-T&<(W=%k)1~v%ayW$y7|9)kIE3 z607J!1Xj0tCv__~QnwPaZsj&!hpK6)#o8)l*&IRzwk@w{UWS~}Wj(oFZb4-T4`0)G zBWwh!2)cyQg)ANkSG2Z-yjcZh^H4ib8?Axn*2apO&`NZTiUzbDe%qosw7h9WNV~3A z-%^DR(hRF+y~>L;qr0G zZ7ujo40I0>G%3$(SqXmCdF|60HLxWTLI=_QueUJ4^7yC`(GIjb8W>i+K2qm3wxTq+ zan0G#R2!T;DeuCmXojY670e|v6-7h2aib~_)E@(>2|{6;!l6bO?GXBx=!RMn88OgQ zNF(}%L{(@9>49p78}M5u4I)bPE!@;nuex8=gkMBKp~PZ0BGVNpE-XN`32sQN$A>k}i zO;*#U^=!RV6jBS;vaBBUX}@S9`Prz0UvA;}gH8*Bj|^ZoLe1qH*`|s{#B~brsECEDWO6 zYHHB*$gmn_OB6xsO>3Z9TBb1+st#&zKyzTUQFRK{vJ0}Cz+Npw6GNqCOjNamHMhpT z0FATidYB4}=9?JlJyK3o&Ri|KSB;L0($MFohwy@rO+ zDiqR2L-7aBw_MIQ>pNNGF9}APmW3MeNTF5M^er$D=!jKftx@Jm7IAjY-ZEy{ikYsxYR8rp8)Pb!~6t<26*)N37KVyP|z>TO*^bV{hkTk*cP4OaVk}4<=Oa}ZoC{m+J zig@Fm2Oo&pg(4t_Wak}5D;fqtO|#Iqu$-ibp&%$8Wj@j@f6?uvA)NS)NTBoQqS zRf@V=anuv%eO*)2GEe^1c*XPQ&z(E-Dj^_wj0yMZ<`}H}+Jp5mgqhD%uX!_t;47oJJ1@X%?PV2%)yk7~D98(fJY9k!*3H<%oRn?u@A7y)It5`ERdTA1vn zCRhu{uPNBr6eHBwof;sqisJIX7Kz8AH|l31NlgRX3V4bZ0tl;LAU967mB@JlrZk`{ zpA<$!Vc=*|C0DudFBGd04OmgxTI0#&jrDQilzfd&nsVWk3o$yZic~pIS4vi0Ut1r6 zBETL^Ms*0}WTTias(l$*MwW-QQlv22G)Tg#lp?l9!ma4%O>ld7;|dlt4N}I?vZMk| zzQ`32T~6D`tI_ttYzYp!co*V~p;yXiCm;++wcS)>=urgT80KeotFs=xg};Rfklu!y zR@zOZqOs2I;P>$kt^n^qCGiGyK}`uZyJ?2GZd#7=Gjod@4Q1m^#VWf&iR`8ozY3>< zVr4;ghQO*YSw$?DiWpUET~k(t>M^~MCr8VodF2lN8HNnKRUeKL;S3oWoO-8K+0g_>pEQN_^lftT3Y=wrY3(5dsW0xp_ zjA0ULUx70KhSqRc+ydNj+QoaB{~~$QN>EWTRdwjZFtB!C3466H6fvY$$({vj!zHD9 zWauX-fYhi!m=lB5i#cb4iD#xnOpM|1gxgkPst{_du15nmRz&J$_M;IzE;QNJEOY`i zMNBBoFYc-_xYReas4RI*o&8D<9J%FIhj1-4gqj1Dr+p;Y)QBlqIMUh-uK|4qGg6H} zoX&Cd2`#}?vjP`tMwmTlH^JhBJ|LX-SOr+EI9Tbm@{mAGwJO8~M<*3mUtMwx=M89u z8(Qm84BVpLTE!D@kiIV_u>})0m=8P%yjvL}4S>H|hXE8LL{qakwO&EV>=}zBoiMq~ zlu}z2SuVP!Nz@Xl9L+*xD=q~RbCuu_O^)YX(pnLZ6eQd>H^HNGMHIIn|3WXk%#Fki z?nWF{DQrcZ*h~!Ki=}Isn}FE-pfo@YYKe1-#n9oFmIziTgn2$}WMpy;)V#H#zy`L; zist5eREj`zgSAcQQWXuDT`PypP9+mK#oFrtFNUWKF*ZesO(@YN!Im~G zFL0KlVk8r5Ayhmj7;sWU)wZfCDT=fn)%DR5l*Q_`Aeg8>GiAyF<6xo|1@)&*kzT7$ z6>u&%oPvntML}5@)!!6FtUjnSebvQT>dMEQ=Q53|ccEmI)2YY2pe%lglOhtW8k(Bn ziCbOF4K`vJ1I4;R%#SaYtg&b#q**~s!!0kam)qKPOkQPuqe+9B%JLkXLC`QKl?7IH zWlfCDdt#+tjJcCegur|SY^hp2+&hhyL}(82K*e=ItSIK2>M*4U%2^P+mRtEPEUy|NZXMP)3eB?YkM z4Ojq`w9?&d`BG);6Prt}aa0A&V{5Z4OR%%ZvYizK&C8X4Q5)&Pv9?DR_C$r+H)2`a zBFZu^Sa{Xt)91}D5J5{~o%t&F-UTT7TXS1X>&sM^mRGj1L5npzOYN#mv;*r>s1++7 z=HE4PHxG@}R9UZ<$nu{)Lo=SKLO6{}(kPS{ZZOgoNgpjq(0#G|>YIQlx~c}j^1~DB zyabf1b>7kfhb693Y)l!v&|NV5r-sPz6P#5tf5!BZ;QXSZMKjBSWz%Pr%%m}qKBS$C z>qC=S{e>LYVpUrx>kH^jG4pBV7jM93k|@{wpsWSi)D}@4fw5Ypi>tz3Adkx`z9Q(1 zh1pE0W?AwA+Y(`m>-~H&a7YECt%Y7J%b$2vHlMvkEUvDCQG?J~;nh?Ht6Ex>6LB-U zktTI#;a^k*0<+)+6=11(isUFWFHE_>*@_9k$~blMqzlB6go~bxAx(;HR1L!05Yf{k zd9f~_olG(-(biMPOCl?sWl%>45=6G>zPyr97%0#eAe@c8RujjDt zf#M#Ld7xnZs0#g7{1ypJy?ptf>DP|TAY5x$U|?rl^hN0m6mW zNg^6(EHgqeAPKJPOof-68BwsxjtFDL9ZF4@e!4PFGB48Lw=+EitzF&hYsd^vR|=EQ zsYA@D=-RAy^CxXU=L#~%^M=8~q@)N;ADwyKR*}MDk*kKm?gD*k*FbrjG>5lA&?^7J zU6#P%Z0VR4XrbgO6W4eqEN(F}tg8<%Vf>afqus zCmCF?lDt_(vw2{{)X4LLILY0a`*G{bn6uxz;1HZvKAwWfQsY#Kr9b~BbdfL;d#kY^ z{QO9|vvODku^delvNIyT%P8^IL0Fa5hY_DE6QZJ6(mv7AWnMKL8VAf0S-jS3N_y5y z;IwF$b^ua{w53XY)9uVR4!bM;W_OLEWvc{Pm2T?5q-atvF#6I%rvvbm2I429{Vfv` zF2Y!qcS~57?}+58icpd%^E7m#fK)t)>0Ng|NkCG2o4%hJZ`bNV8)i5Dc>l%bw)1*~ zX|9uWx0fQ$r;RnrziM@0(<|E*odDR0mBl{XbbqpOxbGXy`r z4zW?}34L86Q;D~F!N6Lzl?Pq?-Y3eJ5GHoAoiMT)fTNkBh4Jb?i4ZxFC@jvd0?@Mw*} ziMMUodU{fgYdC)-^x&3{GOlD`N{lirOB+tU&*bK3fr;Y1EV2N>I#QfGi;43@H!;nP z!9K2y#=N1xZ_R8yIU5;tya<>nvU%2U;WsCmzkZ~DJVia;|Ij=DoF#@HBgOTgk=W5L z@D!$fWN~0xOLw^fd|cqyyn)$|p~$Dy@R$2`{dO9?470Aw59XVW0W`OkiR* H;X?O6Za;ik literal 0 HcmV?d00001 diff --git a/de.peeeq.wurstscript/src/test/resources/lua53.dll b/de.peeeq.wurstscript/src/test/resources/lua53.dll new file mode 100644 index 0000000000000000000000000000000000000000..eaf52777a03bd74d322fa13399e88fbc24143f8d GIT binary patch literal 606869 zcmeFadwf*Y)%ZP=3rs@f3^$2aMjJI$#KcRR29dyTzBiOw?zYAyCJYVc5C3qTLYm>7X-d>+x0ih zJm#3f5*KuRjmLBSU6VbFF2D3D&!5M74*NZxKF{faaXC51d6GFE&%%TdK(Zg%H$AzY7mwkoH`g;+ zss!>pNg+&qt|xSw)N=oo<$0E6I?cQr@fq;vc}hn-XTDB;BiFNE;QfbxGov@Gj#6ek z%Q&Qe89U<``EQA*e#y-1uZs!+_Dewzb!6DvA(dF`9{xy4+ zC1>8?z*97b_MY(++%dYo>i0&co|+Tp#xs$6ZJ()^oLPO@LV>+l{s>pdP=9cAyzlwwJF+YD+c{Rf%lwgXWWN9Zpa0)d zV1W^TC$PoC@VX>==wG~&+% zuIk!MTaWWqo959k*B4%X#UcS)+PXJvzEEdAAG^cKzyH5-J*`RYo@vyM+g`&u=^Wsd z51ILQQ1Xm|VVyPi&$*uT*ey2ThyG%i1AT_}Kj#{)$=ExFb>RdWSYzV@Iart$($vai%t{MG-1K=vBqBzu#b3d8Y~U()XrP#$qk=l@A%# zS%29_r&G0Q&Cu zDzTSMWL8>}hWUJSPQ*Iv6!pH&V=tEX<~Ae#PoGiw!Kz7yb*$04H~OBu7~0FLmG2s6 z%Kqu*98b8rhW>7)R6yk2%Cg zw@}VwkA;&`?|wQo^006 z&3$#|bLP~TZspJWu`p8f3j1r5ay)frZ#m^D`?OPXJm$9eN4e3e*4LsJnSI@3L2*d2 zrDBRMcYf_NX_lxSqNVvNEt$tv9d_*}Lql-cIgRb*{prq3nf+`)b)hPn+w6dZ z)R+E&&?j5>KI*n6&26!h;vacqo3oguKOP!N-IAr36wb5zk5PcP3bh3NMz^unT1Cxl z+e@APogtnx^5Fr2dW=(7v6MgwP{Z7o>W7vvkHi1Sp#c~E0ZJkY-Sp@2L<^ydk@^nx z+9PJDq{3WSa-LyEN=of@AZBkqHV3}ry(RB0-mCi8N&U+W^Uaa+CC{QljQEAke_|@5 zWk%wdU+&8B3{ClDH=NH@ooythJi;4v%g~eo_hkXq>S-|4!?p8aQ7dZ2Z0)A2^bUZdkso{{S}X3h5-W{;s&=dV94*VDCO@W7V7p>>rT z2KVzBy#(RgBHyO(iLdq@8=V=kJi4|iSXkMy{?yH{NI{RW(TFE=jE>&Ch&S0~G<3>W zBUkr#wL`n<0yRrdOE0E!FvCyQ#MG6SVqIm*9o1K6m@h}nPQ%<~r&BV;-Q~%6ldmRP zV_5URwo==4g)d@N`{O%-k7~aa9EkU7 z(5MU@*JW7a4Rg@$>qF_(`w;cV3~PZuVga(=XC$ip5wkF2Ugk5*qg%E+_yvdYn>PwS z{d4e37=8a4!CMMJFn+Ti26!$w0=I=(+HZR z^R2XESaC*&QF)1P#orC{5?{6w%sS-=Y9W#c0pC1ezcA0^F+0nXt$Vfmld&gcK#>N@ z(tmXHxly?%I-k+`!wvM?n-`wmQPY}?m|=g@1vQDqsK_dRO?fih@p@i*9P6p78c+H! zwHA7Pms&+$m=B5=eUN0Ju5!O&R{3ME{ws?wLoPO~4M~wG^E>j<)yTi>dT6xnh!!D4 zRBG;#Ql!nlBS#p#nMY43apxJen#b(XHw?&^RTG#ibn$$D_)NdiF_`D=`4GGC2MXW{D%qZiDMm0ujj_g~s=1>v|2 zvK{_^>Dq0J{n~^p`*dxB;g3{yEbmo=K>jNCtvpruiTY^Elo}l0ucZ1{`m_mQ(BHZI zkWtyS@?>7a5NWC;{d~WQDvPNCw^r__%4mKv%uYcq{U6os3uN+uxIlv+~OVxt{1aE9i4nPifa? zFdj<(dlWyRAE_o&%cNO(J&N6i>8;?+0UrIv2anb6?}!gJA{qtTwM|OaKCk{%>Z7bD zQ7=;~qhEnnVSji8{LBs|oAGb@a#_$43t7E}azq(DS24o=Q~h^S-x)^S&K1k;!7N-= z{!1wr{N^b9a{dqaF2M7&Z~@z2(ky z97a{PI|^o4KEzNiOH}#}w*fTIRB>3%ttL!cw!0&2>-#+v%_)XB`N4(Lq`I{3xwg%0h zEA%kxv+}D(ATa16a8>FgpVxELtGQ#mp5ggEs_+xmuTlC(;U}sYh^$%mkABP$FcRS0 zYBdh&e1yC!`b5A#7yRLg+~}!lu9<$@@AYDGHEQoAW5u{B(Ht|^A;kNd-*F1kHeW*} zrRm-b|779){zHeyqGu_1=v)E$4L~~T+t6xg=zyIxOkZS2S#9YzU41U{@^xUrKP<$B z7+KLGRRh%{LS=c%_u?Tu(CI!4HAaljS&vz)UNT>iVV)?U3}5`97C({~4abktAD0Se+HxIj2}5RdLp*d zk;d3q!@>;>I-s-ssfM8X%G$f7_A4K__-gUNoal*y?O3;8XUJmEy82E?aCH0c(Y|~y z+-Agbp_y2h+4?fyt1|GR$LXtPV8MQn#BObv{2jx)XXxNCPUurb;^F?F@9QJyUnIUe zNZdmtIZ0O-oky3ykM5_A_}oTZ_m5f+)xv8E2nmp8iihRVSug9vYupv9#aej_OzlN~ zr>?n8B+xL=(Kglk;@g9$T2qXvYDlbP(PgCr_Sie9o)GR5H?_IfLY z(fUZyvjUS%>9Ch$(}pL2D77;I^jra%ls_9XJ45t7!(MO|r45mi84*RFWyN6=YxE!n z;0|2^BFfO6=TGNJd7ZVez!z@lsk4d-ut;(;HNY_2hIUJEBo6Y3swvKR+Z~O$;>EL#D_}M_t|H@k#VA) zR^nhSMg&kjUm2i@Vb1Myj2~x0gHYg|3f6z&pHllaP!LBMmhE(mu8P!0yc>aU)*poL zy6uZb;au&=AI{zd;tMi;N`_@=7he$cGj8Cvk7N`_J9A23I<8>sP-Ya53()@?SJ2V# z?tDPchx^1pSb=OJu8aEYiOh#J)BLg58|*RB*mnf1VtFE#XCwg$Xz$SbTTVjGa9Iv@xN_}dwC7Qz1vUS@8X zf3oZCF7xFOGqSc8wAxc|^}JvArG=rvEgGe?=b!gniF_Z+MMjO_eq3T-BSH(Jeg>A&Fuao$2sM4$L9Q zxk0+Dsnjm(i>$vyum0lN2C%ohD@{L(zNEWSaW0&bVN81T~VF+ZRbx^-9F!gh81C zC!k=AlGR>&JzY9>R)@@)3M$OZ1Qkvj4k{ck8U!(_u)n&@on8qlh`eM13vN&$eZN9? zm_J6z_r33aR=)qpFg_#SK?W%DeGLtU$M}DeZ)M6mah}tT43AocQ8M!2hI$@gVRc51 zeE(mCQyOj?G4jl)|5G?+c>Gy;w!iz13|`i1gadMJ!)*@OGYGvq8ipyeE*r=MXRI;X zf`yb+`}>20dL#zz_@;1MU%y_E8=GR#UM>D{WktC5B{7rDw+c+L4n|c_>yM)k6nRDC zev%fXh^aVQ_kcnU%u;@Px!5!r+KlX9?~_QA^p6|w1d)_ZaMm~auTcG?14dUE(Z8#Y z*3+l5dg{e=wwWkE(SM@7X@Q68f^=vSx;ikV#lX9z)p%wuDUWmM<>SUkO7c1_Tt z=r!|6rPtEW5A&M?uTAi;dS$(D#oLC&Egg2xtQS&lqJY&We!Nj;@2_I; zTO4`N7db1GQJ#!gPnK+?GaPdeGhYFnXiNu*?x+pMMg0ZT+zAL>SDaQ{*<)*h4a&Y@Hy?vxf3-m$ZYZqRFLY5pxwo+#?ZI!@RV@u&gI2kt9v@!nms`uQg?1x>;7#;dJ)Tt+GIqgZ=Dp*?* zsB6U>+l7cqv`-7|Cp3;bZJ%?h7j5rg7B-!?hwWP!D%&(&vGKUeFxTq7=Jkc1SRobS z&(%8t?AqdCtMtSJg3uKKiL7H)85V){`M!SLhf`4y-C+=HH!3?~N%6D&H!+W!Mz4Re zo)E}(A& zk2S%v4@p3RZh!kcl_1O-}|=&5U9styp)XCAwa+%?6rk#dIMF*yY53-TO80Nj(V&v8U`+XOXMm@MG4VYj|_yaw#EZyZ+C@YlJ^sU5-L(9}(snp?`=P zA>vJ^+82r)khM9(py~`G)dFvc{nENO_IGwS{D|&J|C8e(Y-Jy}Tc|jO2usF`uZ2%X zdhzR@a-g6Ov-tl04F-dvB48&|(IOtkh!9*>{t0T0Q*NEI*@?i&*1_ogu!t$6 z{TCGYcNJR17+@8%3n-^ z@4YxaFebVnK5%+0h3>~dH;Bac9fSXISMshU}afBoxvLPxnC%&W^a7PCueg*pScAH?7L#5hM^ zCW~V~Pd_taJxk>O&u?=)>Gq7iSN@{HUw>UFK8(NCvL1@a7;cg=+>jZ=)nRL{UyrA} zbqza+)8`m?vtSrx>#KT5nu0LG4J@)-<=Y!X0I&Ve)pzlE5khVr2qiFdJNeM0p_Q)Lml;HKGL&Gu0 zG0{>2ZBd^>9w`bX<_)>T5t>ADaXGg$nH0gBZs}Yrv_0Uw9KlZ+{b^lYvJB-}*U)1> zc2Km@VYT(L)Bd46S*2ksH=af)4;u}y%}vbiVGSs@cdMZ+{A<84uRscz8QD3h@_CKQ z?a|Y_tBO&?5L%TfawKbh! z)qfnZraU<&m-Tgz9zS?-$lRef&o1<=ZotMfJKVSBNy7MFi01sO%k1f}r?P!F1TxW6 z^vY!PM7^VT%!Wf3Cx?cVy{2#IOv%?;L*3gg_CLfB9t4&;8 z?A7BR4aIgk)8hDJQx4>lf5Tp9Gf+H_trs(x}J(-WHmEm{fp>w?plHiU>1Cq974pG4jwYu?;kDCv37acDT-}^VC_F`;3ma z@(A)(5ag@y#cOAH_5K>fYf67L+vi%HRpU_`ep)L#K&+0v5EKjC$$rwW(Iu9jwcpAR zv%fq}N=Kr4GTuvoNy^o?_@!GJBx=Eaki7z2v$B+~X0Sp=8LE6sOH7bw%uMV{jLR~s z%BP=O<9qaCtyR|3@*QL}>E_4wv3;`AX)TiElllg2vigOsSV>L!`4W^=qvffnt?5`xN1pPp&&_3{haC+>$?sWxlI1l!J8Txwq$4M6#vPZ8_XZ1k zOm7#CLtgst3cjpI;D`0Rm-wvyVNVScn<#3>F7FteX7+^2w@>f6PK}X1B6=LNHTkKm-3H>(#`O`2rSTcg6^5?8yl{7QBthCjb&xOq0M&fpV z?9}vaj{RX+<7&)IR8mig zF^RdwH8kHQhtPiZ4JCFDU|lEEXDI$ub+ne3Xe}F~;{*{ID7l?1gPB(<7Ok<jY&Z<}FNIc@w<1wq)_7=uK)DwH_!*?ORh++xK>Cr3?C)*`fVV zz_ui{)5y)CcLQ`+?a(Mkv{i)4XeBZb2Ptd6#)Ord)Q-7qUm?`z$W5xi3 zDRe>nOh9Pw?I=&mnAC{gH?%KCN`myi-5HjXlh|(M^gri~7Dz%&GcfQo=U-6Sv-Z8_ z8)tiYC-I4B9V_M77^zsOKFg1It^H>IHgC+(H%lI@D-oN*7wDCH*5^q>{Fm4lT}Y=Y zNLl^%uPy<`@)NzZHMx4ObY6sB%lap7t9KmOTN&n%07y@8@zW*KrdRrvPM+5`>7d*6 z!}K3nLfH$`&7@mwO|0x$KLI?omTQGrOZmfiq}3lonqZrS6sp|5?g#1LDt;hd)Sw4u z=_O4kMy!H5E6ifLaKp#CmBTtJ)&%J1MURsWrjA2nuoI?Y6~uSuvH5ZeIfm`jGP`OM zC+6rKsWBbtsWsZB9UX`*kx%?0kh^VuiQz{ibKrzjx`efOSBOi)bWdP1MB_2pU#F z#JaM=sUL3W)Ge~LMi>^Fo(ScLE{o>tW@q}ZMq+`##_Xsud#*~=kx3GwyX<=C#LukT zOShifJhZ-BS2~IQ>~m3nvb`|FiR>V6Gwj=-F-$T8J(P)W36bJSZ+z$JF0E37bTK^N z=s{C28Md!^W@3!Q{8C=0P6ps-{F@5ugs{?%Rr=CVq4vK?C&5`HP(V98063vXB2m0a z?MECk>!Cu%p^{guJh(-uP6`R(Zq`F=sBofagC+9l!Tzf0_ibxFgMJ8CS zrV6Z%-th&Up@N-oL~1glRQga>GRoZ7pMd5lf6d)r5i((c5(U7r!klk9Bfc}I^2N=zC52y5$(2DP@fh&sU1l6+VHfYi<^h^f+Rw~1P3V@S%0eQX0%)W4ftE@J$gY;$P}eH8%V-2GLZ#6 zO65|JdRjE`NdMfy=PbcT*>eg$K|YHUz(Vku4L&7l=mZc?9D->N*>-rr=~=S4)>2e=F9N95|<3akBmq-fA?q5vkXN;qM|l?C zbp>1VVj4ZeGZpox0gcltMcbj1Za$A$YJS3V$D3o!w>Rv}4GPbc*n|I;(rr>IZ#~Td zP6`gHg6Ak;MIy=5cHbWdIO*QHnWfmK8BpQMGWqc4Q+9flX~wg+01HReB}?I}c&jtLGX7WoBa zI|@40rzH9)ehi4jy=0i|IdsJbilWEG2gb(8bGiaOci7%2j1h9?$JHl}6t^pnDn58Z zbg|MHQrVIfm<*%YDlC6k3=MlMhH(7ivC-dHSNPEOaNLHSuZyh!DGu9@F;YI23|@0> zYA#p~^AFs5V?Yct;a6Ma7_L>3i?q^jYJD$t=G}f4{)=BUmc(=OfI`TY^$KjN!G=_k z15RFzL}pT5;DkIw8^(CReiHUdZy(NY5b?Bc6L_=6Mvqrs?P2>~2nvIOsRS;a^|N|% zWwk$=V#F7S=n#HcOB7BGYzbZPD!qF|JSu)cL3CXD`&oTuRZXrWqx)TSy8}->M}4Uk z^aXyYw3r*i^ibn99Q9%ErcQj;m{rGHlh7UC`H^TzcQ+toFSw`(D}c5E+9M@0BaGs1 z1mq8~0~RM&HV@m+u=$OiyihcCcWxek*Z-#Z1=%zZNY46F>lY{#iE6JGS+9}r0x|tR z?L3!Z?26Y`A)iW0qE7pK1RXI=F%eEgX9z8*fCQb~8<26(1`4AlZ|IIc05R4LG9K zfC8GGL^IbHcE%G<)cfr3(I&M77HVwIj8942?uhxky_02vo~&zp(ME04oZ0U2q$7^5 z!UKSac1-O6u|ImmzJQLI1|dKFiZ~Z^#dj4IylOx69+1{~#;Ws5NEoDPHxdNL%whD4 zK*b%B?csa++oRWmQTpJwl3Y7RtOz4MkhdbAvxKp0bmi~?W3tHoTIL;%jhe)MTu{m@ zQRR)ib(OC(5!v~T4~&bQU^zOY{ar`DvUX+lsd9Bi)z}XsxU7rm2S%+|qwv#Q{Bom< zfg5cg2o=4=S+O0~wZG~B0b8ZPUt+`#wv$I-yP3D{8sTC)jE^(g^fMX$l=UF}#BjM| zZ;3s-udRwbvQGO4O6e6eBKO_7a(bElxp>moRxSCwm`kJS?eaqfiMKGkoPuIKdNI0s z`J(t>ZtNnZevZVq9cMqnNYJHP%kiiIwXh#4=%c&GA)=UK)>xzAihyI9DfzlZ$(M?9 zj_|J&mlYWaPWdE`d3Yn%c^xW*jf#z+=G2rCY(|$mCe^j5#RtDP%A~@3*IG6)EO*5^ zVjmFE7tVE%RV&uz@TE8|>>EGl=&$Zv2?(b*W#)%zmAdGp8Fm195O*~7BI?Wam)&wZ zkFr#Qh~((`5dVZkZB7KNx}L$m_#lHHu}9nveS}u2s3;Na*Ua;CNb$($pRo$db2*1o zh<%A`Q%>ptN0-E7RQV6$<4Akwus}uXI@a2D?6J&wV4})DQ+Wd5BT+PXqnnL;?e6;+ zF}SrJg`1<#;}v-|))F835I#{elCsAt3yLu1HfySps786ufk-Nr9k7pw1>&FjwU!bZ zXm`%yZ~W7V+TG{yC9z1;JN|)l`^I>3lS2jXhYAi!c=}7sgna%DDt3<@2RK@-5XOlgImy{i zbV>AY7r$U``-meHY&Ubd$I2oJX`oE%7gTf%$&`I5 zvh&&Tq?04;8)aXH88s{H!nTjQ-1veBrTNO%X|3t`Awpyw1Jkh2K72c5ZWrfnFfTN{ zlfc$c;wxSirqn{6cn^m#6wlo75%G9W(-{Swgd^hJUi*R+3PYk)Dtoj=Gs^6IxgeT>$*U61(`Bz zLwbzqeX7Yo9*26?&ToCKsSa^EbU)kBPm!?l;cG%f$uW^*ue1rc2O&e#la*cTPGN^L z!X5`F4%u)#E^K;f{5u+F`y~NqHJU~71JmVC-!r^kuouGQgxNDAlVE!!mtD*0J0m8H zRu!4N?hS3@+ML38wrC$j4&w;tsQ7XPW9ch zi8-rd&$i-e5E-f|=f9-FhfNp^x%+D5#1o11hb|^esV6S`m@s90@HFl2cVrG4Cf{dx zUnNvP{I|nfxx1;p2B-4gCnyV<&+Eiavi4=Da@+dH*+S7;s_D{bc(KOHvxp|Tq0%Dl z?lXDMZcn&j;RBwC_wAuWmAltHAuz-N@#qPIKul_URpNe*K7Bf*SN7=Ik2)$}*0moe zYg#(A7824udgUux;$QN`+^(Cir0x>Mt;SQid+qOOKQ-jtQMr5lqk`u>ixu%5`%5|k zN9~@U(OMBBbp(mZ;?EH;(OonqqC5sKKjO;YdzW?hN+V?uN?{-$~iH;SG&MUY`nQpRgq;@75a_T_`W%MD)j0d{;Ht{CGM;Ktg z1MnJJrwLqjQ)f)ads8{J-BbC>y5E@pOzmd1a_A-P83Q5z8Y^VwNmW=v#3!6fjKZ4h z9;MP+S1^3pvnPcC)&jc^zQeTyLKzxOMT;169M>5=wqF%T%Jvd#`W>~%D&vHvwAmtU zrb`=ksK6EH+}<*S@pJC}6$UkuP;#S*I*d=dTczD$Dk%F(|1c>^lf{q2cZ^#aHgM*b z^XIvG8T;IF;t~s0&bsB73j*q78^%_<{WuG=Q*$7G-QUImJ0V75$sxmRFq&`KCJX%i8Y`L{T;0(wAIsbgT^vZ$Ic*l}-LHun|#eR|iNs@V= zGzEE024VEyVKcZ|1?N5!{|q*NlXKtZF3t&SEk6Xj3~CX3x~qi-6>N0iU&!PtuiL&6 z>qs~Ry-ca(crl5v00vE`Kf;L?t_EOJc!9rpO_7&F2XPMWXU8MeIZ{KOVyu_5=zWY| z++Y?gd(U)k2BJxfRnAQx{#3dW126*wPL;D<|4{GwmQp*7Bi3`_$IN)LC`WJ14n{ns zM=?s=0bo1JAR?BNZ7%1g$-9&k%*-J2HE^b~ia|gou+w zw(l~$eM7xsZp4ggfLY!|Y36}Rq8glEzk{<+Id>cBgE6?8eTc?Lv%T8STcX5E2 z(#698PqJNx^_@cQZs0OWg>7@rb8x(a7lNZhlHjhCSUJ01Ns(@|o|UEhY(ma&w?an7R^ zTSloBoDtS)ddy2_kaU+gW+@fSIc4a{2B~UZ5kUKO;65<3FokrgZ=MZ>?5SUu@i3EG z>mF9V)LE+YW{QMAv=&*Cb?vFzD)vFN*2j4LXh3Tf{|DCaYfsfz^>=b>(j;EQ59MjC zuTVo&Z-$TRQMY4_lUsEnz-#SxJ{1$(NKHKJ;hu-e;ZkzKZ{y#r6j6$i?$R9?Zuw?W&O^N(v@|D^= z`rQHdvfia;Q`1@R6Zq*zLkY{Ch*d~k+q~kECX2r?3-j`P0nx9 zMeBZ9O%wSqNfYUplr9B%xc?>6|DX8d^iSn2RPLTLL!`2MPMLhLPW{a3G(hfwb$047%Ti{&aO5ujytf8kPps~%GuI+-qES+tsmA>Pse7Ekvi3KAf!tQT_SiS{g=&h)mr+c z&9dE??p7DNrIVZG6l;3RW-;p0zuP=nJ|5pJm-(fC#@ISdhqkFjfWky@?vr`0SsgHz z4Fk686IYi62@@7O%qxlQL{bjemtD^?%S_CMTCXY+k-M)F^AFpN*9o%kG$Yhq+t3jg z^G8Q@0x8`i0gY@tP1#R|wLxrmF==p_k8vZ62kiBtZ{>tru3q7U%`yvzdm+w=keuq!qZ(7#lmS^o~$ zA1j?SWs`by#61!v>c!3Xcj3n$OTvJdatf447smSX~%8>EIP$4@JkjwT+D-irk|?J1&T`R3MSJmgY6aFR2PTu~8M&;y?no=a^&ciBxH9cQD;5Axt6P z)94L`6gyVI6}!Z&E{*;wGv;RnY-%b!W%8Y!_&2vi5WgW-9K8+$Ds};Lvf%CEqae5Z^85 zQDf%&6&3BWSGc6cT2b7#fO|3S5ymm%-(2j8mI&%x@q&TNC$z5PJ~wN*SkByEu}#gq=s(7a}@$gp@>> z3EgJzNC-Qi;8f&V?7-B@<0TbQC1Qf$o|vATn&OZbg>vEXYscPa8n?2f74+yA6vt7EgYWj=~&q@F4 z{MM-ahJewqWwW3}dYsX~ZrV#>^Btq(&AhOf(65HgPs8RX;f{ag)iHIaUc&lY`4(A~ z73)g%5C1YZv9Qcnors*~F}%Aa-<*{6isEizZ8)+MX4(@wjAAZ*B4qwT^}4Vl@GDA@cB0Iy?M(E z{PjdvtEG>ARNkAlpv(yZH=%4vQpdGZ(IDplYk2w##`N9BhQUkWVq(+z;seT(ACS3W zJ9wKq3+j=jCXahxt?CNrjo0vYN4&iTnJ%m&{>FG?)kg@!Lm=R|e_icc#X^-C+$Re+ zBTGLtN*`zRkrSsev}eB(L`*PLAH`4Se4gjg9L_Qb3^rp}G|(}NN*lTJmYpTDHV~cH z$c>#^%O9x0x1s35koN4pn#!Hpz3=m?hN~#2>xsFT!pJwb+i_CNDk4(7(8Kn8Q4Ys9 zavb-XGoo)wh+P@#hL>~_wIDg0lydy5ye2UpFkx;|lheGJ`Q_qQZ2GG`5TFQy=V}LB zq_QXWCMTfeqQHZBa}y^Pj)F(v#-I8!YP7Lk&a-Ku{2TUi;i%#CY#Bxhrk%yCLIf|=@YrU)E zM1~u7)J#YEwuiktRcKYtkdUeCo12JChZY1-`F?}I zuwIS$j-|mJI?wc^(w1*Y$8dFSLe;<9taG>1MJhstrEI0tB6R%}$hy!@@qO)M;P z>XHS*<>n&aFy5^O6p2`;rw)VvNd1YyJC6wU5>~=$KOXumB}JI$#&lMd58)o8V<=Bz z%JKKSkxIMH{HJ!$QU)#|s&O8z^+oxvZ3>kXR(7xBE)Ykxjew8daPOC7ACH;~OE|Th z^j8k9e&`jAo@!hja1TG3ec~In#5Y=)ljNpoeENK^bk9F9B4Uppoc3 zB=Chu$R1d_ST%+?IPd7xeuaxfPkd3oBgpRgZkcb=-G=_G%tny|%(-DX7_|RP4M#UQ zre9_mroW>(>Bw1%mMZ`V<8b@nEQasGiJ<>K}z8_(Aoz5+* z>AcGBrqeh}T1be^&;EoH;;!a|Z$Wp}0F~KlBVD0m{VN=b&=TY6Ku*>Q74+#8z+Pr=2WF51TgB68XFD5Yt24czbGJ*1vT1O#@K_92s-h@GKFD_K5v_dtjSh z1f6RuB+Mbf2E!Z^`+COcIsr{rrqs|7ZX@EbF^qvGqnr-csP1egP4R`R{fbA%r??Z# zT>@_BHO9`VuJ&@|-+nF0!FZepF{(s$zUHu&`}8!Wqt;&)ugO}@yO^TJ3%jA4GNo6Y zDx)t@{luW}0ehXak3TMkZ)QL1!tI`@zwyFe&&s`yh4y{Yn=sw(|E8PoBQ8jGeNg>1 z#y6m1fj|gA^feHjXV=;pQGeuFP_q6}JsekPDQTuTf%9@sUa&jE_KjR(T_HX0k~F|> zb!H)x+A;Dz?AhpnVv*C(X-$=Jwi-i2Or|y(dWeISXJZX1xNrk7J0I}00oqQxq zk$I0aWU*5DXz>B*kqE2Savjyl3e)a+fO0uo#^%K}7~8MKCZ)K#(u2Oa3M2eAtwna1 z`>U(`(RU5&W?1D`Ws-8_>VoljM}sO?&LjvvwL$E!qa4%^kA*RZkOT3a$BJ_LcHB4sS*<{c?X;ukhqg9oAB2 zl6{iOdgo%9FLM_L9D+GMXcrerQx=E;@{+D1oho9k2!z@m7XZA6W{)V==wE`)YYz z@4S{^LxsRpE$h5VyZ0hGq1G)@Yl%}UlE@1ZGs?BQ+`_d|xa_FHUr?A)LQrhOb3zfq zR_%_zMx+Nrs*4q7;BC5T3VC3;))H@VOiyjd+Itl}Jm zQZedP=UTNVwk<3<10}u`d(De)IzwFcGmHdV=!68;!{TtXd$_GxC}b@V^=o-s}B^U;hRo@(=Z5>3_l&UKfAPsooRG7)Dt_QH6a$96<$j4LThQ} z0jaUK3$S@75{+!#!K4!Fyi=+<*zZ>hxgE{aVQ-E)C0grw`A(e@_9&b>vYrEnO~Jy} z9c`q^Xstm7h(oec3H^(F9I;EY^~PoDy_KhmGPUgdY?Y!+l@DmH0&NZ;Tl{&2b+N)I z!p5Ee0qclD2Uzwq)G- zp2xm}I<0D4_qI`JHThNDkk;a-T#T*@`Apn~&2l|Ev>0p8Dk(Imu^^4@_QlBI@*uvTvU`EZ5GKzaaDn zY%UNA$G34?%crp|DPc&NPhRT$q>Zq52njb+*%`ddX_DSWmG^bcKUVGSFyXN+?i9+5 z*k`)ce&*PV(uu$mZCW3@mmCBEsA_thnyFQYca~n6?j*0a7t_)mSZb!y0pM4CA}U#S z#pT?1i^yDSk~d1vYpwmf7xrMoS0E_{|2|-Zsszp)Hom2#tXy&Pd0Af0#v`m?5tvfo zu=REDSG~ju;4QmZnYzN}_4vuMT3HL=g4nJM4@ri_nNo?kGl*IXFDQaD_z{)ZZ!_3H zD#hh_QVkycuM986ZV<^6KAI6-3ZtKm#0?8umOkLK*u_V|c}Lu*%1>f%p{$pV&WTX* z46CU`STiMIZ<$|3tQkVS*ozLKW@J#amjNr?BE$=3-(AhSR155ziFZ&M%9dV4sjE9) zV>VL};q%&J;bmcI*f}*r7`-XL_h4$a6gT<#9!fnzed%g;7T96TOQG6=;?z&6= z;2)!h_Bg}OqVRK7C6a~0(wKJ?lsi=wmojt&E|xQZOkei3R3QL(b(UnZ#6Axv$;6ep zi}ilHLaKod1U=@&ZzzHye}dL8sVmS#-i0#brRE$z%H?b!vGm#Ef;&6gYlxu?q8kyf$NP-W1!-cMoCx_sOS4n?z@@eguWX)nhQ;>lt>8RwrX4`e)^ zsy3f@Yn$d480J2L3}j+|+%~TuZs*NDbrrdH$!ww{doRlfxAXtC%Z}oIw+QALE^^_qmGnwYpCpZjH=Ks`as>^v1wjGN^X@@ z;s0U%B>c@`tw>^nM0+C%)8->RF}wbU<4Io~7s^cwlfTC}-;;4hQ=GZ7H;A%zienfV z4nGRKh_zuObl@6r(zIfQ=~L@0@&-{M>JG7}x}J8Qifk@A7ymr};?kDvj?8@P93nYOY26-&od?X!HFT_4T; z-lNJ?0(?(-(z};5u67AD$o@m3zBkp*0YJjkrN-8-4@$4TxATM2@D?Z_|JFwuzVjpq zhC6JOe$x2xkczdxog*=h?}tAe2v>Hl8_RvSb=q%sMR5|=DA`r{`z>9qchNT-^LqECn(-k!&6VIwD3Ulai)7)`{*7bdd z>WH&-9Llfrs*AD2cVl?a)bH4zIsx07O1)?$HyyesL6c{vH*|hxmEP$w*ysP;332kSCrD)RDCn)=48ES?CSUeiT0% zjNV9o9w~!)fDA#JP<& ztwXWvIHxl)Y{lE9FH5AA2eG zQn*Ro6bO9*E`14bb3fqaAp>0D68kR4N>*pe=dI2Zy8Z+`*%iPO0;Eo&qw?2MFYuh{ zPhaHj;0Mq@%g{cukTlOL$cx+gvrk!7jRf7^kOO^WHE}M4;dCUojaQ$@Qp*v|P|nG6 zUf)PeuIHtnA9!S4;GX-)e49rh*>$}!#b{e$A+f
    !OW^9Z!P>nEhYguG_q`PZERPKym|GJLl;`j#Ti!4bgD zQNa9b4`3uI5Xtr9)8{(veY4gCRC}y~&u{Ou-zROCYHJS|4f9Ie5lv2Ai)ZiRz`?{s zJ&&MKp8@lRLPN%6|4!0=X_{v386Hm}@A&|PGd8Ali4nBR1UtV6-Q2XuiyMPJFJo76sRd%f9;28&F_{B>c|EDIw9Lq(*kchGcI`VFj^(l!k@ihVT z%OT#2{HmSzeZAU#$lpRj?M+gQI*^syAZYHNbb3=4nS- zWGv_=QZhu5$m%MJNo!fgx6~5;2#Wcjn5u$=_D39US97Drl=>kH2z%b8qS=$FPkACW zJN29lE;DY?Fd^%zB4V5SdLs?nMR^hT2q$J#>e>U_h>|TYPT%Cpzi5~kPQTJUD;I`P zh6F&Ow$ePLAUc{Sc6&{0f2;(ep?&ts&kR{pBXUhH&O;Ts5=fn088)E5J%tuip%=3HeExt+gpO2VCX%wbPiqnLRoM$&3wgq}VhvBmzKKwXM#&s*E3`)mkf=>&zZ8`3j=8oFKaEbsRw;7;l|q|VQb}xwJw~P zU2arL`@LTgN8?2($sI(vOiLDq%(wLT8@cfh zbJHhe=0ARDAZ-4PYcbju;K822PsnrB;I-%l>NxmqC^l{y5)bciZm{Ku{Q4Yb^mtZd zAF8~0@Ko*Yt5h8>M-IvHczdYVvBgJ)re*a;epH+yg&86-JAFfM-!yFKHK$-rS|^XN zk0dD`C)%xUf5oYgx(+sLY*%8KvRiS_XqAcx?}=ol?3^1Fpp>xVu)MI?px0ek04}u) zU3e1|Jjdt|*M&<4n7^=C77N9)*vs!{#&7a@QT^&iKXRgLWE?uHnU00`GLb}QY05xn zL<2IS#{v!_PoN4i_+B1$-u)<}Nx=6TLfqSx`v`aELxrT#>v%>1zJoBBG>DyRcs zrZi>G;fuOw4;34eVGNJgwVu)65{g>FX?hOt$Y8#tZ@yfba}vSsMsX`c%&cBwOn=|- za`6!iJ!$g-W#>trkNWkH5T;l%*tUkvzMGf8bTRpNd~Er8?HeP@Ps zYXF2G^k{Tkeb!wYP~A|wo~6%-H!Wj%-3V}LcyuFn+bK89e?^ZQ)`!KJcF4AMZSl5h zuDI&1R$%+*6y!#%hSgfD+;iSv?V!8BMYo6Pi6kC>6a+*^B)K{%EZ4)xN--We#MT@e zJDDWVpeH&tl2}@wE$yR;ltvE`AE^(U49{8`G|XVV7&phKH)r^*yQWwT&-w-?`n%DG zI5i7r^l^HY_P${B?-@H(r2~FS7EAgC4sI;fH-j%&z0bNjau!oJ!)uYmJsT<2oim3b zjJgy0*xhbe>PQUH@P%BZDLyY6si3D#FHrW~N!Fs-iK<-o7Q&t7J2(neSzDofyFl2~ zdr4{eyG#^$r=urINb?8sTwL{8*NTU5b0A_iEQ|V)#{>4p;X)oWq_=g96_j=}m`cQh ziWiFuX5A;O<-R#fy>a4Uxi{lw&RZI>9+4&y>v5^aT*StwtDwkTd^?LV2JK@WbmoXY+}J; z*fqy)mA*uKum-X}>PO5_Iiu%6jW=SkXGb;^Q6WZ@lloXGz{B=)T& zm<60cQHkF0h*$X`MnZ)zQ)|GX{N2>IfeinJi<`fBxp(DMmdGl(CwL(zX8G;VT<%V8 zt195f)jLyD=_^Bj*4O5*;VW7OM&H~r!>nITgen_P%fcHY7c2)sBqt*=Tw`L3t{$a7 zo%Om9kRPj4Lsr{EGH{divR%G8*R2i1clH}3HcK##JEF~(L098fo6co3i?w)_@zPbtF>7??*3b{Cr4uWl8lN=ka9L5A>r?Z9s8@VMnY;!pCC?WEJK`<^F}t z0wLpD<@|aUUW6zadmK7i*!ut?eRqTgkQjYxH8Q zw#7!}zSx*_UAvMGc9yzg9~g4Q7SyX`^nf78~)W1)wK-yd(dz$9&lS1rwhsVLwsbue+^!VeYo-MIN&L zSi*;F@xMjBsGoT?O})DBA>g^Ml(FiNKjoED={w z*Bd;y8_kVyzg4^9t2j$Ro(It?aPUCkz81d^LEc>n!*!J7e?M$rEgzuZ_XAuG;Cq@%uV zHH+9YFLBC*I+5(V4=Uu3FDX(qa4O zVxlPheoe8u7dx}xr}p0=CijfVl9f5>IU#yFn#?`vIiHiB9y3=31k|LA*pIho5eFY# z_WAOenDUoPw)A3k#Junxsy`A=bRBXGZklm5^M^j@G5FfT?N65>DK@W>>Q$^xVxuuDnoOyJ-VNh)qZ46s^ z$tF~$I{TKGauJ*J@+7~O!f&O8xg>EOKLK97 z#D4f0yvly!F7i`_^D3Nh%#XWh@G4yy~ur)sOL4RRm7a<3$~qy=j3P+*4Nyl-+}XF5W=Fe zB|xQ46ld2@7ayw<9wRmRtMttvf}?ruj-z<3ygxp0p_v;!ADi;3ovQKHIk^TFS|_lF#CC!BOqZT&tRG3-5)HYQ0%4 z_mU}bVZX#)^BeH_MRxr5%{-gA>6e(*E9R+LmGMr&m{Y%R+brb=&xYg<(~_7=4i0K#C$Y&e(d|)#WRka z`~Ez?KRQWGRjQ{L`{joMzazb$@jNtFbPoGfkRkK?ey;sc;mm;f7c%Czh(&rdk2z7YFRGDPYmxGmwwM&Ok2ZRr+Cj^RE;MUlIG%(HH$uSX^&CbNu!Vrt{6F94oS8`gd;R{oE|{}C=UMOPe(wE7THJ&PXshoFx72 zDGJnSek7sHjC_{|VoTcGzj33k!%m4vn*!tUns=^GHk$g6a*O z{?u?sL23%~rJAbfVS2c80xwqBC;tZETx;pyfV0xDieC>*AL~Z!p!cozsej2 zQk_Bcya|)9*>mV5SXy9>RxSH?v);#OGIFdY&!)-vW5*~x{)p1B&9#9<&lRE6h4FG{ z^D*A?#+{Vo7YqtR@mjabxBRH8If6g?Fff+t%sy9ukE4pAq(AN$Q#6tOMlx5|Tghs= zkm$zbUzskv*_n)h9ly2ENj-tqcTWv0?L3tkapZD-jQTeX_>}tbrqCCe%dltMXYWS^ z*4DoAGt?BcLfwwcvF2iLf7FtuKCM2tzb7)BME8aGmK6H?L+Z}=_p|i(v+D0>DWI0c zPk>mL{R?XalX=BJfb#hT*674^4gk>}yd9%If8(>GK#X)^_<;X~4|C%i*1Hd%p%0>g zod+nPKE%L{A>tqc?amO>TvFgoU`-BZz~^zWds+h3VLNEs{n0b9yizLS24qDk)JHqm{h)uwoSt2hSC#ya!ZP5t;AGJ%pedt^bpybB~>2a;%u!`95 z#b+I(s@X?W1#d^+oV%&T@LL7^ZcqULK|`iKl*S(;sr5kOZdl5rs*kU+&-{hE>DRmG zQFl-LWR9Lc21E)7aS5C@Fm@LoE8P4(d-AdB!VShq;R_w|y7~n0xf-k>``4p-U?nFX zJ-`UbCk2H%CJ4Soli}2)QfR&B=tv+v!1*dwuH?MxalWL=%cwm2i`DGpqU=v8y;_H` z-NX)3O{ymQ1fdzj;l#XBU-tYXpof-3Ac`105#xqZYBb>fQ-)&z{a!AP>UjJ~`-6vQ z53lxp_P=NW?Jkc@jhV<4X2$HlQ>BE{1~f~ucQ;_DaxE&Znt z)?EwDvRoE!Y{BPxQfai>7L+)fS-<@L(kf`m)+jn>G+hrN>bJiLiVCNSTNjoRoKx;4 z3QVd1vJ<%uW=vX2XDrvySDBFyV}jzcLYk?k@Ro&kfUM>{Z)LDjc>7b{+B+U(hN>a| z#4l~p%>>bEEbvWhQEg%(9(GO=5-Ga*a~yn5H9auzQN{=(j8osQ{yAT+ zVLTkm%AB#!e$Qa4$zeX}O(8lv0Rb16-C|VPM^Oz=(^6ls6xtOyxre+Phzg-g;1fCP zsxA3v16IyK>P{S5WVPKx9Y^h|*td^et$|`3d{g@ku8daCE45z-u~lzi?w22DmcO1o zCM<)T#9BS8q{jY>X7!WOxb6Id^|G)28Ed!Jgip0+aP34uk#?A??EQ8?4<4f)ptf{^ ze7W}7uQ9vazC7N&ecru2;N7lqZ`XUbk8-Q2K2-~s8EJcu@An?>0w3x1?|BU{Cbd?c ze+C@q90+w3Hnq{zB%o&MoX$ypy>|tSgnn^t&fTX01)xmGPp}{31Mv~!qdV*U6}t7rCIx!d$SaoKY#K`k;1Rc^0;RE2 zSdt3NqN_RsZZ|MiM_>RmDsQH6=8|&zCICr%t$A`peH5soCVRRmQ{k3zCAQ+9nXC0U zF5CV`#6p|DJimIR{$7H87^iI!<+gZ{@Wt(osb>gWFMF``w9=jvr0J-UiO5-K^1DbZOY@jRD3n+xQ|fcXh=rzYE=AlR~Sb=`BDDycZR?Bkqi?pC!}^rv$tbwcc5h@{RmkYmWoOQYgJu?Yb2WnNh+r!>oVDD7?+@-Ecz(g(q1XDrW_6<^5yy#tzapsGV_FqkGDxJv zx(&!>Ah>=-pRC7;CpqNqI~ePM;7}jz`Br5XX!40(!#%YMLJfAfOL(Kkbv-`*5jo-9H@tzg8-e^7CEE#=!KTPQN zgvS0IVX+cI%R}(HP=?t^Zau8kTlZU+Zw_X@;Y;kU0f#jlD5>r@*Q)A>4@_*T;B{j6 zZ1>YMH}AKaH)2s;n%LuWEvmeJ*KUrHWOl2WEr0AZd?VunTMyN^$sq$2V&+d>d@oc% zww>?Sg?ziL|bY+ESGnfz%M4`JtxxwYV4gS`RV&`^}THtRyrHuvPCHt29$v zmC~A7AL@fp2|>JAt2@SS%Hyj{SqkHRUnUwRkH~6Gcb8i@{tlZ#Z5`Z!>q%&%Z!fBMnWer6sV#e&T} z8QbGr%B=_A;15tHzTAq;(Ii(}{B7xlJv>1>K#QxO&f^nL-b;K{A*AcW1|=HLpVUsz z-G>OD32j!V{`X)D<*PbWrmkCeKFCBNhkBI5Aw{U<5zBxW@nTi19G;+6_NjOHz32WI;)G0?CCt zFqPOcSGrc04#q+)7 zlcxT~!%~|GK$&>!xJhTwSAYD51NJ@AC@HaaXvZAi#nWAT+G}D3-*ITKVosL z$43nEb37$zdfsdG^Xm8r@Ll;vmdMyxTNbsGj zHHUA^=gA-DDp$=ne^oVGZ5In6tQ$ZqRz=deva-TZp5!;WTydHTRjF49uMgSv=EK+) z1JSk4XZfD}y0El3{y)w?g&CM%rF&t&)i^=3C(V$EW5bXR*^j#4r%k+j=L-~=yF!D4 z20Gi62A-53sI^~FCg2GSlCc4>J4_zlV&Vo9|u9}A>zYSGVjq$6R5SG6Lu|QWUd~D3+A9!+^XzZx5f7)am1INC6pwVKrt7b$T^@s_zLbpVJn1EvJvwt9kIj^dPd9aZXYjc zQy#ymfa`7KOaLT}_*xS9;1DyL5p)|vbxG8=qM`+h8#x|tjv85>YEHdQy3=Ut;EkoJ zjt-~z!|*T1ZhN>SHZXlc>O@2NJ=`x=W<61M!rW9Ddi%Bg9`?nKvmP%wVOhzEJtND` zG?YiA`VAI@)qr7O!6q#WPN=c}E*^j-EQ?m}#UsmV`!c=59QGW>o7xN%y;bU-c2?U? z-Z%=gCVs0c`?d(+JiI3kFPT5sxggKKF1zG7gRpY@BkvD82S0ao4^YKerc3_}Dg*!aj2wW!mFTZb3p7^Ivf!u+;+^-KM0|^in(Uvjtjl%ck6$p2nRpenn7z-1 zk54V#?5o!SF9?vYI-Nt9nV-%T{L0FlT=xL#Swy}TD*Yae9n zDqJ%upvV3dHF^6#vA$n4b5lPPTuS4Mk~cIn@^9yhe{@utJ=HMgyNQ)AVg3kgs`k4-yLgshVAw#- z{eF|GVW0hPWDnR456)c5?%!u$HIH7XyM*Qkm5BRmDj*u{2?8q-?sKY5ETb3BK>BHz zNqxKTf9TIo4R{vzYfisvxOrHit+*H2ca@4JVRx=?Jv`AeDc)NT*IUVinFCKHn)tx7 zms2qOpXmNHh1}x0~+U z_sfW1J8h@EoO;Z3U}dq-_TNb_s4Of96pKxLsjhy3ac$d{1;)if__mXy^^)_+&eGhN zE{~>t1nO(T`k*2U`Qh$&41~wAzpJ}~zAiM#)|!$A`5Hpyhf+abY5a{N{MB>zB7yV` zrGfD`5SWsXF<`>{;%wp-plJm!=vjgcB2!-$coJh4wmGblvDhlLA2QQYjO|kI z^Ut-nsz?3=nV}pi0Z8@q4Ye3t1=ID2j`}xHvpC|@Y2|8j#2|8|CE1+)40;(L@@oNS zyv_+b%cT1`)h%W(;k8Ktq*R&i{Pl@nSz}f)eR*>v^;aFO=?kqjld*_ffQ{1Zra)?a zK$$N^V=>X|HP6vhWj}l*N@5Z=R1yXNh5pRaKqllP)k-a9YpIQAO+MccBi3CX^Wpf5 z%NAkZP>fv~aV$qSvHV`jc2PR(R*;pU)`+SO+xxcayn5pL+Uz3*e8U8!I9ycBOs_&6 zWEz-WNLHpdXr|Ymj2KiMLHbG`vUm6T9$Pu;2zOsUK*QQ%2QAI7U;6C19JW8f&)G79;k1E||XFKT*seRa(jSxCqp( zUyKBqsATjikeEh;+EtzN(8epi9sxBk^cvvfrCIUNWtpoa;fo=^=|@KaEFT!!6U#4`xP{Lh?_u)?9fN(K6mHxp@4j zayQ>VVs}4rHbl?QL@zCpiyrui3ipp&GX_*>TF)5nvFlc0RD z&xgl<#!BwdL;x9XHcx#oFd6@)y|D|R$BDR){qgitO#TVF$%$r*PfQPhjvj*(4`N$A z6bbeYw18>9bFzz)C%Y(lfb?)=aBxvFSQK{R$Red~k@%}XCZ^6){dFCShv)V`PWkSm zCI8wmX=wiND&Pks=R*Dgf;+jt)CSZ+=;$}!ZZtjAXfq-CFQ;6dU&)^jMowy9Wf0Wj z8o<}(VhrtVJiE_jGo*>I5uXNV&EvUSK%+mASMIsA+a5e$`v`pJ&I}v4M*ZUVeDAlS zgpL`R*za3=A27YoE7G+?J7#GO#4iph3Cz{N9KPLHDH5YN%_DqZ=N96Gh#e019uWfk=H z);dgogJ~Tn$}=<+@ghfCGf=*^IBDa-MV!vM&(eV!usfsVY-Zf``6IL8(zv&p)h~ zt#BR8EQZ;2+i!a-zrY^732!@HiPKA6Cr{-wp`z?xbMTaJkM(BrXnsv9p^_PDnUE^e zG9%V1;EYbQV0vn4sIFsCw6O)7%Xt-%^stLFC08)yVj>OpFA9$z9=lMf#&OB-UmmL7 zIGr3VzUlOIS|+%@C~F~~Pm#fuX{l?nW5c6$?eX`G7~7@P;MeHy#r{z3RR8>8f%J@0 zc!3T(e4`E)o)e$6)cAgw{pFJAhPE-@maPJC_dKpydb58JI3)cYqak`Z7Pi;DV~$#| z-pHmgD033$iQQuQi0P0aDnRDq8saQgVK-BOB-d{zpy45bSSk0!Gnp=BzpHv6jT+z! zWD9;oK8i~XfmRR62Q5HsyXnEY2>#STt@uup+t1z!PBw<<(A)O2+_+i(Tw3z!vkfh& zl28baeH%)5z64_Iu`jv11CiQQ&OiU|%C}5K_FT9Imp<%u9#sW!Fi2OYUQTUCpct&i zxNSqG>BGcf-~0&MHcrsYQ<&CoP0*A&_Aq8Spp(N1BDneI^;kxJxM*M`T~b;7VNo-2 z>Rd9})jJi=ztqRl_AmTmC}pFIQAH_Ll=#@Uc#T`}li%SC`lAPrUYWK9a8$_Ir7GfuNsldb8#+oVc(^{;oq&NngjZwk{sVmCqa!=nDZ1PQ-EHR0HTznU(_0 zfz-B8_1d7Xsnom*)~zKR(V|c=J(CD~gMp(8uRj3mvIguKFK0iu8=AB+eR7^GjT95) zEmdDeC0C3K*1Zx;?YQl^WerTmg`7`QnsJ6tHC4sFlwMpGO<&WTJz+&~S%?l?Oc-_h zzd7*Gm?vH?3XH$4vV2j1s4G+iGnW}r@1}drjP457hWzuN)7WC`(m1jLTFu`!@IKj} zeQX8Mip$0~m0RDt58(Dd(G_jD^dQHPKzh+xfb^rNUJXc3sfp6LaAr2Irq`tFE5KP5 zBAv8D45t0%KeZdCH_KOW1n4vXGQ>M^M3;RlOpNnO(1c6h+aG<)>r86Bfnj?Ukl}I% zOi2PAQ| zf{4VFBB1%3#gr;eHH@&cZ_=K%W?C)9ph;C(JsBn_)>Nph!hVKgylN7`PALilHZz-3 z4V8e%wDD?F#qFQC<$%t~sGW9-Vk^A*j4I zeRGM&{`F3>uo0fyq+GD>9E|xDhuuV>P%Alt^VwQ1#puML=0UUmUrvUkqKPM%2Pf)M z=8abJN(xU@szWOoKrkf!vPt+Wb7`rqIH8cIc!*fZ7a&Ix-J`AK23-&ke2CTd48&2G zgpMsli|51xct@;A_dBEKqSl_)XX{hAGBywduW8(}CS2MZYUd^%-aw~B11&7bL@?N$ zC}A^(Q~lM=@2THL44>Sqz75nnlf2QGOxlmUp@l%^=Gv>9{*8ge_V_LD)%v}ho9gY^&py z-S%2f&(d4{26&Qp0Y?O;L#9!0W@{cV=?3(reYV>p9oI8*ATv7liUIl4k<=M@0TVX? zmBuGtWCyU~*bVBKU}eAkFqJr#=@It(RL*(D&cCT9kXa`G@5G@~tUK2MLM{b_V(_@4 zeicMx0O0c*4rufvZB2Eeooh$4P`vB1@ z2*?UT0oYTJNQ7JVYQXv`Hi%6hALa6+)G&|zVUWrA*j~4QV`k*G<0lGC7oR*)rc}i5 z%#4^XfmZhP0)Jq}nR|f&0&o$kSQf>frufndb?+(I3};(jAH(($9+^CjE%s?xgsy{7 z-Q87VaEIAl-+#rO>B|ubL{b|}kHOrZ5wb5+2QLGG$1dTd-+4L*J8j>!g{|@>@3XsE za&V2ZwJPliTr0)H8b){R2o=mu}`QPKH!^`6YL9V zfIDrk4_OA94w_Oj&Q%9aExh0EzOOOwhj{Nl*_{9Wk7gMS-hY@&fPFNH-Wl6pSn;Cl zK(Bv_Vz$%1W2ZY6({|^-zsdUu(HZ-D4_cL2Wz#Cni$3U2L8Hmp8BE_=V&B0q#9?68 z*qGYqx~9%xCd`$9>C(A|C9a@pCd~<@x*@_<(Qi*M6`G0EDdz5xAF{~WAJ1zx-!Uj{ zr~M}EB%cUT*uQl09o@|G39%TxfE}e{a+#G9T?aFVnXPcLF7_qecDOk``TSzS!iUoX zUCuTjmNpDao4%}q6hKbgYwtU5d-ktKVwZS6o7CXL^mTyH$Xia+;(5!$!SS^T_U)VU zUHYQBlo@$V??U!h3hz&J-#41~G6mO6Oe(xTn4ewyJudUEsdveIj-s!v`s2FKfvK;Al&3^Qqf?N++umUPy*ET&!cvfJ$khXHtZ@^Q&h_NBIh#p zmtj3bqazM1XBoy;uzMve^uMi_(Mmu2t21E8a{K8{0GW8a*be8#prryXmrespa&%f^ zS9@aP8L58RJE^l+buvqf_`FZPF;{=FTAhKh%UXt3#1@jWm%zk=Wb$X+0*1any#1|% zYjwQEUUUiDb(&p6;yM+4(1*TV`rgCTOa3NKg`07)Mku}|lv*DoidXuANXun4K{6`@ z>keC)Yh949N7@`nO{gvy)dNumLn2>nE#qC)5O^eeoo zN}us)p*;@~MhGS27#8X~r)r}LnFPOU5rqM3C{JN+zmdt^m-ex1y(~ z7^G5a#sckNPtt@;cb1sViEJA2CHZ{F zJe?JIo1mOVkqoMVCkYZ5{EC(809VchOw)=!`z7%nq!Xseq!5C4Zfc!hcis7OpEVxJy8x5rYS2qjHeUj z-mqG9iIvm`*=33D(^vC?`~K8BafGSBF*RPL3gq=oG)D7asA@RfJZNG#6XkD6A`zZ4 z|K;{;R~sR*V6HP{K(8}Yq}`bcmFDTk?k;e8Cr1zbmC0;ttCHmj{!etDX(fNlg+e-< zWqg@q6CDLF_2`+2ew9tGH(y-K{}bf~=TUX#T$(fy#v#jUdxY--buUFT6W@XAQ$nSh z)WO@%aPBMA2V8IBog{rPVR(cFZm+d`A@A9R!Sr<{_QiBoEAB4$Pjz*$5w4Ug` zI(B)Y`!-{O<$A^?|EibD4Mxt^RU&*mka$|p6-!{E}kh$=Xa77UL=BT%%hmEm}Q7g=cW<4e6-i8Y2-C$}v>xtfWoh z%}1YiX+a}cGjzu9AnlxQLCU#ZV$T;D%P;pki>Y=)Qjoa1GEk%wJin}gl zoAO0OcRQ={x58S^Bf3@1u20%exHX4>)z-#C^yaM#NmOk7_Jt;S=Fwil-e+@XFZcaA7FxLA{2mxy7~l{)HwVvhG#dC|gYQFM@wAZ)akJBYj8_qK*6xuT#Dk9m zr^0}%{Z2EWwTwo3$>z{e))(31sXLp=@83T5409mcpwYflf`XOti+W?twV85|AR;YA z-BO`~RLsl}k)_ksvZmH|=Jc%Q%#j@>Up7;LYH0F)XL-N%LbK7#^%9K-brH%x&Tpb7P)Xp)b4^bU zNzGY-kcP@BXGW+lwILBF=Pari!=${=<}#ff9ZSPx$L?4Wg1lL&(X3kJ4QVQLmNZb! zsG?)l>Wr%-vhG+;2^2*)6`E)I)$p&rPPNg>Sz(L^TV6v8+fOmxis#ir8``&k@H=*$ zxD<+UNzuR!lu5;lDBTn;ZmvzAXMf4OKc4r#eMMe>)nsfgZe|c_A(&bZQi6bB zKbkW?Hb2o_6(fSu$ce*I-CVj#-3tP4C(|-rskV~)nSOKT(kIr_4lo3F>}GWj*%h;a zOph3569!g_#J6vOi_}Ru8G&oda|dXw%a4-V6UC?4H8(VmT3*KZi8dFdf{i{P+^f>^spx`Xj3h@(6GKW%cy3k?3#hxvtk_X*eF6G-- zKFPJ0pWi0=?&o3G#?_>sb>}Yu-^9)S(F7ahw5V}Ui<69;!W;=d=UxMU~ zJ%F+l5yHnx3bPp@Vrnmt51ENoT?otd!O+Vx%K+J)iJQov_P(V1c9$B6BgSCQr-eIz|Ei>Y7yBp+U=rBq0w#?An zHq=^Av~Hk?&o;(%OD+#0C^Qz?#Ls269ffYAKlEUj8nxOMvVI%thnEJI)em#qcGxK1 zIvuvx&GfF_8ML}{`T=nL|rwJSAb zh4F@b#eNq?mLsRa7cbS&MBTXNJFnR9u?k?5^H~VYKD~T)M}Ge+zR!K|2uO(!s=N<8 z{Vh@ngfgsMy@9D0?epP_%`s`8_rr-@2R)s`_vx1XZ~7x~ zHsX$RRT{B2oaYnLwFMxczN7_6#;iy;#+|zYXPft?BGeyUFWAJqaUo^lKk_u1O6A)4#10rUlkg zFB;APDML_ZygTjHsQZnUPaWNgumG`?mCRB)@Z={wK1fU3lUwby|G=ow9;(aqeG;A= zQfQcd2l}qOw8QFmttL0spz82@%o7U5CUIk{Xv6zz1gMuby;s+7(mocWW1fM_~AFOA^SR7p^Y-&S^0 zUVFj*!5TG}tlXsvXx9BKT6qJ4*5C3>0@p{p-{0srN@0mIw7?7H&i6g@?OX=+Ft5$w z^{2{KE_(@5xs>o!e_YQD>h4QXJRGQSMjg6!SrTg?q^oixMk)L z`~3zAFhLCq&94z|&rRL)kRB?9YyT$G`b>Xk>q@qnTSzgN8|KhR1vpLVW()YsJ1=UD z^_R#Gta+i{Y*DA$DE~(4V7Nm-63M68V4Z{qp<*{JqCE~NAPRMkj+{aU(B-USYOBH& zvv1Z0psL5Hih}NE?$K-zoeG-0(Bu`g2f82lN4dZEJuE@>Y~R>T_G_oBTX%G6xCt+$ zV;}zjd?L!D#h70kT|LEGl~Jv(D{M7(MXI|Lq#{bNioE@;IS>f2C{VRfc;2XDr1GgM$W_0%rz1hE8CNZs>1H*-_zXZ5VJp`IU{Q@N_r z)!bCWFdVWlXYA=rwCf3f;nYpd6qsYK-6RFN>`VxB^w*hq#=R)okoYTCzRtu(?*ZRw zwaC&rg67P&)NMHRh`Ja~{qaG1-81sz_mL-MW>tymVbV?>ZB+a(lTm5%w-S z6LSg=cN8vly6W2v3FW9hZbRaFJm!eT-DeNHPT`fn zu%ab50*glDunwMkudUF2T)dm#pPu{yL05%{ZzYdrV+O+MFLCi|oTPJv!eW=dVYn2m zrF(7GefDzX8*>xavsqK*lTa!^;zmCD=w^lFa*2t>T-UN=1dB4-Zt(jz+-^X1 z!=w>Koww&8d2VXbu(Sc*&f9Y^Jva4T?U``r?T_-KzmzE-PNyH{CY^Yi|6#jsH(M%o zBa?Fr`(;u+k148ZxU14#=k4wK;g2VCykGT6wXf7Kf8o@3)llm8jphcE&^ydky1pA? zN1huWc5Cob5Se*90)Lw9KedKEB7SkwML&Cy0_5?IyY&?L9&G9S>xmq`1K)?!%hZ_T z2SyY>NPcnX=wjz#>pXsvpM21K&x2kU2jb{Xu%A!3$?%05G!TCB6(FBL~M60)jd>eyf+aq<`=D+IZ(`dbU zP*Hp;QXqdiKw{Tz)Iwdkn*NLU8^@~Z#J*Lf0%aQlgA{QCGtsg>@elIwr}Pjn5W)B2 z33Xdt>t+1zNyXN-DVUkov-m3Se2LK<7LMzJA7D=qb=xghe-_$+7=v1}`rn()`mgjTkxe`7_AJRkrSVYxzZB^FV476%u+Rr;!c#_Tk}B>eC@5i=iNZ zr=IrG&qi=D%Q`;3cI6jG=wGWq1Y{z42CHVI^XUam!Lb|20nCE56G8r&8&8X3&bTkN zzhielR@S!_E%>bdENr`P^VpY&DL?@Ox)S#oRq3KE)SFIy2D zzod4_z`#-l&~wq^YZ@VHPcmvRS^EF}$J!8KR(f6PhBD=Vr(!(oE6VX`-fchntPhXw zmcbE@YiySzM46(2DYbd8CHWGV>~MwkZpe(dNLBv{#F?IAMutErH!$ZmO=NF*MmV$7 z24O`rOKbasK^U)_=9BCS-*>mDA2OoU&1aW?2BDj1_sjj{1wn5w`qQOPR<#OkxG7HT zYPtf(|J*0=qbsHK5;1)~M+3ix08OYN`^NiulD@|@nxW5>%cRw*uu^@yEr#(R+pFCS zf#t$Ojvj(a%uG5doZ2q-tSEg$lRbm_G^Lu^V0k&!H2ZU(7UoOzB}tGcMAG3J8a;hd znLwbdBZBo--R5}z>?tP0iV)D+_&=kW2-8u|QV=_1Uab#NLRa?vqsCtwK`e>XdVV0h z5;4C1mMDP%*-8ij5yV&_#3RLhsq&T|%F*uFOhhB&w~R|-j(()a+&TT3L;KM`z<`+P zF7!Xo&nnJZ>g82`eBrb&NK(+9`sm;h81 z4zlgia{Gf#g5%g1uux&D4@LCsRreX*nC6-N2=@^Ao}2wh`foCn;vJ1#*Q|)5-;g#f zn%a}i=Fe-F{$2U9=73pX7FnYO=d)N%&H~D?gHldlU(`jyMVU9>BRIj1${fbauI^xD?cpdj8tO#Texisz z$95H($V~0IU)?592wuLs`V-K^>&^-ak*V7Z(RA5tkiKQ`_54%5Ki+;+E{{ueFq5uv zul*~t+1F)H#=)>LDK|#hdoym$Ng>`Ds=vlGbjQv!v#si$u!Z~;6-LBmMmSq@=CiV{MF#@ z9jq1wJb*PHU^|uZSh!{fHC-u$vI_G$UoxI7f2lO&$M-Qjzjs1;}hnYZN z0U@=2@46L7!G9iMnGIka4gbNT;Gd8MdH7d+KoawzblW(gBzBq@{|e#=3hh?FX_&*j z)bJ@p{xkZhNG`i}j+_wKo5qJ}f4TebIkeHDL)E%;w_0dT4H^hG+43^cjN z5n(p}%p_UMrO`XO!;$HSS|~ zyUS?XoM+z46`HszBbVE0-+*mCWCs@aJnPl%+am&Au;w{TtO?;;=r8LLhV6=w_$xxN zkTmpK-P)T*6NG^HA?b}$09i;1ytOF=fE{6E zt~xq|$}?9E@nc}oe{XhJet(7&S<-XA9XmVS(9PQJeyG*~DOS_@C&Z^3l%~ zqYM^1_6CZ1T-QE(6Q&z^doi;@@W8PX4B9f%%D{H&?r_FZ&kEC}4(ANh1o*BG|GD%% zaVt6+p&Zzwgq+k_*Mdk;0VR{)M%G8Pu)&fvLE|V|)ldEXJI`B2>_)*Umc z7*qWPbs;ih;7~nwlflXWTr;&u>CCq19&n40}<#N!9XPOenm7B-X+_BR`pB|8td?ldspKCq>3BLp`^he z@4)J?N7;MCybOXz&v#j&ahO;H!2st6e4Qqeq~VJsj>!Ijd^^*-!xFS4%N3iTn)W)xPPi?l*x#knzD;uPWdS|zpz|W_VNo2Fr_8r%871-#0fd`I)k_x{z8T?ATDVS}hVU#p;@+b@oamj19 zUV55(=NihxC=7r-Xt&Zc&DSH(`M@P9Tc&G*brOrfY)etUw0)Q}-&h(-?RVrfFm{t^ zb4n&QlC_4jBi`M9%J@1%nQ1~`G*PS z`Vy&iK8OuWt=+miQ1{{jtQXaCs2cwS@Ut5lMqMG#Y>^{*HssB>F)+8EL|dHS&pG)S z0!WgDs!!nU4fdZUtsLL~c|7Q2W#AM~W(hr&3pwLGbWVnRJxZPd`c6m60Kk((d}ab> z4?$!WiO2-jHLr=q6-BTiPccdQyC`Y`uI-GU<2=RdJba`t175`)x(AiJHzqgMy|N(I znA+Ot<7i`x)~#FcBBzdK^h_W-yQA;-I||>|m$tPxS|Q?*2f;sG#0Mudo^Srt>6uZ3 zB3rYOOoOS7H0-aaw!eKyZJP_{DV#{%E0NUJo2~$IqnR1-O7x73%IPq;8EIquji?dI zyBwKxhuKk+G9?4I+RD8NT@gyp60N;0N>FGkxG}XcSiO-REMWEMiV@YAdUcjcSW9T5MQ6YPyB}t zlk)6OJp7&G_guc@+S(7TZx3SPFw9vPPRA;5u!h2LeHgI5U1|-LJUK^QK}v-yV%LN- zO*QCbVQFSo7+2_>2PRE|PhT6mz`o{62$&us!OOIw`u%Y6O|=w<=)jgD-PFxAaeWzB zu@JeCcrg#~RhAIjUjL)%n1%lYsh;@EG+E|D%fcsrjP*%W*u4?el3{JRbf099}Yd*l+)dDrLA>BgvmxWO$6&Tqz3|hoNZ0iNjT5=BnnO z9ZnCn|Lo-Dv8enZaj5@0RN-b>oL7*?M!?;&<=Jn~;I%8lO(U7vZ};0x@q|pwj6E(~ zw$5r*RHcf<<4DtZyFoH;jiM)Kc@Tq@6`_+1yljP(M5kfb{z(Jfk1)kZT^;)krq&Bi zN459!n#qwi%p;MRp-cTHnxJFf1Sy-(S6QPy0L+}jw(#bPm69e{F)7Xo*X@l9$*3CY z0RN6W(Ewk!JpndA^KN>u(>}%2+UtBgg5S}xD-Q|#tJKZX^^t*ru%%f{Wj0lSw1MdSk^GeR=T5OycldhR(JvH!Az>E zWesKaeY^;_5NA7_J{}@v?6yeiy>Q1n{S-#xn-6G;ZT2^^8_3iabNbBXi{2fzFXchB z1zs^%MPuq&u}=1Az7Mti-Ia~AFO-&0=1pJIj^ z+K-s>jdkzE&O!2D6G=Sd&pz0v{w2BkDa0q5XTFGU?K5=6sOU3vFsm8*ShQJ2#@UR@ zU~xQ{`BqPa&{pn%N02eW$OHQhc<0TDLi;ii~Hc zWk#>ph90}e?Ls{(Z@-R(F-lazh4KXiP8!Rs^oT0@RBFG)JVomE#Jl?RX%v0>G}zmF zUoY4TQy<_n%H9q2+oy`1JUGU%O6*7Z-Yh^<>bgp6`BHj&G@~9B5m!9&kJVe;Q9{`0w8}c z$)E4x)W_jsMI?dF>-5{F@I|B!z6~(^djZiIyH5j8fT_mgoT1Gw`UtQ$@+Q7e+7B=1 z2aajQlu*297b~0naThWc&bHtYLG^cP8+i1FOP@BOH>Ti)!p_b|TKi7MgE02yK zjW-M7+^7?XQ@5UJ2-Cd2xcU$Lde2Vro=xrb?1{JCau@V^c9-|;b37}=Uv0g)6b9~c zLZ^P0PKMLh`de?&lN-xp-wda3@n>`Rj#h8Lp*URE89Ogrw?1|eThA9pb6mYX>_e1- z9j2Mj779Tty#SEIYC)j6_!4TN?qioyav!gRm=K-e-l3nnWpMWC0{*uizjm-A$|ZMx z zQQ6Nc;q_Mv5D1kDghlA3AJ7t_*zHgUV&tuy;isSEx0lQQFL1f28g5{$A~u++2AGPo z-%}f^9w~0twjQ4Wg@iC^v%wcR`rN8Ec762uWqivF?Uf}+EGtP9sSovqH2wjYCq#K- z{>bTa7fWrp!IC%!KMETX($LMY+f6e`YfO9j3Sw)knYL z6z7Ss6t*!W*2M5z#)=>ZFCKpH^A4KL$dnJ+SJSR4K_$5@o?@eCc1e1Ly!nuQ?nL4H zK1?3I@%VNct;8XF*giO-KJ}XOBQx?6>QDvOOrSs?c`v#kGlx-JG9F}PoCqYO@aB+g zMbPtR{uY3yBdOOL<%}WbqcMG9Bt2czXC)uto+<2SwMl!UX*4ocX42-~j!Mqq&SVTe zmGnyD;+aXkMa+wgApU?imAl>%y|CV8XYV)=LUu{G=i%7ul#rJ@9V&9=mpe^6%rD_F zk#*8D=DXKi8v$l+zN6#M{&hLo4BY%h)Y1E^z=kP5BiJKPgQ(BWj z38uOm=YNAHh7{$Ruo5S0@_6*GH+)6&hpWL3(4_Sf)1b2ZqIy2aPadCui#Lrm*myJF zby#<|n=tXF0W*}1){okqXUr!bw7VtOQqnw@CI{=w@qQX`WR_f*^`sUTeEt7#{oZE+ z15e`M&};q10a9AOyLtNmw0@f?m|wpyvg&k~^|Q3;|MU83vEB9iKVZ~dzel(->o>o! zem^a&9|)p?b0!CLJAmZ5OT&{|i|pIAk}5j&{OW+||1TWPMS=-mCvlUjdJ_j99_$Q?4Kv-yo>Q8nf;=>)v&R z4~_a=?&e_}`lU5a9AbYh6+)1p&Qr%MHER&tD2}|Adg>@hHQ6VyVNxOv_EGYuszfRU zc{qjBQxVi|iVfntsIZcCst+SxbBxHJ$2@LhBT%xT+}Lw)jEHTw`y6Uw0Ts)RlN$Xb_k{41gahQu=tG)E(y(Z;%atn9S^gKUR zTFW=;Rp$C#W@WQzGh|8eX0+PDCe0$bql5^zA}?L%i};8kx5r=i`rQOYjk^-q4mdo=Ht78%0$S0aqFzl^lJp;#9P!NLb$3m<&dOL~A&YN#6O zVVysc__%68M1obMZ--IsO1NBapO4;1oEynfAm9$!_x@E{V|kSO{w3nEFRw3)0G0@P z%q0d@N7U}xE@Gp;+^yH>K<&SwuT(uz?aKP>W8s4ccb{|MHGw|9cPEX2I&FWVP6q5P zk-Icz#0Dv`mUPSQYxr)jZ%%-3SZ1gf=uw_(iL`Fc)x0qEqf8dexD1tN%}txTOc0;8 zh`wjpNC4j5r{PFy@~%jVirzq~fw#iE!H$$0@({p}O3{{k0>-+;`7MtjiblWW5=Gy` z><@7R~U zrI;CBmC_ctiW`GJAh1j5A(*iUShll-_sH#gsnN4*pg+%eQM2=kmg%D!O;CP*WG@#X znHpQt=v6-(Mgeet*o_PO(^3`r7!I>Nx(rjkt`Qy{bwC$+l--w^kuUuf_1p+m ztNwgieeksKM5T>mJNSB`F&30Pnd%#ER0cA*t0yB{d#>L5RPWR0^j%LX!BlNwd1`9} ztGmSEi&imq#?}?FrnP^#ZiT8k+;Q8#WB}C;tZ%oC0e^nHIeIGnoeH=c^s7www2E}| zzwtZ(D(nFSYg=#?0QE&$#~S)}j2(O4>NQ`;Z^mv*hr2nqj!zu&8Ro`HD%f2(VZ&OJ zYUGK@lOAr34LrX!v0rJECUs=VK=^9iD>3GCa+T`=nUm)%eOnQ3V#Ewm@DpT19)+F5 zztBg1_j_a5ZuE(>d+8Hroy2D)C*?j{!6NfTq_bUHq+|Dq(qQ99ifc87Nlo3TiP3aK zsy7nT*uNL;Vi(#)wC#t%a6UBA37cs_IyJ>__d6_%G_6AQNqF z&~X})6Aw`^oGe@Oi1R~+C06yH42N!2KVA7C_d%;VY5c#r_+Di@Pv(Z8s>zM`tL@U% zk=^9xiv2+nF@Kvi;S8s6_Dxz{_l+==Fm;9?S zM-&5+@XDok!sPx9r)F0L4zz8g<+5}YDJ0M(1XAy(>_Er+1Aq#Iqc25LFT)B)I^HFW z%-K^jqb{`W^x^i~E7zh|pKx}^9@tZPYyf2G`ub>kg58*&Jtw4=p z{y7arImG74&Z${V&M{Sz@GCdpDVxdZuuok2P7hnAtvwU(0iQ@%=i4DerGT+lk@L|c zs9zCg>u4P_;229iMf^R$$WpV0PCf8NeKtU@@Aoc!M|%l*3G|0dFPY_EA`t?z$tF%M zd3lUUBnEF$mHtd>M~BVsY^SBRb5ANN>c}3SAyDEc_)tLE+zxEe(91^n-pYg(d2KY% z#x=&glRO4$148n5>61m-p380ap>-86LT-`Z0pU zt>us@4+9%eo(&}99O`QK6Sr2ulMf{xSVK7me4O}m+%gwe@Yvln)TA;OS9CU1xn;`S zGCaMq1EA4E3KXj!g7QrA;gX_m4oha~G1Lkx44J{OwByoYY}yucS`f>D{4p1^o_m6L z2gGr?_!cG-kV$(=06}w@LJB$d&(4GDpE9Y`YWoppP;Kpz^r8wYSx&{d#dijCL;Xk; zF`9?U%9NaC;Kr33%cjb)kGsHtPTMvnho&l`#2w>QtspHF8xS=1MRm`5ycsXB9Cnb~ zkZ%j7ixuq3#Q@pt3RQI_<^lRNQun&7{ZjjH8Wl~Kf=bOcM2reCITb`Yqgysj=tVb1 zt4WwkN%6INxrr2q;6wo1)D%ECR3)^BR#W< zz$f^W9?vudmhRGaMy1>Yf5A{^Hd6pSMnk=kBhL(TO9c&B0W{3vHI^|XPhnQr5HVQ z@l8ke#Bj@c01q97GN>B70osfE?cs(1rw{2%%i(-^6Y(9?LMCp(w=T`nHG_SuNb1X_ zZYb3VZXS_3?9QC9)xfFBSk8f~%>im*Jap-Yh^Jh7-QX*O50uxY_gWLQAAE3p4j+s( zuY0XE_`<~p$aBnE?*()m3mmBZZzUzR(~f61`v)V**nq5kBiA$i)*Y>&DjsdM?rBeg zQl}V9GFv+sZX=VtJ-3J1+JieAYQ0^4agFm@H%EBt0}2K@KJbussI4b%HEJtWzY*!^ zAxYr}K0@K(4GwPdj?*-C4@m4GvH5w|?KwA;8F5Z%{AFdbZ`ZT9 z7J?e-C^H$#EbOrlb%6xrD>EWs0&Ncggj`AQ{=uA?^2yHXV2W?lTsuEv1`70

    (?Z z0H^#eBEG$Lx3{$FpflKv=zTMy_fN#mmm&vplm5J=H92C^8`H-(Vv>cRF3o0Vci`(1 zz#u7PB`*gIMNF(N z@JQ-F^sFz^G>3~Yd!*x&61cEIf$9xL?h-(25wya46NkuxJ&2x%+74LD>$reWT|U;p zBv=5#)$IFfWOP}!koaSE+M-h$(`A?fVg|~%qN%dskUzu0|7*#-xa4*GP?k#)L_BWN zIR{dkp|Jzi#(ztOuo;SqsnK+h?XJ9cu$;B=ea=&SDvWKGDv$Vvb?hD>sw$c;8wy1= z6d9kv!A=y*O9P<*lshrAs=!SpRUlO}IfC)eQz)-*GzVO;t0J5(F965s!qy%!Vrtq| z;_d-aC00^K`bX@8vMQ7_w+iS#V=z6M3wNX0Pr?LyOI9zs`B+;E%d{i6)!24-6SY0X zi7u6Pa|GMR)LPrwVw7GIku;)lS-7;k3U{=pjAbC z+FmQw#Ag@|=2GZM%!ou9&k7MzxRlt6U_m+RbiF-5X^lLSPQQMX&f4I^syc2zdc>e(UNE^}>9`@?yCtoFP5 zAG`feSnp4pqtE+%Mfu*)lY@{q9=<8`XWM^XzOR4k^68CPzImUrd|L`#^QJ~~Vh0W& zrz@~1&NcLEh4zWq1mC|B<|JDq2$b6QV3(teLWTam$VB{y^-J*jsQKe)RD7hP;QwYb zc3L^lg(|uw0O#;>wm^Rr8hz+LH~O7VX>>9YzoQy`!vFxA&f9L%qokIz@g);G)M0(^ zZmuQ%?LsQ%v~h#{tq1Nje)-p%V{ z?{U2`KynWk$J*nY=)$M$pDW${6QC!(_Rre?yc9EeeeAC2jp@oPE{@feq}!Dc{b^2C zwgL#f!BqLojzz!ir?&qvHG;=u_eXC`f0A4rt3O*oMNEzQb9wTp{+!vTKkOeP;)JL( z1l?Zrjfg%6kKKmw(@IWdE2f4s91(QpV0q*{!=HPb4lgi+l9%N6^k$(uwT%dGcDwU` z;4r9L`(G#PTtc3acYvIh2BGa)lRG3OuYYK%(Gv4_0sa{6~uzw}Jn zWkx)2qoYy9(HFdmXBwIag{6BI85^5@_H(be--p-@`W_7LeebnemivDAF~84v-@iyd z^}WJaXICH5$ULvmF1Ef3DMn28ewW@jqUc1g=%2m*98Xc_I+)%Z{gW#%pTIdg-Og_T z(Wzcej3Vbk3imEF-YfK9huuOfSdnuQg^t<&U%b-4;b>Ep(EUY5j+<{E@m`a(sc-Kv zjVJ$CNLn_g3;EwYHJumm)ydPJELJ#kafST{?}McKfmigqa_jNdL}U7%SE}AE<$|YE zPbs&*1;PuI?kr?beV<$)0J+bjUj{gX``(T|s{DM`q*wWix$Rrwclo4OfiH8bZP%xe zK)mgGrp%l%$=ifUdyPraVI*H{@g|k+SLFPV!$N)R9na8~KIR~@f2bA9Xht>!YX4=L29`Lscay?XQ)ZjU|K zpMoUZ!3IGxy$8GHC3moQQ$i5LIu<#<2An;3D~z{>5-W~fz0iVNeen_1f77e}AxfzF z|Btda0gtN48o$#CC?aw}jmo$M1to|Gib`ZlL%nE1c;$18o||0wF%21syP&)$FDd*u0>7*j&S$Hf05i`I0)0W%k$NVxA0HESe2~E1 zaZ-aYcjen!gX4;94;&;lp5?>7ar`jow>Xyb+(8&yxiHRgNhnujBz^>%bbdXB;t1-% z)5SAvvx*MPCQ{|f_wHs2d#qdOSgll{m)|Bn7q$!Zbf#PBCB~F|&RGILnQ(TX(!p+} zk-_2SG#hRc+vtMAoM2BAJiujZ^+>nId(=p2u$jO`%(+>Dl%!}pt|80&wbHqM$a01kvW&#YpB~YJsHH9; zyRmi8P6ztfaHxI-w=rj@2QbgdeX6Jw%D+}WJndUPRbVx&G786N*U?{t7aw&g- zkwNWnPr8enXwm1~DOVj7*8DagG9S|^|4k=yDWSiKfXrLc6ys)}#4I@O$qtJE6Y%;! zQDDeTtvXERedo7muhg309dUYCl(?ny(@P&#BvYETU!YAnUu6m4ygoQM&~@(TlhVG9 za=Y-_vw6=_Bwy~+d!>)i*E9igecPUZbH z9~K)uK2gOVT)!@K*>D*B%4Lkgc#l=<3bCN79jCvYii@zliFax5baD5uyLkK8UA+D4 zE_VNVUpFYoR#sy8M!^mmL0p}uKDB~+4lL^eF zi~KnF$v!*qCSUR3v#BR~AjOWSSH8N3Pr%6tl8+8xS1(+?Yr1piOu!CrugP~R9^xW-~(#HGq4@)GN$whm+#4%-j&<=CPAxVCF_Ue zwRw2bUy8WE4l=NNz}p}_s#J*zLSm2ODt_pz0c` z!Q9L>#^6kAn4?H7lbf&`%ofsL=VQ)8){1N-q)bs3`j3MOJ^pQIA zpJmc1xjvk?6{aCN?##NIauA-k>NdHf!k)$jH_pNq$8@fyth~A``m0n}bNe@2}Cu}kSjgC=fDe%ma6*gq}PjD#(^ zxsMOJ^!p5wY8u(%qN*#rL&?r8LTvV}OF?K4L64s0m^z%~)oG*InBxKUv7Ne1FN&}u zIG&Hwp`j(z)8xl$BDhO>Ibg;49-2hIO5=cElAn-W#$B{dxf~(sxgNZ~_6Fzolo=U! z7P$fRAAK^|jMwU^%;%|pmGn&X6B)Ir!Y+}#Ww&?r=`DGl!Di84rK(dgO3<6P?6z-Y zV(-Ab%|RW8G7RYzF+<~Hj}Ijdlm^VNU2=J_ztZDmMy0=K7LA;b`CYh|K1;kllP^ix z)OAU6uJeV360ckSJdfm!gdBlSyKl=o-xi=3mob?Ox}u2`MwL1;S~*59H&}Er4?{{z z7H5`h4U(u;kvV*H?6Y>b&O76s`)VWj6(_u2?_}eG4 z&QP6D`Wd{voHLf9sY*#e2+F;W59(aRuu|u|W_6T)YM(`AyXP?h^JwaO2r#$NC~>S( zy9_8SJ!@||ihCIPxb(CX9%3o{E%O#rWp#-~V9zFVWiCyvDm#lI767(u%@U@A3?auo zL|!56WBlps6Ll9n_$)I`dH~zIz}4S+-v{2^K_h@VJYQC_Vud@Of)I(B4bPVdhIt$1 z2r3pbu4|Ro2usDYM<@cR)>f)b<5ge48z$fZ1!QV4{}7w!vNm=)b@h<`h5Z?mqxL6r zJso0yxTv8A$4AuL`q?~sthg*K7fX+8-`%V|UX8HGjX)0Lzi-DkZ;@THP)30T@D*fm zGx0-!hHx(&L(gadTr(H14W<|B4x2sRzMEn?130PM_AM3HLN&;JU7CLQAV< z`2C_+_+Mt$NN1&Y%1f~d;dTxxBxegf{5s$BNq~9eXwR`(K;tM!Pq(%V`tzs$?UBI z)L>5Fw+=4^$^`;Yk?j$Q-0jqREI$0lEBqW0Y%me9D`#){bJOCz?m>FL;!r9oDuo)} zh$&RwiZ|yEJq-$hxZy$A?m}u&Rr(UBkW#uagQ1W7P?Q}(t6+=X0n07G2g{D4Ecs;0 z-?8^S1@ZUN@ycQIUlJ*=^HG)s7}Al9C^Ov(1c1uRDA^BDl_L2XXZ{}EaLQ}tKI8fM z5DY)m^jPO}G;0iws(z-IvtUhrHXq@hl?}*<9+K$C1XJ*-{hycBw@-9i1wj(ow^+~z z49H+BuLnd?0`*RX=uEv6M*OeBT-M8bOa{mJWM&rRMl%<-gcDi=E{8ZJbit~wj~ZsF z;!=z|;Oor;JoD`RHof`5G(Y3eig*S$-k`&>sEXB?+42LWGUFqerK|U-{34Z=c^l2m zfZ@Gy+NhnHGo;6u`=f!B5|M=V_`8XAE_y$?j(+2Pv-~-kQ$;YiuZnfioGn<52Qz-D27B&Be4jRD_nMiBR$JP0HH!g6 zz6XU8B%ZgHcD_mZP!@v_ zA%^{tJUD9C^FnMGhs|2@VNR6Zg`@aj={u2!_on2wlqpn24BRVB zmYI#1O+H`lezqP7Q(0{4DG^2EniEkVSJ+RYK_RnJ_dGGXa)KNtNnP)@em4lNwB{?? zp1uBZ_plHyi}<^cW*wAr*A8OG<NtF^JYXJ2Fol%# zqTO_dar_@OV92%Ddf!->G2}|Wv1J3gM$fd@RW)UwS)M5Z>QsEB(^_OD!u$tGP?@u# z7~kLWXMZ1FLZE^d&!M^aRf(qTwzgw17M%v@CCc6n7VaOF!IhV;r5~ZIOu-xjk1!wk zEv|;?kNJ@wf+n+3U8Q`Y4(^9HM0t1^ESU#;9Y;Ni&31^OYn;Sc?w9|_7ol82Zc9tq zqd(fqTd-V;ggTG@<|;nH`pRbw=C2GHtJBWFW56s$B4Qs0a1h*?d+t$B2UD@gUx zh{7jGEzI3))>tEVFYR2og@?yqM+FmDEPkwdwA*Nf%P_!KTk$-Y>dsS9vdu$fmm zaRtpqUcK{uE?0^RD;n&du#ZR(xK@JvfF@8gP!~NJto-t{s=S~0M;#3=)Ijj?M$MzL z3F3*2?03bpztmbg1<$V?fCKy?7QkP>{E>bOFrgr95v|lEXfR_02=OcGqWMZ$9EAq+ zG`Yj_Q4m&ogvkP5-m+Lo;_U}2b`n>z-=p|ZvRf=@{M5B~GFPh?mYF;Yzz`n*(I20| zG%gIhStI~p%S~Ip`Y;@7rsFwyFj!khd`544NC^K5zP<6a82s#G{CA0CEa;wMk(;kj z7I7-dzuHKu=v(@|4AxTeBd>JIMC+dntm9Urh9rJzUk>6`a+ZnV zmJkod9Ot~{kxHE3BUODjC*Peg7a(Jg3%OjK*oIkPv$s7V0@m_6Cdka^@k{!i4hAS3 z&sPfP*uux%!plYS;@Nk|SL$xHyfDrFRB+7e);+q?9Z*(Z=3-_?XO{%)&9wCf2kV_? z>-7!RyOes~^Pa9{xJ^B2cQVeum2g+n#=}vAISXa%W9RxeT<)+U$uZw%>u;+cm{%5f z1J2u6_($SLpRQP3ktBcq5ci0<+z7|5RC`k0H=4F|&!u~<*c~b5Y`R|Pn?3-q0k%S} zqujIVZ>*3BjBcoa+~Umd>-=jEHpAfB*xFJ@1wv!uDi5kL3s8mKOqiGlVSv)Fg&faf zPGoPbTR1+kDS24R9(#OJ@_K-)&cHGP)H6PwwlNX8ZHCJNMJ3x1dIsoaV%HEqw;wL0 zh-NPbd^j0Z_51QEg%!wbne6RHod4+C-yRdfId&R zC+2!PT7=Q?3-sR9_zfX*!X_2Z)A;O*=c$+&%S={~?xkZUGu%p{wM6lLt!QFKBXsXt z2m_7nMN=1dQtp_Hww@1EJcPe?daC?jp#4mE~XE6sP8q8a~fWW^2 zOq%v|<|E)OS|?}v@1gdF8wzB4Yn!qwZ^_Kym8O@*sRq#j#VLK-3d1=n*%5+0ViDE< zG(RzzOIY=(o~Ltvq@ny!{p17s2m9GOQj*CfCY-y=iNr7Bw4C>(Fv~xkcq(4P-54xb z*-xHkE!J+ds|tSoyRU$sHd%JlZ<>9rm<*XKT6JigpLP?a1)w zR||fnu0V6GRRPnbuwGax!)&~SDvOe@%L3K+PdJayS-b34A4B`VHpTk%f^HVe&o1V+ zPv`?2d;UhspMeFN%&W+4r0VGNr{bi?>Y8}ZD*JM}VoP;AM#4NUmG~GLZ{A~ci?=j? zlKy7=@&e#_D`RPPrcw1kkT!b=y{TbuFsl-xVmPu*_R{pfPsZ;{{0Oi6-uH{{()B#G zgd&Flf7ySZZpJV30Z*djJ!E0MSgbL35q@ii{-l$g49K@XsuPkMjCuc;ALeT?Awm57 zcg2FE3wp}-eQ!9FP4Ia3Bf^zqwr`QA^FcaM$Q^o}scD1N{LlN?Qw(dM75+4Jyp)FS>mMEkYnQxzVmC z{dhu;FyS}$Y`f^Y1dGifV5=bZ9dR02CcKSSif^W>{|J9{ZsGW=BDiD zONlV8FFm{J2nob22QECDSVMG_dG|tL?ChZo>P3oqUmYW8@8vfesp~D8Tmj7YBEyX) z3zkW9jxByniS#P5oJA%FVdBk?Kk{dn^4-jD1@HUiv#a0DoGDPnv+Mt%O^uPC`Zj>M zBmjfPL+!-x1WNWH(MR9{&Qni8H!H0?>#g2jxTb2EnF*|9+Eka0^R@J|&wJL(x{;l@ z4#thP{FO2BT>1lzU%fMC*Jlay0zbqVa|OAT6pEy2Fd=2I^{CxkyTaOBQxMzN`xfXMxTvHnzDPBXP*@XhY(4MUe_eR_6Kj}40Kf*VS*0A3D zqEr*n$*}g-DOe}XUwTevDuxC~ao{{9#-He8i$4IyKAGR1l`cw;mMF#v5a`s0J>}(M ze2(NIYDbF{UXg#)AE_We+={p7R=al|0$oqcUX}o7~yxMD0?`py|iDSc|n!&M8 z!>f?c-R4DY{Kd@0B^8qmVZSJ-rhd$d#!^^YJqbbc3Qy z`~{}|5MO*amQgWfT7KiFSv z!m`*GW;0;n331B&wvn^)ju5yttDtJo>u&J5qHc>3{kFgWjsJB$Bss(xgae zyS$I=eOWXmT$tB5rGPsIaw2(I(Gv8LtE6_B5hPS`_laI_AnB}RjZWfV?h;^emATHR zh(xo{7n9y+UjKVQh_K7N%fdAIvKNo33I!TXn7cquNJy;_;E_h_q*1+KhJW%~>A#eg z?$*VCD2<^2q7>a_nqE@P`Z8@?a_ut9FcSWcaj3T7B<6q`R*WnO+ev)>ZzF{B7wMIs zE_^P&&{jCAgzmt+5k07?8Fg7>&Y}@%bM3r|r`sc0X&$&WinOE35IA$m!kaWK*I z>5Vqtb2A#-^W_X}Ls^7$tcIkTlC7-!d-fBm#x+cc$-NrE7Of6BAVq^|l~OOV)q`Q2Km%@tIMq(>2v8WG z7>bna6~m-arAmAV95@wlxeG0|J}GI^8q_oyb{yMc1TB&u&ULZbV6qrOd4Q->z<#>? zURbgY5214X)O>T-;}&>86FvJfGRBUdbrtr?a^5}^bqHpkN$Gds5*?8EMvBw*K{NY2 zMpl^m-p(+leJ(@c3&f|AKvrulVe%f&B`~YRvA`JdMR?<`VwDtGa73JnUUXDMDn?&f zG30ZLpJXZB%~d~Qc}CM0E84#F9d;h5FW-G+zH|TLf}G#&Wpu(boTHn zx%~~GKj{be(y46Vy9!o=S^Km?Rz}J-o~}NqLh=r~ux69EyRrsjc8%wvmlx|VvyH#W zW~+Pz9mJqVmClt7WW0a|a~QoPB!iOk zRWfvOsIH(zacklT`Fd4rfFI-89ch;$jWoXshHuIq_E+A|R6;2Y%|<#!5xgoG<_SSX zvTOjkNWKZNf=EaHaU!#HQEibtd$=H3FaLGpH`(*<_Te7)D{vzfDSJqdb5iB~rM!xA z?r2HCZlZ5~iHMgnQGz5rWQi-z*B9iji=yjcH#znf0LpnPbb@_fD1z*``uy1Um2h!{cb>G9-ewU3DxJu3IE6poK5)&VxfG=?_JnG(3b6W0jDyL>1@RT- z5+JXvj@3p_^);!MnM)rD)XLEj5i@J7KgY$mYu9Xuz5Yiqye3m>817MThB1vi3|UX-h|*%Y z*Q2#)m|X1nGoJqS*E2_M1<4YPt&QT6q?RGBy^yFQW*dJMi1$(M&aWVbx|4~`21|K6 zqg|{dye2qv_YFM|e-?J~<3+AG{6=#x z{RS$z@TcYrbo$iir^Y}kyzxWDI!L^bes$@Uyo2>T+YB5w*u+im`16Mi6@u;0m3Uqq zmS@RL0e@{*U^!6;T)5~|Hrh>@qKvHAwww!yo=#R?TjYb+^{U!zkT1vM@S8P- z`pVQ#{`532Ifb8i_Q=`(`eH98ohXIQIN_p0(iOII+QP2)A-?)s?71cH^wy6NeT_lH zs+*j+wUY3K4p7<|VkxL*WDw4W za4!PQ5VSL@T$kQ_B`1$kT?X^(VTXG2)k6yU5gycPhety=-(M1Nlip4HtjAGp z=CKE@OV-=^Ds|>IjbTN*TeyeQyRX4gNpo02*s8&t%VNrl*@zzV=+&G4&2cybiYDJQ zwS(O;j22U+vY4EFm+)tUc@RzMsK1TlziHD@HwThE?QUw(y7=+JClQ)Qa?$3<@g4(7Yi@P`BL`CHXmYZ&ZZ`+EZ%aO z9U|fkUTL~Yo8C%M){}6%gnb`#VK_(%kJLh|e_)=^XL`)@I!h&{ft9bg)1SyoieAym zEBQ;uCl}4UDa46qM-*7sr!m9nUVMXhRW~&R7ZF(x__n3NJa<1}@V}=l;+AZ< zFx|(r{%10gPfZ*}Qdr)%Q%3ai@COXm6x$Zg-L~Uve?7y4HAnYcpXyJXLvqoHYnQO6HIzs7NJGioY7vs9>SKcK_JbE9&w}5_i z?Th9MO9-q8lfb5+hWDZaeV)IPX4d2!$X}pHqlhBk7(kDE&4-{^>;=FznD6k9NC{l& ziMQ3C-ug^TMZD$e3N_dgxtI820T_~$|J0JW!Mq1u`~eoi#>mjH0HI~5!-2^MbpeKo zwaNijK3R-V!%{N`@NCS}D@zPR;Y+!Y!j#ccsjo|#fvOEeT+G?9zpq{R;Hw-(lQFoD z{vhuGi@@(~@vUcsL=oNF`OABQ^Ye4?vi0Bx@henSE?L`}U$&x1vTnqV4&%Acodbo_ zD3de0Q5-!lxl;bJUCY{WF3rs?pLe9Lt~DGg>c%|a`nku_8Ono6tIT65GE<6j~*^6I!h zJDy!ek=jO~jWuqG?-?5XNkWCZ4_$Z5VWo%KD!%b6qjS*#Ux*Ia%pdFI4{-v|-A8}- z(H~p$vL9j2WbAUoExO#E-Aw=M`AUxJGm**1gOE?qAUVSc zAFsPiFAg>*pJP8^blQujW0aA&gWH@2c*G{=5Nq&GV{v{T_6pB$0p1j7P8v(D+0`s* z#B+*xAI$_bry>+xwU>M5k8@_0(2pKpLY{5~5?SNy-=BZuy||D0u(I7JI~DBQXO!(e z3EK1(+Bg-`hy%HcW?j&!Po(PPtcx=<3Su>quF|XNa}@tb4vdxjB=LR@i&7_fQheab zy!vVVWSgFb{UZ+*IZjNCT-|ef5idk{DayKyquY6Vor+z6Bj>8)pxooxF=-(W&ws_&nPF#_+mC-k;y#jr z_a)H2%=-}hm3+p>(+b{j@_*FCg(0#edo_s5zlg-px(t~S5Oxbs104~e(Hz8E$vrc$ zZ(;)fhkk?32Qt2rQEC@)0zFXy54-S@yATrmf>^XpT}V$i$w&Qxw5H&hL7*Yw(5>|I z85B*(7V|#zTMoJKbf*&$p&vsSN~BVBh)K%50Q``g1+yXeqa*#hZ5qr+m{bq3NRIFS zsJu1nf2SHJxBn`)OC4;*U4bqy!&aqtiGE3!-{G@GadX9cX!4<8?&s;ggfy6gxs^cx z7fhMc#k!z2P+K31(zfVhow6@|pW|cVS8S7yiH-cQD%9`xSH|ZDy}lJ-tl<2c$!BDt zj?8k1*Ohylg)!R4v(Eu;x(VZyenme>$~~hvf>Fs^sJ~6WBC&`Wcmj0S%Dmvz+&U}3Qo|+gZS(Y_ ztz1`D{7F-aQ0g4Lj~>3Qy>`V>-2ZjA%cPc>`w&bIE9OD)2(EgrwuGR^6r%otWccWP zjEd-ji~J8`!7?9uTM?n5mY5%aT7DqUO=kW~>w=1qO4rtQFM{`ozmTV@5H*;ZuR!xV zK5g%y6*#Qlk5=NKNHoEXA9iuEv%)-v;~0sL!M!0=_@#LbA_kA!^hawTTpg;*tL0%7 zvGUFIhxHd+{u3D%+|<*nhZ~7Z@3=ESgMTnJRzO1I0gj4SHHocp7U{_u<;JLJZ#ea1DFAtN~Lqy9OfrBLT@mk1eXbHfj1DNtN zxB63VFeecuV9|ay0NHuoQW-%02LYWb)RcVS;nLhg_*Y-TL@%fOHTdg1%IVG0KXEY? z0{)b@{)6mZz80}f-taX4MnGiYWEEb6xtDun0Ia`~L04pNfET}b1Uy14@lu=4(i!IV za(7@{&Fv@y=qN29g`w0*QCQap+<#-Ph9a)S zh~JlZ55G$f>&oE<;fiQOiL%=>O%0|8 zrkuO9ZMa}7Q-ftxfd}IIz>o(FeqXcc%dUbv(g{poh+pNZJM-=x;3l3eH?ZkY?mwO0>3dMr~8O$|tB3_l{k6+-^)P$%#yFdu7w z(r05vdu}JnRhs{OhOT97yuzwVA#@2+CTbTGrjM z!R$t=Gz6F8JzXqVeb%h~a_ddgg{992`)HgCl6?Q%wkI>h6_pj{E}E2oe{75s@Jtl? ztoiQU9A=g)k8?#1SSd2lXe!_YfAY#Z6*7I-KljX6e*s4>FB8ujZIE+ua*i5sfBu%g zy!vfD@NMP9I004uYgXSCYqJ4SQkmSb+H66qdJv%%U3$3q@fy5J15fveXYv@oWxd{e zM;*YI$@}0tk5x9B#_Su+V}VZ9UJ7l0j;#4LvSalDTasVR)!9j8L?Z6$AtjdTHjukN z7mOdrJ|~Pos&PU5%8)spk*!{5E74}sn!6Pm)|hou&mos!+Ns>(b{Y`nXeQicDnz?X z16Se2)`erdk)s1z2idi6F#d7Wb31Ii25Y{6Z`4LzGZv`#+l)8E}+a;d+}%+?5> zbsa=O-o|g;Rbh&*maH=;LKcz^x}}0=f|eaC!yR`P z9k9rpk6rQTlRCem^y%$0-$AM28eKZo>i%4;hQ&;`*!swtWNOrSq)A6HOtX+i7r=cdBifX^9h|_9Z;O4LCIqpc~P*{Y!ln{U*Hafybo1Q&B!X?^~nR0QCGd zz$h+yn#sT5v-}oaa$x{e0jP3GjH8ouec`STP;g)r=L-_BjblEaDyVhew?)n$u(tYq zbzTI;X2i|-UE<2Hn~#6CQv8C@lo9fy6+`PqdJ+b#(w?GIQgu7fQW?nId?$a0FPP1z z!ALF`k?udjN?O+X!qWme&{uS4zc2LiOB$lK$vu9PXHxi(J)s5`F!wVA-T&m)z0#|j zh{AWx^{3!(5KJgd7nxl`Xw|@?pzQ+B*SA)Grg><~%$eUPFPlpVJ=2G8ZSDp!-fT2l z+*W4e3Z$q{*Prm@2Y@*}=X%kC*~bNJw?3f2@2>u~SKTZ#mrPfvMRngn-*`NFAw`2Z z6n6tX-p;DTRQySGxpaLzut~VKtpIElbq{e0JWnQTxz5Fczd)Urxs2c$3p0Ys$y&+3 zvFBramG$v7deMXsr(z+qksFpO9+W>AwI53ymiHIJJJ^xb_4U;nYNhnmNbHQOujC+) z`2iUKGu^4=x|CUX(E(QU^p*I7_Q=B10*}Yru&UMfzP=$vKzYZUwP9Z?oc|K?AX|`C zm3F~_meWl;38BdWGr24BXqoflpf?>^|10&7rP^h#dBiqKF17rl^K}jNGSeMnuhX>Z z@lx=j>M^B1boj&&DNuZ->;SB%pf%O??Rr(^}X_RF!!)8i*bI zlx}h9}#W3`2k#x&aaM4Wv(Sc@YOCOdkIZr~o ztotMznG~A2u$qOm4P1%>EB}zv$5GM zm0n73cT>=E(lXN+AELim++KvnB?i1OSu_O&| zB1a zGy=jqcky?tAVQoeJ4xyq@*+}Ny* z;@1b{Om{<9_8z@3UiIA_*{boC)mgWIzm$rWPERDRT7+U zz!gItPm@pzEY42SMl%!{Wo4jeOS5HEJzKidY!M-_XGsyzOF%%7t38; z@$8TFAC8}Xl&am6+D&T~*jWN&!W_;Q6pB;%8?|7N86OF@>{dWCd|Lm&3q6WsaTd~D zzO$9AUf21-Z!s8Y^sL`cdB{2f`=iQT`{u5PFbrpqP&p7~ZIpL+wII7ei~7&IC=FDAxd2$oEwYCY^? zXYStzCK;Qa`~W80u}UtkqVl+p0649lt3TPDC}4a4HHOmrPLof$^a`x6Nt||x_7j>4 z7G)M5Zac$=I?ry-95T)_Ad)2~k->L)Q2<;>Z9gAFuy-Ec<)cUUEc4qJDgp~i1oyGU zvR_wptgKPHA+?F`qX$q&jbpn#@-~IG7Q2EaNQY_%!H;kn8FwZN+cM5|xnu`Dqe!bS4p7QkK9n#_M zuw3-esPL=2bJ3tZQK8Di9!%+at>R3O{Tt@mcH?8ThzVJ*HFXTUR-l3?>#tTC39nsQ z!+3!jetgFCxt=~_#!~;+7ZlABL?~x0Pp-W4<=Arp;{`OJ7A5bp_n9@r-x4I)6%U}e z5h$<%E++rCN~GJGZgK8pr8S?VmJ}jQ15*OEPDM37gMPPHl&Z=pBH|=D@Sv9Sa?cBD zor<+o)Q~#3-DMtDggX`I@fF#!GrIx?TQEZ9s?qE?QiaN?cve1;AXzNax`$~A)~*V$ z@-SWYj%14i`)$h?1>=jdRQze|%+w@GWaNr^M>f=*XRlPmtq7`@ka_2?o?N>Co^cgwsw>J)Hsb= zp&&EbhSvq^LN`T9mPA6U%71F%ez=Zjkm7AJ>l7&_LN~&!#R@t`JZ_a?R~`MBmca@(ci-@SjS2u_nIj0FRlS8WmH!ucMs=zYavG@8r_Qq$cRs)RH6 zVYiNyMa^;G)MwVkR8F*4-;4VXQGtmT{P5yIay#QBg+e!-^Lw41ek?hReX${O#Tm-2>d=+uEHParqlmaRRIZ+Sig}6Ad?(o5c$38uuX(KNPKiXG)u)Be!$|Wq6^QL1D~c;pp9og4jk6KF!!N&EfRHo;l&%= zc!FLC!DQFk*u!L*BnS~4ngh_sk@BgnfKW1Pd1FR;P#Wfw5pi}41{&#d&||a;)BqoU zwthL}PNuw%^~*@t1Et*uVg(CgB+zh|@8_oRioH#_>*Rc7msnltvB~R%UpTC&A!{=N zw~{vo{zjyo*PWy1*spQuOwL^CI{R}kKfwnfBXKgKSD9f*9^n5AJh8zdiEQUEYeeOV zYC7t;n666S=Je564|ORI!^Si0dEHpTUB}h*++=P%4C3eEPRb!oJsn{lyjq7jmtp)v z1TxqLJdxx*u94bhE`1N|DfPWQ7rUMZ!oMg-Ei*;5@Yr7bU!_H&j;|J;^!4W)Zu*Cp z4SA9-fDLBB`wW6Za)#1W^P#__Tqu1vu7)>J4UguFc6h@ry^+%7w^Hxu(GEJ?QTARCmkFS{CX0 zN;C8I57EojGHBy2O)Ke~?C8M!WnoofxmWR%d@)^qTsW7R8(=B6<@iwo{J1-9Q3nU&HY3I&$>~x<)3O!=+1&*`Mwdp>>fE zw#`icP?!Ha{{BGVj%$ek`1BbyLf>mKpWT`oj%a|4bt7ZVU627ZLXi?3j(Z8@gFoT} z2Q#9K73nA6qbsFqD~6RTHtZ8E8gTH(^R-`2&nCU&qVo;i<*uz|vCosI%Kls<8IDNr zsSyv2)BA!mo?ifM`Lm)HZ$GvNZ*^b}jkr8MMAMj8=&3tV+`;v6Y^P5GThJ_itLIOO z0o?*-KDouk1M#H7*cW7i59Y)P7p#{sDHj=up6ks8qGdSq*g-BZ8#k-Pv3k&Q#vZ|f zJ-x+okx0o_(+5xy!BQR|NU#R)7720tmH7c|s;kAvMP@BxD*np@)y_O2l)z)>p~p)i zSv29cmv@_s%aHjNdh29By)KBTJkg+Ub3} zrNyjRJ@wrXj{hxW$nPV?Kx(1TOq_be5%|-oyb-TJ9vWNBzcEvgE0@4a|EZaWFRhJ_ zIt1-8cAPS{B>fhLu`9)PH|D~Jo5X!PJKBS%e(IfshQ7zEz+Dp|! zasvTfV~Ol-3oQwhIP=<-?e5B9ISR^lU*=SZJ$B{{)t}cn72oS0H#n7KKN1SOqEj)U zy|Eem*OXmz5(8H8B31@YWVrh*z_9vRt`8_SLmc>%huOG&NK)=gc_}dal}pI4j5T6F z=kF27vmdt~jO5Fy(RM2LG7=GXsuj?@uUR20b-@;2LW|9GYF1WDx_@7%^54|0+%&B- z?$}xMM29{2hnzWKJh}AvJgv>+aa5E}iUDnmIp-kiaw))A`P2g(aWlYp_5;Q%3#wq3 zUMf=jbcvi-OOCJzdrKlq%;YjCX|BT0hS0GZ0yulx=-A80DuqlpSedtye{W(>KY93s zxn;YH$gzxl#{{L*I1`F3s@xvqY6tT>vw{Baf>GofS0ph6W}&is`f@YtY|_(K!2na~ z-U4##zu2H!O;d|+XI^ngh*vqtHWi}(ZcdP?Z!djOfc*==%G%&zX*1XLMHbT&V&F*qOy(VOll=w6rW_Sj4&URf|_R;+q&XsUkoyt z?WLFFcz2X>ef?*tYqrss(lN9+ai(*?BdqkrNG!nOwpUeU zohRMULb>czKi~V7I0;8h-`i z>0R6hhE|y8FVSTgxLfdr`q_=sjk#Y+{?&P7I1&BL?VAd#MzV6YG~s;~40{Bn<~3UN|j}%o1T5D zF@0O@)7Ag|m1g?Or{8HBSE(^s`)>FV4P}0wetCfLe1&)BdvKMmcXEoVM2!tlfE&yP z2peDp{8tJObqhPD7g~Cy@*B)kjUvJaEugx!j;9?AP6M-8s8t-<7y&E{Vph{Ml$ z+?H3-L@>LnpsK|iCU?Jmp@Qq3HiN>H{K##RTytV}D!2N!I)ssO@oM(?Bx9f zk&8Nlu^e<4-T&kHv~eq#%busy_9NL-34~+5`3zW5c+4nass(NgJMr3U@j~ zzia)m$uGYkGw|WJ{(}T4GvWMHfU*G3N6kZc{(_H)#orfGTy^>jM`vaQ@5Hft!; zzMi75xq63!*CSCnfxm~})vxn}=IpAQ3j#n~O+(q=lD$@Qt3ae|UoKHTZJ!R$i*zFJ zc*0>GvLBZ4k^I@oDTthXK_ue$XZRgXPv)|wR1eEhXx?muIL*$l93%B#4Ag(@|E~Y* z+th!TOLIM(UH^aAUnun(_NL(J_kY))L;Wqzd0?XZ(p$JrjQbVR8<Lq&WGIx&v7IC^R7tZw|-evb5PXw0aQvEx*=+EIP{&RTNv4!`pHP*Y# z{Nek8=ih8?>=T|N{s7P4pZrsJL_g%KesFS0#qc#v#lL-WbC9;nW;2Q5aIya8YmLjP zLCH@3SBJdx+k)o5B{SOJTsTqrUv7Mc( zTmf69{+{%1_P0GQNq%7OTTI=Day>xMtt`4#wO+z+%w`@d=?3TCMdno)E`X%kX8PxG z7WC$3SEL2JqXEyWzYl$NgVgVEZA!j3VKx6yzq$UW5we=SRM=IZWKLoX%tQ+K+v?r> zu1WR!cY19ujKTdHpGq6v0G_2T#-z(j_61LlU;j0!|5Tv<$^Uo#X+t&G>9%i(b~M-h zQxR@HLq>uV_xxeAj3%fZd4J+@?!pwHu1+6>lG$#_@bnVwf4aSv@!hxh=&1BKvx$|w znSVtJRj=$wIT#RZt~oN22AK3$oZ{~SCzsHwkB?*0`@aGmw%x=S1G2!_-8WCU!gRfo z(F&X{)f2+5q3+F?eCb|)3s)a?SrI*8OV}AJa`36l_DiJIC7uvlIh^JU3!fKXTx)JV zTbvs`qHbQLa&oo#vBVuC`43eWe`a5AC~St0uU`WnvjX^dbbB*=9LQ(^La9HX^LI~? zEi*TxhKSvEt6W{$(WA7f;5?Pg=9hrh!<}F~B*8tC4cuO@eEu_d7eWk}p}X}4wR6*& z;UW*yNu=k>NbXAUEb9Y0tlEb94;7)Fo3R^nm@a!i)`wVLOIO7ehIf%Ut|^`oll6fQa*|AvR@7XTo)* zvXJ;!p)2cxtRo(AeR;D1C7OJdZ_}UbZTf9Aic9c3-xpj`Ub^aGoblY{o zt<(`>>B0i@I^A@zwbln~jr3{(jQm$-wnApctEQGe-YEfXEW*lvcKzd~by$P9%5XU6 zFA<=jFX_5a$mlufXYvU@MtbW;$IZ8Z={516f7tlWAN$*_3o#Onxo3lmVWcrJ2Iqb^ zC@zhk*T!XnD5bB*4Fb-4wz)YcHKQ(p8HrK)<9vM9UtXXtU^J5IvcW6?VXlE>ilzaL zz!El_d#p;&v@WM+V=FvT;h|2r3-0?go-C3J`joaKNuw_LCJta%0Nf}2R+zJO4&}9t)g}+FAF1-(kaN`;I2s3sg`qL+)u(DeKqejLW%@Gz% zuQ7$sAhmAco(FUefx;J4g&Qd36|_Idm+bhL94u)51*Q>w7*qpY@EyqTY9ZMC#Fjr0 zEN^AYTS@sVw*2N`xxx6*zKxX6w&ml3}m)iAUu`du`<%=*oa|+O%Y1eu+n2xw=p7<^l9y3k-)k<_? zNUL!Lj%(QdgXD(oh}CcBJ8q&x*tjL`V`l|7d>Wgn_->!d;Hr+}IREP|=c z_ewALaDn=g&oF;h4zqAK*36e_tS&aY{bjdjbd1n+Oc9wC#pHKWt0}vGYnfS6vJ!G4(iNh zR&oL+M*0+Vx_Z(8LVb8QT>DMN#YAV`IV}5=ve`d=R-4S5R>}VLRX8{nn=?KVTv#n6 zxh7;>SPW3>#)lbI`c1wX&`;X&Z+hBD5)E>{F@;jE5_Tg0V%mtJ_{r;FZe2{zzYJt1 zyB3w~)!SGbc%#U?xk)ZXw$EP=3;iB;<_*rMsE!_4l-G3IVSR5aUCkwHG)NVd{s2iA z(=A=B_Nv<))Toi-=rhQS)sp z3|}ExD4e+Cy~qo)Gr0MrD337M$E9C~%YWa0de^Giot|W@%B4=_O#W5&(S%1t*3Uv! zj-)=|Fq`N%RrlLQtD}>#>ERCvMP}T5?cjJR24=&slI?}L8yJ|pJ;ttc<`uNe25y z7scFc=|=5E8Bs+R1RD|$%ns?Jhapt`gcI77VDJmkK*6Vmvl4ilv&C75j3Gy0513F z1CQp5$3@1VfX+?aIWy@YpR4NSymbz@F21>cW=7BT&b&6qG<_~9amsX}F!H{fk`Ngf z2Na&-NhP@fk?-%3|0o6IKmHLIbbFMn#zGGmwGF%Qlgy9wYexf;lX@;q^;Z}plmAO@ zQ5opWJ2Z3Fp}fT?l2Bd)P#;f0sW+OXP^lSEDf=yEV*VH)lE9>S?fi5M<;YF3?>^=m z39|9(P3#G=h-e^8%7Ft#Z+)bDRFV+=HFbvxgD!UF{0KoM2M^3qnKegYXvs}Z&(#t- zonE-(zlC|#lXKwQC1Ft@3Da>lljN}(fbkS|?cBon*iKDF&g(x$oY$9e?{!Bd7}eeI`tr_{~)D8sw-5Sa!glgM-@(FUWhbrL<9Cim|K_^n$LeHwfukZ--i2B5dInesYaH!MPjR(vKv~+t+jrnQoOU)rj2J!?p3Uf{-e$uEdCG-Vf1 zomM0HCsvzWE}!!3r-AlU0KetQ9#rkh_wqdlI1kDg$w#DxV_USdEoOQCCu{1eetR<6 z6kHpt)o1Xe@)kbu{d@l5>ljsLc0XK7zp|x^ZRuG;7oWaT{*f*Jr!D`>AIh(@<(0Nv zmMrP*XWQ~CZTXjJ)rfRXPy?f$c<2lS~&GIOgO*uiHn$QLIk3|vhY44u`w(zC$eOj+R7dstk3VgM3jT~ zx|sw@imA6->N9bw7t14sPB+<)=@Yc*k^~W4-!;Eq|CeDZWA6!S#m}VIRx@dc}+nfE!%G9zSW@1unv2ABY zNaYOYeRVsDalG->Xs*RQ^OQnW zexH$1*W#Fr{8`sg?)n(D*vEa}KTs~Jo?42|6hB9*NQ^5c;Xm0%{egbVKKZ20^v-&| zsC_}aP1#^)VTQACAR{c|6-?7(V7wr*GA#FOf5tO|b8)Rg(NhXbs^vxcctNNsniJ+4 zF1V+4Nci8G*IHUeaJFVeLPdFtN;hq-<)&_EQH@avg`%6CdE6z7{i52ea8qI4QmNwc zr`Y>QRc2xA;{s=4t8jUu2O}OZxwmvtzSEiF6yUar7vTECg;lL#q`iG)?Wcz#C`-Ik z>HEtd*R(?7xeO!uUNAo-QpJPG1W&>^#+i&2vafP8&bNIpni3%#*uF2jnDeR&OIpk* z43P-EQRY{lC4P*z;f+|<)(>eV%s5}ZCzEcud`WH)dF3&qc=n6HXF39vt+hBs550Li z`Ihgm+xC#>DJ#$R77j7<-=Pm;S(MDIM`z0BZQ>RtR-e^EMwc&%Yy967ULtyKu3Ied zB+k)d1$ICA-G|?){_oKKt!?WlZIwU53bBkY`985BZS=Q3RjlO}7TYRGje2ra07u7L zFTaNfUMzMJAM+vAVSDK?OK+o3yushvpR+I=g6o9e3hJ`}15pqR7MukJzbOZUvffN^ zJ&>($$78xT=$8zAxjsR{qzk{&pVc^7PO+@$o3=G;2wIm3V5#`nu-HfB!m?%<7F(ij z;tKOA4P&)c`{ue z?{_NWuUyk{No@bLFq!g0g_hP+1LF`3qUrn#t6Fs8`PwLckQ@>hSG>`jtrN(Kw!zWi z(I=-eYVm>!`wG0MGB?M894SwXw#2jc5$sWGgJ0`^ci38hoG7MZv-Q&$FODmY;gk1a z7P#CsUluRDd#>jA0FkPU4E`l@Nzk2Vb}QENhr~r#*2|M7@v&6rJb163s|WYo&fy;X zIIMv`C4kYqn6&q zsN%Rjgypj)p!}mTp6hDgNlagV&iF;lo`*t7pST1oB$S-$ZsF)X78A`7K8LkSH~Wjr zIC%H$woX$`6)ql2Lub}%M4GF)iGGajG}XD|pYjvPCPrd!bt+?+`if4o_(us+(P_5( zr_$t2ZAvgjEaY`WG^XW|Vu>x35Dd`J2c(R|Eh{Q@<%jUE{1~G#0f|XK`7gz9jo8;F zKb24#i9go?ENHx12)kodB(yS;w`5A|NNAlzaHdY~09L>64PS~<68@c8=C-5YTM8l} zZsW7}JL+ASXICJgO|6`n*E5^g&cc#{O5#YS>Dvi&3kX~>;?;KQp*1qU%CRsmq8cB8 z?&dx5p2Xqg@QolpjXcO(Vf@fz#lRw{#byf3Dn55H$#}Gsh;w{wpO9Hg5Ak7{1+gEJ z_sa9oR~J-S$e$K;n&d$tQsS?7OXcYYs+8v4QG1L8i z6K4Xl*pDK?n+2-TT$(CB+$}F4tRQ5S!xgq3@Qg8)J5_A2<_0^bLdw}jo9z;;(X8#^ z!JqgPvG~Ij%6AB&56#nv)I&6bEhplQJlzD zSgn59>cO$qxoBzPZ zffWz0a2CLT?ujZpF<4M!1lhSwWT*4bOr~d3SeZFlhd0K7+hSe&4DmsZ6+*Ged0ZN-|5H7Dc`9}F3Vma4`oS7o*xHgX#g}z13 ze0&R}#n$tEDo#UqocKilb#@6owJ5JTdKeU5c)FZt670Qv8#t#CQy1np*W%@P!$n+Z zobu0ABN5l#$5aIOQ!yd?hr+Q?{{E+&P0mJS72;o{nGw=A~cK z5pt2@Us#6MXr`+El9OZlD0|xYJtaQE(4rv}qafS4<89$bi`sVdlsw|kIKoAv;27Ag zmIBoB=LL_=*<*pv9_Qc?c*V(Q=31iO3F$pl{23P3Id_f+HgD=FY$zK%n`DaJ7}|Dt zdh-rD30g%BSki)46oaUPHO}ligxGntx8E-3mut)bWGW~5gw;=WUa-Y|SZeKC_;ZMo z4!p5YK|#)=gDp;bYtcN7DkL3)#S$8w!C@F{!9uRwzy_8vim-8s3J3(3Uwf*@<%@3? z+N`rUaY0HP0Qf#0v($62y(QY)_QU=5m9$ryCQ!PmMk~ZHy0l4%m$${asCughc_PdJ zfU&Ko2S$IoQ5X`HbVJcW{s_l=MasH~OX*DXhr8Zqn*uIkiMqCs*FO4oj*jkoap~Z2 z+0@Xu!g#(eL}fvkPo>(jK9`WinRiUIfUTKGd{C(LXI8bDkv{v0rlz#?JNe2gOg3rR zb@!ZDjZgIH5ItJE^opw-+;^FR$(aiOz8ujH@AJXFmDZZCf|@SLCEoh1H=sK63Ohwg zI7+%GuV#7&7MoSWk0=cf%jK!aC3f|j$mxm>ulbhyEsol+sA^CTZf9?b_UHfiMsZhuN-WovZJt zO{RNyy`;|oN<7_}cVj0uAy`(hrifG(9s#-f(rtdl_R>5FQQGrMHiL8Ut;AJh8@VJ& zc1?DfZ6Z0F={*$-xAvCZv<}qe`HydjRLgzPwi%6xUziVQm$zYhBDu(2->}$r<{i+t zd-ROH7e|kS@NM&!a8DiUTBrp+2qA?M^$4rCo@U{mICGQ#Tg5Z5zn}Kn*my~FBm0os z=QPo+m=rcbv&*?{nYaI(yKY23@agEou@?3PG2E7x?fJ#mS{sohCj!)U|K=7hl)7JZ z9Xk#3&Tg&QxLRB9bY?!p_wWbeP=wz{@n$TPKNT`vWk_aKU5i6FK%O;~G+@d7tTW&D z6CKcP*-D z_+%C!UvDV@(&@b<0+11&H5k9`SH4b|OX}T)o7sHPF{axwc=3fX!ad^WjV4y%3}@45 zaVR`%q|9r_l;t!X8gIk7#O(2>$R5tO=4_m>5P_((Lw&=gH*(Q?*Z2_hK)=&|1BCc> zS)r6YcINRKcWtO??W{qp1imi)P4cRHkl#ZhD@Z5JuNW>FpE8Ps{=2M^hY!~=;D+vW z$gbHJ5L6;xGGO%XzL!PcrLciQ?Tz5rpLUnHmbGTE%X{1|%eBko%aYG^_GzJvx~!AK zAGA;s33V3ApA($XH5!>vEg4o;PmpZT+`n6r6Y%d^p9K@-e&po7)#(kst5c{qWWJ*Q zuDR^mM=bJQfoD=S^oW=pHylN({mx%{R$D=(u^@_ zWVmcV=h6?uWz$2Qoyz;A6`EaYr~3L%8C?6yOzVpd0^Qw|iU&#Haw;yCa=X*T;zZUu zIn6vFSAJc4lrWPB4tW41`eI0|ep>K~fDlVC8Bd zX1V<`BowRhKCNo0m4;*%#z$qMm9C|LYbpr$Oc66NkKToD+iw(gxWnC>-cp#mgIt1% zorlHG4w|Z&-X9&6Zm?}Mm*mKaMLJ05WZCu`KXxt9raWQL@ z<4TJYx6m(4F(f4G*)A>@+&Nm>0X3qRy_Ff7GXPusmV9CNLOdCm)!I8@zX+S$PQ@v< ztNr>O=iFb@cPyJOtyVdeFEFFNt(}S|`IiSHtKH`%yEJ7#XY}OUjOMUA)-RH z1w8=T)`K6RPL_*(Rl-kJCt0>cV?Pr~Hg_6<*PZc05&(%=1SPiY0r%QwptRvoJ@bQP zvgN$;CuwDSfnFv*t(W9{@h{x*#F>m|$2;lCBPg3N_j!#`#`c9lszWD(PKFfl}v;-hI z6)!i1%710hxjj|bqvyzJ27fW&|Hs+NfkYB-)WpUr5;bU6&?ZG%QlVza zE^c(e_=0amON&KXsZ!Vld?6(6uH<%INULqNwXLnTT5E0lts+>|-2@ZBw-9_GAPT5> zFAD-<2|+Nw&zXDgW`p+k|9zk5kB`}V=gyotbLPyMGiT16QBha^N*RzuUef#_7HspY zK+cfv6f^>dvgT3v16j`Q<@v~QEjIZuRsNhm_I#9y2Q~KVv=rwIMlp2}vY5R);|1iC z6?4~y-or*?57V9VYOFq4*=a3_`bGo&qUK5F$J%l= zKZpM9w zOCAK7qMXXmWo1}&Ck_f$1GK4|MXXf@YT5$YWtd4fHp=<9XUY}5jTaHZ7Q$*7!47Y0 zK<^49t{Tbc!Z(dzdbMt&<_o#x(xIA{=2c?79N{+S%D~OYGkY2R<~)BO;j6U1ei^oE z2h|v1p{(iC0OBmc-<)?!^_Fx}tq&Nw=V!y`{oL&Lf&G(g3chaK#3IGEa9ebw!`1}i z)1l*E7Ta{}&|0`H9siPjHXZw{3@ug$t>q6w-Pl2gmY-zP67H;dYstkzFEo&ejL#)Y ze4bAjAL&s--M++++z80s3=yIXjo_kT_fEzSzFeo%&^}SBjTd3RnypLHYKuMF zrgr9v@sr&G_q&17lNn-@t5m!_Q6j$^=$u?dOZ(H)=${D{;evof2CHcceN!nlY71tZ z7~bQztk?A7kRgk~^Z=T=O(XyIw~+9RFwPp(IzxE1LF@w$ADiiYxlSDlR1mD|g7 zE2f9FapQ~^BF1>M=w#?8?GI9O7R+RGvWJM^eh3n{3wJ?G;}qw^js?ANPD3xG3j-oZy}zo6|BYY z-9<(rosX-pAzvEVU>uw!tV5@-LTAw{AEuN= z-_crhlj502g;%)bdlzpLF4AIe@vCSakbA7<0zQ`76W7#VRno^yrXc7VQV4w znMRU$cg5{gO=>(|YCKnqeGA+Io}9tic{s zV&$>odr1Rg9nzA>9ysS{fB0SV8D6dZ3k&=CBSlAIwlFUJfo&f$Un5Ve%|$sj7hyp7 zGA;tmegzYKi)clWUGO`mTEvbhv6}B&Q**SK7kIo)9s0tJT~-2d+LVGrw506cg1S=`A7WuNA~jR*Z@pnWzJlQ$%c*PZ!>qKX08G;!)Yp zvgAj6&hTQPuNEr@S+iGi>xaxs<<}x};pq;UKbYx|`EP=u_4#5ME9?290<2cAQ(X|$ z_n2ps$C}><$dc5eIi)0T%z#*U(aQ{cP%NrzQ-?g%rUW<)=hV1HOHsb^7vuyn;aN%^>$*ps1ksM%H z&<>FoV+bQs?Hrgao^Ns)|Ljv}hh6~}Ejn9j^rTh0MC)NQ)%be}%9bqDNDX@E&NkyA zl9!Dybk*&hsEArr95C!Y5b{@nwsaUya`<#@H_D|Mpzks-5NWO-NO!kZcbgstOJ+PO zCRV$r1N^>n)0s5MIUn-e+2E7q6+Jtk-&;|B7ORvbCWQd|&GI7rKi5`y+l@bGeX-RS zPAk%V#yf?qZ0JZf7No@ODcm$!u9^j_1qMssXq| zJPfI1m<05PDw@=<c+ExSe7krpqirt(Ma%vb@3b-N9LSK?K9E^4lJ_N zdo~%@GjL?~I}v45wK#y`OFv*=CU>F8jKse{OQ>FDq0kYnklEN}y!#(&syPJXbKeTi zqF(a&0-~Sbge2xmvCPFrgO55fQZGIan~Vo`W>zkJ#$RDFvz{Cl{{-W<=R?h=1p!&* zC8c99h6*EUks^7^oX=r9T2eWpVjVU*i%I}}}b-G(- z@o~jAtFu58?j1B@GX(t_{U8LDxeDs3bmNlaWYqK_tLDlR_PDQ#&pOhe&v@zvhTHGS zof$7e#cQ38*XYP<^t@4HDTX!Va3heYWoO^2(rsGLX9Uf?EH>F&s`YPeP^G=Beq6_SdsQ4Bhg zVeVZiZ^~vUbv-mJ6Kt!`xQG|2Yawcy)sDNzOHn4WfY~5os5OJnkZgQRy&=3Vs;d6y-=6Vbo?M5k}MREBp_&VuED{E!3cGSFg*CJV1csAPyco$AlKE1dQ zy=nYrh?ERnNUp|HXSKp$iUq`8Axr8)1~Q+*A2B;SAB_OjDz%*DjcqSI;Ru$aCak z%WYKR*8b`(A}huIV1Gm&t5%#XGjUBi{DI9@zeMoR6Hm|+PFACv4t9v|xaT|j?d4+O z;<5$-%R=2a$V^~Mu^!`x9J^z^=p4E3FiPl?itsRuS?{0b+@c?V%vn@@Lr zA3n|a>kPD?6CXaTXBPrOu1~x}c%1Xf^atHFL9Pu^E==Jc%S9p9l3y+e5nW~^^{GW| zk1>Xps;Hv`+qCAd@M+dLUj+{&R9nppn5~q(nz)Nx;+aV=ggu;>c3EF==o+VY6NK$lxabOQS9=s@78de2sL==z#9+VW@l7OeT`t}}u)?=La9luo7CxKSE_;mh6NSBv9`4(kw5)DCNv|_#me{zGVCkx)SqsV-yoeW~7x# zX9=Hh?986ne*ni|0;OvSjIFvL*|;Ded%HF5OMW~+v_9ib7@Cc9ZCR9TvcECk?En^w z#dJPrXCH&83e>OwI}j#He4jBLLCG@2DPk1zeGrM;Y3Wy_rH*|0HKtVMnXmXWyX-!= zIsHUH-_5NK^luJz;nmAxBn=^J12Ct+?q1arpkWfP0^=h z1@uzmVn~4eu1Pn3O^v@hGk_4u#vE`MXzzYw0;7tB3f`)B(cX0Sr!)AZrcFz_S^UHJ z^p*^k-StwOW|C;JK=w@sa^%t{B7kMHXcxvO zEVt9I+x}O~1r`IpEVqyUicUl*vl6o-G+s?Y;u`Sl;eHz)ul`&fYkAD9FG$ENIutC! z%U~4sA^&Q30|Gu3%KM>6fA4pLzG`2Yhjh4(T&9^1@s5u@;rXBlb+X z-}v=s)T8h5Cw|}vHg*=b1@#Y&CTcmRAAXEnWu93zU_VNfKB!dG{YEq9hzwL8P!oeh zhd8vKuOJG;shb{UG@Pm+hKAK_UC@^PXKT&Tg|*5?xL-BKctDbn zQ|$WP)NhUw*z|)4JUwkZfB2|1C>_%H^nTA?;~t=7v&{nDM?a)`o=G|KCiD@vPhniv zq!uePF83QnVCzlzbFc(Rs!u;O+Ir&hnVNR(?$wf5W38RFyCpZHB`|0;8n^24xj);G zHh)cy3@M61*8H}l*bOi~?>jmO&yP_vj_Hvth&yD#PhbZSw21cDF$3yXysNt&oJM&Q z({lV0W_rK=nP1;)$o&ZB*PxnF@+3O+I=#KW^o0%)(|AJR9u-LKEq5PsZ=%^k6Z4ep z9=r}D%`u=Y`kWPCYS3)-vhgd-40Z?f7(Ye-l;C5C;Krc6@ixVlZp2%J283-q$==mv zB!NVak@sC7I4{N_ORi-YzQ+hd1!u028MX5G%#4aXc`B0hx0Za(#G7a*$H4k5hIF^r zXTzw{D76&n)5&D7&&IMobtdj(<4uUR9xvMd2-f666dhUz`}r!$Lkm{r3$%0oN@Bby zDH+nr8dbEKXO+j;EC~tD!HNm3QpB_x;-giWpd3(bH#$@yJU;?@-W>wv84?t15`H2H z_u^*ec+%p1p7&{)QkwfQkRz=J&hv|&Yg{bj14*U)IN1wEDR%;BSm!76M*Uqd7Nclr z1Q&3{^GYNk(U2dA*X9TG(mZ)Z5WKI-X6a*A{}Y(`fN1UUp^!pv4|!r+LYkW2^iBOG z9h|`rAH*4Kx!^(N#1MkIihtNR&e7ZDWKLwlTePSvykA0+X4Wh5yk9R9znsueIrGVR z%Dj7c7u_ixl^7tI{p4CM$JPYPm0$nkd*?kknkUERhJr&htX|F#jX3%g=@G(t+Ht7R z?;v@9>4R--9K>&u$E$hNU$TEY`%CZPU2;|F9sQ+$k$hus;^nZTxue5We;CmB2CCm? zBClqz_4B|P9f6v6LuUohD|)*E`nUyBt)91JaP4Y;W92J1ly}d11H!y8)OlLa zL16tudTB1xEF@f=;PUIzuM1A`5syI%Vb{boWB~`)&yr*b=a$l+M8sA3J{#upf_no@-d3W{bf*Q ztDunZ!)kf+cvJ=|72-ws6W`~u$l)QOlbrELOb^GNgTC$@wNPB`@MGSU=-83*IiaDQ zE|DXV!#SaoB8T0f+6)lR;);Gh;`Vo>?s4H9uzzWM6QG9GseMNrF>^EQz8k zj)T>>E8V;DRPeV1{Z4jL#Fwtp`1H?`DKG<5nJi0gcoeZSm$X*3TpFl9YrT7IVCH$> z`x%WCTLV#BI@xGhb`aQf-4xPM9oZYs55|jwH5=!Z$OV1A`1Scy+?#pV?*1Qgdeu4X zWSO_dlncIkjG{t{3&*X|qVEf+#GD_y0;vxlKk4Mu(DET(xf<{Jd_z}`~ycD_(?v+*@vErMtIdz$6&E^53Qwlm@* z%;jLTMedj1jo6VTw)aMf&Cmqq46Y77%aAfofUo4<)!bVCf9Z6R0+DU|jB|^mf#V)I zQD`&bN%`@t>CC&2V)9S6CCV8#ao$DVh(+qqu*RSBcX;F3zWAwrtPL?gnSJpqbNyUE z6&tT!E+u5qy6~y+c%d&o#Lx5)W0Tqyzcg1u6tO0A;XuHM;h6y>*%%61L zcmxwa?y6@i4No-wQ7}G4TXAJRC&Ys8?UBR9+#RAty#Uhg$>DG0a5>t!dZ^W6H}X*L zNvfy`dxO|mhq#@i-u^DbuQVxD<-9+~^PUiSw59qWNG^K@q6g#S7Gj+OfmZ|<9@F;y zFv|V2z3jqq3n`){TBO4ed_(eX;XPiADA^i_2Z%eN*pC~#``?1iv?$Giym@|dO~Lyz zKFtWkr*!$^xn;2jlUtXom#bhq!gxu^2^*BJWL?9I185 zf~iT13foV_s0Qb4B(=JG6(hi9cpnyalQ{7gNvBBfU{P|ZkNsVi*2nOPl9%#0&XeIK z9v9Y4{JDA&m31O6O3CmNU@DDl&+jdmZ03eS9HvnMJ@kzF*x#LjS?ikk3(AFlI1!Jh zWVn{%LKovHySNq=Pbh^_ga`FeP_kXXebhTb%6Cr0KQkFRGc#{kQRXaMz6UVFR{$~4 zXY8so^O=M2gaL%L*rl+EngA>S<$R;gPwAjm6%IiuWmX1-ZvXF8hK*#fQWafIEA@F& zv*w4)`6J_dXu_B~;(0UT$`hJk!FvdEl_=VjD@wp*Qt1YlaXVcmqPfIroot6>{M`~G zuDh2ge`!;CIs6)~$-@rM@uw*XW; zvK^`Oks#-eo*`!x^Uq_#oM8OS$zGn!zQJ6t>MvG{NW*T2!|2)R@p>K?|m0 zv|lPgavmf30a8UOm=h6ApXnZ&wBa#dWL6J1>+>`-=sP6#j$_V$v;z_ zymW;KrV%&sf?Yi{mauHTXC-OkZ~4+1AKw2aD^Ceh6+Rw*;c9R3_9JW+tDNr?QzZNj zJ+MlkB#OQ*P}BnDyEmvlu+Kx5$Mc5s2^gB{9~EG;i9Te&yrsYXTp3R=8)Sb&D59Kx zLlgAz>_mzJ@zGC(9k)IsXyrY}3uznWM<4N|`l&1KFZ~86C}|+Wsa?@8{d4O+fOuYl zY}9^&onb)#MVCtyE#+%}>0$-H^m>8FJa<|=r)E>QC>`{1NUdg5Xp}gz#3#|@WOz4) zu26-N6mo#7^#}*JD4*O|A#e(Ep1>uFGV&|2@u^S)0y41ThbPMvv|@hU~E0f@d| zbR8-ErO!&CEv?315l!ZG@Tpba_>H{F>eS-6z)bIifSX8<%{2|^u%Vm-?bXRy&9|2g z&tW;;-a4zfX3F)U0+s<*`Sfc_0ng}zc6setZwZ>3yG(nweke`!NYuzgp^mM3ZKW?> zTUcMyMU=yZ`9lJ%IM&bO5MQz~ShF_#esz*CN(1uRvJaQbo>dPPDI`w*!c*b@H&98d z`)4&@2sWpR=oEUxNBAENyoh}trM;5YK_M=Nx{|hS)}EaNZqswX?TVo=PD@Tv%h?Ddl^uSa}3O!(9S2ysN1DtRUC;T}K%W^#q{1npU0nSC*} z`tHyxKJI@60@QeUR`a(Z((o*_Wl~`W*9I~fqI77_P93T}JGmsbjs?olvd{+AVYxb; z*j9OP(mCY_62wipiZ2*xgFl(Xu?dY6$nOSbUOXXw|FBjNg^ga< zF}Sdmve`H!N-!CoCo&oD;SjoEZRZ=4>?bvtW#~BzLD@4w-^lFgZrl7K(7)?wAoMzlHEOL10LeB3N{rxjC%`Ev@ zz`dd0j#rP9<5esx8=7Bsx%Mpyq~0$N6l{DvUsi{k^eusuQOWFSodRYMm{&Eok7d$q-qGK`w?FlMNx?>`$gU#&8;c*E z`kmyc190CG6Q7m-SplsvDN#I9eHS!u??)wUHv2I?M*7BT%h5Y!a^rvi53zNNu5fN$ z&|HCyhXb)TEs9RVG3smc-oW{iNgrecQSw*z!_asc&ieg z7C%VY2kf%)yWn)n2A;D@?z<@KK$2F^nRS<4JR@(L`&`fwCM-=u%yeNhn|Sd;T%?C0gXl=6};u{TtK1*vnd!Q%dTRjCse@p+zp|3+w%s z77***SP!px&)7VrfV1|~2SXPUS@p>MccqmUq;({B3AWlj!xW@NCvqAvrH-s-#;>2WFel9ssmVZ+K3O6?W)Gsg zmP0BIQm|q?ty;@nPz*Z8*H%VX&*80^ktS!{8?51meK3_SC*(jfw&nJZpiSNdz{twb zI#G}aC#+#3m3D`w$C8VVBkwpDdDB9JaUb`h8dkF;RTTnnOQ-7$P~#hxE7+04ZS0i4 zNH$B2%wrh}u{*M=vc@m4pAtNtCaZY`6mtk=|B6h?=M-Ds$fwY9%3HBN$|W{6sd?O| zkz7N&46_wUlv5 znVDULZjezZ(Y#w*$zEm+XSxwupTL-wr=A0J=)e#vbLs*9nkM0=xr(1=JNz`~SbmzV z_-UBx-%yS88#Z&IS&6-}mKv(I5KzJR8=bfX-}}MbGZ(CyL_w*QiEyIvP0S%s$?kL; zR_O`YUgf!5aY2>U@r5>%RFOy}>33e$;=p9<~IBuOoAr2`|~i<193p4Rmo`ptXWes{+qMaVB1Sr&g$KA^ay3J$pdbk^#r=Iu&SGpp=d;$_vu zp1tNOSUa4q<~4=6`TnG@U@b?Jw57k0e$e)I!xwFLaQ|xMS`LRJ5=3h68n}=msNEaRgV`;=y|C+IX<=UcsO!S zMLG5Ey5qF)R}HcGki?#XMJ7-|V_XwJpOD1N>!8uqD(m6@jeNPn9w4gOO7*fQu19I} ze-k>J8rbI%mYO?Q^gw&0j>=Ds@>L?oO5fxgWMbN}chu$J=}bZIMshR*&4DJfjW9{6%tn+k)W`Q1m0V9np`bGrOpl%=)rcT!S3c*JlMHsBg%+=p6=nSzEnzafjF?d({ ziemv3xJzhs^S&<%-9`Fa1s$RJVsv?c0^FsJbRhG%Z;@GU1MEQIX+S-u2ejCmWSJEd zRo~&a94q(kz4Xu0pE^?w^}-_{`JUV^*hOFdn+(=e^*wr?FC7wPrU`gjrPJ_Ar{R@W z!#SjpB!k!^6m>x^SFpGNp%d$##cQ5*xJmF#YT_}%A;0PTP5)69fDptQ5vwGorc>4- zP$=J=lD3%JNgY^^(!g3kNAIUT(cAM_419+~ezn*J5(l;VU0O{OIxU~LTD7M^j78%f z7R$n!hb;2U@^c-crAG_-w|z{tV%lW=VSx^H4+7gOV4dQM_6wg&*D8K-aPkZ)Ae!(1 z9xD&a-iqMyIcty%Ao#(;V-ZzLccjc_QMnV-D`u-N0zuZ>Yo(Nz3#_%DZl%Rq>}~#n zIA@^vTXZ?-Bj(o5JD$IJm-41XJ_KWF+7#Zz6%sWE^#&kUCDqYoF7rk9s@YlTJ&url>%B{k)%MJOkp5y1Ooo$G4>0D&WObmX`{*%2>FM3H%cotFBtV$D zeYV4VTH2ps#(y2MsPY-ipg^hBlJ@H)m&{~CY?($QqurddwkVeObs(Fwfu;EEi?}`E z00g(tAV^~M6q=U_ZtzzU!mlw$2wIu-br!|cn#tBv&0bn8`mVHXQ`&BuVtwtW`vsZk z26C7?2et9_UaO5?aZviQHtMOAIdc34ZD|1wRF*43OBF|xQqxpw(qeZ4d3=|)bOykq z>|K8hjiao!i}TJ`-@hX@*9j8BKV#ljZ8PpZ3p&Y=Hy(&7HW_E^a>SmQOS%xXh*ARR zLq3@&k@&xy-~azvKlDar5I8!Xvwrv|IDKLL@X9?_;=uahISSK+aX-zpPCyM_Kg{A= z_WI!-pumb>zJB=JSuPwuc&YGZs|oy)vsV+&eT-PeF*#q3=MNX2$PJmP^vU*mGSZgY zIq3)ji&!%o7L@zgsKci$^pTgtqAcuvI>+CYvD37# z6IbN(an^-sk<}F|L6@zQzw%?h<%G`j>0KOhBQg-uEN)Gp96UrBiDHm-9jq(ElenEH zg`ZFF78CfmJIG5lJbQ5%e`}U%lCg}DAmXe&vSXwcs}g{9C31r90quFH71=kEv**#r zN#~4r7{!-9uqjmDXmD4R&}O~)a|kbKy_M7C!bwCQQWKd z7}KN-nd2Ad5~yGq?Brs<6(ay->GIWdXbD09vKzL#BFU%Dx)T1fj;!9(Ijn&vuU>+a z50{K{n$S9HZM?ro@^gNX&jppz=70VelB>;)V;pWRIy_%YPUDpyFmUIoxw?sWSN!7q zny$sahnX;KgN_5T)AfjCPc%CVJsT%!gvmKKWQQs*9<~1BXA{Xc%Mp zN53OJSMe7(QVF|w0DfM&z+9y2TUpMtr%P`$+YrCATJ^Tn;XGnb$FI7tOnanFyZcU( z)p>JkJgNisJ}5iJ_`^bJK2KKD?oUQ({|&TyfFxo|uBIMyGRax|%we*P3`Ic+<~1KB zi%ow?Qfz7dLE$4@Is+7qM-a|V{^$8*=MT)hoYC$jhDl*-`b6w`kz{UXEmEDCrzW+a zSh)o4V#iA_R`wd%Y&&-UsVZ^(NaR@Rv%Cwh%U`nCt8eh8`tlf3q07Y~j-X3rK0Qz} zW#+oe5``^OYSzv_J=6d7)aSJ;I3DiV!R_jow=)ogjyynDRJ2^J<@kVx~auGq$}TA1v!9`3CW9h#K; zD~hd$hbqc>;CQ5*e#Z%p$NMW<_ziNh;{kpR_hR89hM;L&eV6!^s&Idjl{58^0$2V8 zcox2wfAYN6dPEH?@_!&et&tyh!78=vkP*0qqt1uU)0RE~AkIa1SsN$o`*+w-hYBRS z7-mG=TCY{W5uAdaD|C`GmgR`QBn9-Lu-~zU(1Jjhom%u?;2;eX`m!-kei1B0*h~^9NJ7*uMO!1V z&SmcEZba{v^w$%)D~NQN^d>^JT@t$?$#?Fn;j}Fm7X}jbZu}|P>qvT4Y1vOA$a~|u z$Yt) z)8R#0^m$%Xv{kFsl1|2c4xxt(`cyQoF@W~67qgo7x|F@jCYgGdorEcRpVd^+H?~A$yGD3UMhE+oaVzS+ z&9=GJjt@O-?xVH((57!yYSH|!h<+vZJExpZL~3i4NcfX;5MVOXNLR}=6Z5bqWizNZ z9w@2qj%+(b`tRG^-348bS81`EsTKBqmqOMWbphg{I-IAy zK#*U8Ha$nzNVuletd!|ZP=i#7+Ae4akG;w0iyW#7k8;Ksa!TFbBvK+tRv3~XNl7=E zLTO(j@H!MH5i3>KS zS4_WH+$8K;rVyltN+u_Q+%ZLd0K>}g@q!-N)C&06-kdIn@&dup)IezOd~Nw@CxTvc z-^i&9gXJ18qNn-%@L2CAfAw0wyUW}Ly(5R}*}jAdUm|auzA=|E%S6`J+LShKLhtVVNR$laXZu-qMot+Fs&1u ziF|X!`lRo}i`TdH#bRJYjuvZEkE)H9NPhwAZ%fiPo66j2zXp+dz)0T@TE|0TaTJ&`d8ZG-?u9a}Iw%i~gFca5wm|Da+ z8%uY*2lsdT;<+ta^cCs=UGgBR?(m>tA(yIu4Gh+2sCc_RGba8SRA&(3Gz=uRPNNZgy(#E z*Z(aq+SNX~LB+yJLonH03uVRu{P zF!Y^NMA5FuHcc)OE&BC`Srntwtp0NPYR5h;b{$x=&aen00fp|bc#_(K3F~y0u?Tel z@;ol2h!g&4$ZGXn@RHfhtH0s*?B<$SCQm8Xc#cm_tfq{ATu(VG&8I(UmDhLq+#lH) zxvYj!RI8@|bT0)nY@HEjNZ#dtAD;asw8HIPsQ$C2TK%xmheqpO zt*UcSgg^~cBG^G%kz68Q=h79tO4W2>jeuP?oit~x2|mIb9EfPJ$5;b-QMc4`g5NS; zU3!)I4>2$(d8@A-m?g|Nu{@;?=SB`|+OjrS8SlL5?^9p{!V7{2%F(x@6;Dh3X0aFJ zG4omz?b>&d*V@wnXZh+)nI(}vF^yY&ba5h@FYW{M<-o98@^oZ}W`oNHWkCXh4J_8} zO{}(y+wj0^%??Ip)D6=gY;%Wlfh@CX{)WThy_qp%?m&!*?1my#$L@xk8_u*JKl3ln_TNV=eVQX2v@6q`aP})plo2a{NB8PYBUE00dDU0a%8BOfn zlp&%Fg&T9*0&w}Gz{<4JksUO&oOEVn?2a&y$dF2N4a3c0fGnOco}NFzH4j z{cuc$t8M^zelwW* zFtV=U0UBeMt&~%gO~4`3Z24BYmT!7n@8(!?CCM%=z`7SG)6I)uZgBv6`}^|S;g9u) zu(9+JwamEcdy>@2C~mZpb{PLuxkx(Lcs%Q5AK^=WM-sv4EX%Cnx(OT>l^~$nwPp9A zAjNMf=9EBZ9Sk7QdW>Z=)ks@DR6YhP=E#cnFi7ZY+3l}3Kx&2-&1Ha#QgTI}5<}y9 zdNOn58NfjUgwQQKm8-Xd7>+)N&xHYyN;0Np73g!fAw^}X4s*UP_p<`xi|?UllFYDHD7!Fs$b+s_K%EwGO}hv<5`q!sJT~lx)wW8 zW)Rd{R?bfbGhe!J~MEO|y-1L11M>$r8BRQo#F zLdyG__52#9$ZOV%F=AtYyFj0VXJ;pN>b z)Df78Z)l`#z*zPUhBUi@%3v6ONcFJCaHrvxfDwcyaG>ydEa}rOJA~fS@+_nwWjc)P zOI%O}nWfq$s&T(OdU{2zXDxTuH8c+8xxu~3%k?b2L`9CT=6#>OO`F>8tJ&w(F6+RD zEZ@`aB>;q{L!hywJCEjbX6u_bg0R@RQWA-=PmzPLEpV@KuWA!dj3-Yz@);MPXv-f^ z!s@sDnut*N!z-DBttSxMXkchD;{ zXoDzE0r!&Q<)R(B40c<^;SMn}?;98!GUO!bkbSGg7D0jai!Z*YjB&2T#CVN7X8!ic zU^@bQXe6UYh2fEYQF;(ZxO0pZ%-q5OPw^`p@Mn3a`nkqK>PwGtze=%}jZZ5$HFNW| z#4qJ0BLG{=NkW;UGgm&>qu{7QWivK)snrkx1}xWky`Hzb!w5k zYSo>e@QzF!%9A5*CHKftwVJo)7b8Lk>@jT%_eHjk3>8{Nr?t4z{pg4YW|Jsg_Ild5 z!{We^-vbR_aR84TZI!X*<`5{qRKxG%Ix%7>bB23MHnGt zzk_8NQqw(~P4TI<;+Kga8VjQ%3^I5;sc7s*V#u7~Hcq-uy2vz!%dcZ+`1TdnSSAN& zjLolEm^IYguL@;RP>ViBZPn{UMIR};@LEd1^tFxO^2dJy#~^TG|~?2-@gvu`{zFmoLS;3YoGpY?ht- zDf07k7T@ruux(6C;ogHC?l9ga=TGzjcfq+*#7m@Jb;@tF1zDA~YZ-*^3@UP&m!JzO zeDO!RrxD}@%a6MS%jq^ovq^vS=}NIWkQps)nFL8xe@hC_Y8&JkCNnQ>=<4Y>sUG$Z9p5O<>N`D^ZK+%9h#vEq6&UO zD_PEXUWy#WO#LYROsa6B`LQrp)IcosZXQ@kH880jqdpF(-w{?)(G`@?yHba8xf)tq z_B8V>dZ&kCIs{8n_L6esY)0YVpu9_)IH#GV@>}2k-&FqpVUcG8)CU0@Q2H%!n8?4V z^p`GY<6c`<2+|pO^th$`=WO7FM_Ya@x#VN>2qImEog!r(%j3+;Bs5${f6i8$p(L^? zTWwD4qitC3?KeV+>Gt=2}K??s_SMC;d$5d|hsv zc^S3qyNKw8m~}>kQ9vgp?~f3mD^Ij;#A z;)yWX%j$62$MU)K<5yL30KuCCN4N1K^_{5ju)Iof*x2TEtSlvu^m?(fZg{%PGvR%NloDT&P2yFk8(UZ5@a@Mur# zu@UlYN&A|sBxq=|X&1`m^TD?!HRpXH4#Dr26h zJuP&SxfcjBV@DPpL1o!4Z#8WT_sFDuVq|^)#vQ|p8IBlrV=wVdFl6Fwko6d^vM?`` zUm7E|+K)o7Gx$H@EA9tl8Q&}Alj%~jbvhDZ`J5lm;cX#?jFPHLg6x+*<5884! zbxHe^Qso#p-kEKM&VmQ6paouKQn0(Bfn*z1^U{NMoEY;d7|7`mHn6U!2VkMhz={o` zu#;n2l;&DS$QXBK(VkkEA)wtmj0QQ?d*j}+$I-#kjA2nYHE^*Z5#Ekz-JQh~Ufo+} zrpPJU(gVV)hx@gA-;fbP(?lp|)7YVf*(cN@^Wq5FY(>T9j3b8K7d4 zx5-41#l*2B6=YT9^r);owb;3!1q->MBS)Gn>kh<=QpP-ma-!JyZhht{JfjOC5A8F6^YtNcq?b&W-lwzNI zmp8SGA2|`hKI1I3vLnjYL^KM%``sJ-`YW^idf;&9uGyWCU{TS`Gi^YjkAi;levH0^0`KDYfK9g)vD*c3_FbUH8@$v^anl=hpX=1;Mk7JHr) z(fgmVvgJKbHq29;S-7fGYmxW@A~?={T<&M=;R*#3c;a(q`vyb$>v2@q>$;V}t!;x5 z-p472&~292R4jS>52(8Ic3|Qu)t0^n{ZVkK`Z8R?69CN9BbCil6UnO=hwFcyAak)`7pM1($++Ac=B8@KVa#(WC>jfYL9_%XV2XYil?W{{3}6EIa`LWFVxViGa(|Y&erLrNi&yCL+=!OcT z>s0ZWctiAdr*@45Al_#RwQDIyAQQesGigDUc8R2|3*SvxS3-LpCM`o{Pb+*X4#EIQ|s@M&^bn?q>@UE#&fgpZJ@%dhTEpF^I*{Y$iH6Le6C z&QvAt?)@BjYTotjT9<2-iwr>oH9yclCy7^b(M`LHtj4ApM|RymZFo04^J{`h0be4 z#Zk!kOYqsqzX4u8CWC|DAn&c(ApW0Y~ihFz8Md9T-BLOJDMhmd?KfMRrYeT1GQW=+|%3)o*|0H`oT5XHP zAKcQBi7izXxxIuF(yv)Zt+Zz^FC#8c=(}R*t=B(5zhLW=08(Zfg!8NkCj3V_{YU6V zjJwk-7<4^GBMS}~^%4j{FL94B2oLb5m?RZ{27zV=ueyOV$)Bt`UpUk&TGBxJ0RO75 zXYn=N(Q4OdydsOhIIW*@IGC7n#Jf@qqDCWzSL!d;o}G4hmVR}aKDopk58btAuP#dy z)1}sxiSJiVAY8dA`faiJzwD2D;mHk9RGbNye}f0FXP;m979w)B7IAhUSdp(LsU^Ou zz9mWbDMltvA$4lYE=Htzg;@_udgF00cd-^5&R4QFVuVFAugm{Sk_0wI1PGaJD2=0f z>+)S}N`y~K7iES(73%vSmJ_}GR7wKp;2Kn6(KjBi)nc;Ri(gq7>ux-WPoo6TL~+LB z(o())+go-Gzrn=J^5?IfHfpO~Xhx*R{+GV}Q0xSC#kTY+ zULqdNBE19~(%t(&Fhf7p8aXcz!3z3ux|2So6)tlzwUHTaCcs3Gk%B$bPpGEuGs|R@ zF}_qhiP=8Fx@_?<4NG^mJV4<<0?!Q55rXP~*p|CEJRvJ#Wj2zhYn8sBbP9PYH@>dc z=BVu~0=%5OX+nI?#6A>2MX0BGvFT)WNaI-<{L87&IG~Ex75WnaVJM$|Y2gyQ6!shE zp2}%Anm?NW7qePBClxbVINl_G&8umJRH1_5wiy?}*;1tUt64<``*Ti{1)VkN5&H7U ziYCCsuP>HBha5xVAIrMf7N1t%?u{hBB2pVc6&gM(az{D3-aZ+YGjA=dpPBU681-84 zC8X@>O3Fr_r*8J94z@Q16E_hH_5?!NXe~jJGEMI<@##0_OG31c1i!wSXvFoaUVX*- zht4O}q{neTM$M7XXsjEdvu8yb8OtN_jSPCW1s+5j{5IhdBioo$xSXzIQu$h6E&X3&9mUsYt4d!*Je~e9q&BAB$~i4i6+ersXl6;Mm0 zWhmc^LL*7C_xBkz6*8j#g{!g@noR%O`pyAN0a>4y?DWNN%ol2g<^&Sob$1LqufFD; z`R7Z#73~GKf$k28cM0HcIowB}bRm*efIb&oOs zhXFdP)tRTyu__(SuBM(;a<6w6PfDhG@fbVE*i!RT z_34|k)v=>&l{K>sf2pSVkNJG$LIg1Mkl{PZmG!oRiy~<8!Tqm+>YJPn3 z7-+9gF2;FadwG#?LS&s^pPX-$VP5g!pz3o^EhLK=0xW4}-il1XxqNbA`foP9EP3RJ zBjf-MR*Qa=C5;$9uKx#V^e9GiaXZMCMq@2eff=IBSOe`uRJ?NXfT$4qXXMK;>Patc z&5|zLVJIo`U{(<;-qE7L@^d^*w^%y#ZpkXmdI9><805G7RTq3jZYg%BJDl;Dp}&&vtLY`0LPIRIko|F0!zSs%%VDeZ zLrRb0LVCuLyGv9Hji&*9{@8e|<=*G;5p=CA<4>gTHWoa7ysEv#`};*IerLY6Vx3p> zw|W1^6-h}|iEXlbH!_e-Se zeTlhM-lorM7Hp3szex^Xfk6gu%cTDBmY`hHdy{|=%}e|Y*-j5~u*OZVYsc=ma@m1fx)fW`X)v!G9( ziRcP|fHaXXv08Ku9}jl$a3>FbR@k4*BvBv;wuteKH-F1l>l1e%Z6~>_@U|wgX(!9c z5voAA->-iPe|RIi5rsBOzK5aN%h+(EqwQqR+s_?L-qjRz(J4Fqo)1|)YImEwXYi#S zZz9~^c$zIw99SsIMynXcKkpBxokfckiPxuhWduC(52e}b?lwoldU{uu?2gJ#fnVQE zEB*S1LH%tlIssPW*&NBQU7w>*qYa1#``K-w6QPd)%2&&d*a6^D7|iF5HRbe>WYS`{ zldJ}`x<=0F2J`zQOCuxi(@1N6*vtH<(JUh+=6%5IHYGfdUB3`qzmE68xZg){tD=c~ zgYMySKb$F;n2=;(f06Qw*6=;FjZd^K{oCe``ccjFJM+zD3~4{zan!G`!86BUu0bq? zW+e3}whEny(N7UVwcb2xHQh>5VT7c&{ra}_KZS~~@mc!L4DjH{gDm^|>|ngW7rz{J z2HVYAWyn%T>jGH+rqEm(wgmHVT_X2HpT53#^Qh1Jk%k59G1?WhalHr@9J&{ESc~n% zLZv+$;#l5(c4C{*S%x)Vn$IsjI>ZEB!rwz!;m*XHCp-cx=o9~val6TQ7Y;HTDV*WA zSE-;;i37_>)A%FBu@`W=cJv$M4n!1VM*7azqCez4(l;j5CT#ju@})O9{V8Ob z)%O8Nl9Jb*TqXO_ z&KDy?Tf*@Bk?4AxxA}b;aNfv{^7PlJGPbU9C=vYhON-%_+<{sc)bJ-&L>LJ_P+wy%JPss+`s)Nu`;F8YX{$;vSL0deC)NdFf`Q&&mdhBB z>)7RF)Qj&D2scrfBS%Tww98V>J4Cr!B|4mhL+JJ;g2h8oG<)#@-Gl(sH>CP7>$PRrqg{T_df_mpT`hJF;Jt}Sti!~Rr!8B^ zz&}Qw8g;t{DH5Wu*P*Y&tvDodxtO~1J)V9atV(4fS@jed%3)wufUVvhwZ_3-tW)o*mvNX5r~&)*d{AJz%?DdUR#!I!%;@Ci>xhwJQqH)=y9z~5AhuF zg)OJ6wp4C`dyH!k8ut3$f=`Fr@F&a;KQw?3U1O&^_vg~90{KfTJLO9&dqQN9U#T!c zum4N=VP9JQFkVn5*AZF$Z}mtwq~i%E-5-FWm;RHUt4~a0x+j_tzPpkvU5l4NbQ3R; zzOWYELNUcqZN{fUg1J=b{qLkiEMusRR( zU+M7xg}zAqZ?WPu$5B}EPxHNso=rk%#cblo$rDXm1h(}vr`S#N(=;5KxxCD3J575D zcPX02QEa(#FLmf5Y5XF?BLsg#3FKNA=WPYQT-DEtGfwWoo%T436eZe)skSnZcPOUHk$$>?YQLEKBVZ^N9LRmYOn=JXcMwAeY_8Kf zHuphPd(#c<*6ej#^F81GK5X#!3cFKlRpDJ=Js@AC{%C;%SlTZV`p?^Gp6rjbP7&WRkx|}Wi8_SW zn)qSK2$InwkqL%qEejcl0-Mpp;bF4{C=S0wjH(Hoe?65PkYb3o^aP%yQFARve&C0q z-uMtSgO(dWBaz#b@Oe32%~dE+VIrXF<6(qj-j5!Gy%USs2bAVG*ioms}DCn;8mmm&eI;|O7jhjkl^(7m1CuB%mW7@)}<4MWKTclla$Mv z+h#GjJxEcJI~FR)9P`(pqF6-cXocM0XcEgiIqx9K1QZqjG?6ssVv2*ws!_a144HG^ z106q!61s9OEM-Bs1qdjyfL8~!q?)l*Bdj#j=_tld??Xx>GezeN%p4$D07Un(4(ISH zSD`DMPEinF0Fp)I59B@5X5kc@D^`L`mK+fh+MND7zSxd#_7CwvKP1lM3V->|rqA<2 z7xg6nKSS=lV-kQ-McR}wj7aCK@S%SZc@oOqx~b>m!5^Gj!IFRbE?VC9pUUaWyD#e5 z0|v==Mt#6o?Me1*e`kbvmb|yE=>vc0L?U_i4F&^X4*F!*=m55VkA=TA4?)~7t$c4= zPx5#3zPV|KRn3fIdPBY$J)2=MvUc$L0bhseWc-ej3vb6^ z;B9SrfZ@zCK9IN`561761!wNXLnifM&LxR4qo=q(WVnhsUa23w`&3jH7;%giT?Um! zg1tLM=e`2e?*aM6wJw}TnS4Y!J+|itwZFI3yOTjZ>DQA}JcJp?cH`MFMWS$DdZZqY zCzkA7%KV@C9sc+Y2-+>-3+i!P;9BhYmHzlN&b4%hPD+o+%;&ziy2groV~ku-C*Qo? z`t2p^P~dCEQ|F3MTXdT@F&Q)H_UdlImtC6NxSQoF!B3Mh_dyyiE(yl*>BB~TL;{3fDn3;Qb zz}?orBVNNnq5ks5<5!jg28K(yYdV+o8ck=3MC#y9*ucKeOODL{IOri9y6hOeg*Rz^!uPWy+^sd>Zv~y%RMg+%FfzKB+%1y0 zS~hIC%V8$=i3KIz)XqGjOZ`%!OL0<9=CzAQNH^G1h+j_=e-cp_pQ_GgJ^>bzX@_8o z@=^s8iZ8J2qOfq?^aq-+b_+Vi{N*y%Bif06YSE0yl3!SDeF>1|3W$irPOQ#^e2W1j z{hZjFzF6aRDl@u>llfZ7oUr=aIj{=G5}l&T*y3R^ERkDh)oYC@aj&luk3nHJca%2rjc_wY2m=<|ogiEkW45+}&( z@`i#EzeOLDPAmuKcWq;d)CEYuUYBQBUpbjEriXM6;-0@>aMYISv_@Z#5->+dnA%a| z?!rWBT{6&yS9uk;J6L{#YV;b<$2}SsE*#{$=m7*0j@dfiy!Jq($G%h7ju_k95S4hbk)hu3K{|ayYgHdd${) zIG8>hFrOXIC#BZ>vi*#9>4`DYri5 zjeL+#-tnO#rJjxEQC_1co*#o2R2V-TN@%fd*4rHBV#kaEbsw#0q6rM36U8_5g5QgA z`TRAEdyJssQ!6KdXVd9x_&@JF`3$$UDV7s?r6-$rxm>kFgr@=pU6?4f==oG6r%`81 z`Ra8vV1_qwIr>DmXv3$`^kBU7%tut`79IYbj6aZsZIZA}cQ$$ir!4H2Q^NtQ?y|iN zui@cS)sh3UbEM34Sa15PpuARFD!UA%pLZJ|srpU6;7Wb|dTr@l)X7MbW|LvW)ns5& z^Aaq=N?bD5{0BWXt95WO|3I-p*|lYNlN+8VK6yKvReNQWyetiH@TwQ3sNZ(RMAOmqE->3J^Xpjku?{8yriv8jmowVyMVn)`Yg9@;OH z=833$t+|&b^d3SYdHOi_X7S_VvGIpgM9vWkdCA{LsNz*vF1ZuOr`a1{?Hco5W7nkU5qviBc z^#^W(s(~@%PGu4?c^|w-0D5)SAbi+$AaAWV)}6hX_?)C!t5r&b!DQLu`oksDCUE6i6e1c z-q8nSq>NdMw}LGOj639nKYZoPU2L0D%AUKhWWfn5!AG3()#Qmp5^~5th_6HlTx*U+ z{-`0w?t**|Ks<(-tbBX7nhz@J{FQ{#+n(eoAEWOwyD_VP40R7#|p(kj~94HYrguT6$Z89i*%w5Zi+Vg&^n13Mv)8 z5bPCtLH#D&ZP*!TFxyCz^$v%KjFwYGOW8Ku620M*p$9(RTn7m94F_Ft=)W1S!Za;K zu!C>-(`x8vXZVjjeukqgjpxw$r_?S}Pi@OBD!NmREfJzO^8wC+nVvfi6pXv5TR5#| zFWjq=Xo?p7g?yXAH;x|g+5XUJOd$#T!2eeQ)yd8$qwUR_lYlTVVn@k?}C6VTx5 zgIzq~&9x=2rfsALB^cGT9Qk?-buYaplV!??K08mHL?KJ=lxkJB$&{wMrJ0Lj(KU2DT&88DMwg!$RwAVda$dCB$M1qPkUIU?ULtNBO*kj3DNS6v>fUTjAkKA zd2R8=1(XE7W~>yanJxVseIWZHIg^nRC+8OOwqNMGw9MLxoKMWA8Qlr3WS#e~P05S^ zRR6=^jFXHH29B7*gq_b#ecALa`^R*%64zXy)L1mxnH(aJNjFDj=@4bQs$ zSLdG*8EHMFiZ)*$6@AITk|R6BP<1MdW=`GIyhOGMQs7l_Y(7Bqq1vetZ#ykjhvvz6 zi?3F5g}RSJe^sj?8||c$QmcPQW;y{ni~y;T0u8py zxChOuGaTZpF&)CI+8I*yh+7%#a-_t?{kOO9>5z*zkccJ$Wf;nEzKB2L{eDQk-jFaNa!AI+2PG~Cj3VuvQsLe*R zv7o4RkD|JMLb`q_cW+~$+%iSDm~uGhh#i<^itv*B+j5ARW%J`SqSXh|OrNwnP|oZ1 zCI{RrQwW7AHV2qIS1;{Hd6i=|3DHe>E#+1h8W~lYSfq7`m@1)4?OijepY#&T@J5=I zavbr>aeH3BV5L2oCW%LSWHw(VPwNn>ozjor_&V1)ibaR0`uP!^!r44mP47)%x%}9U zg=Go3L19^XC4L50rq>3Y$}paEGr_)zvZD&{x4L|oE{9?Q1}Kgo>Sow&9q_a?L1@uduo z23`>&K%wt)^zPZvcdQNHO{JwB(MN64f>T~(^9KrB6yFn3OTL{I?!kU0{8gR9aDu~W zTWGNR=-qRw({~dt^+Ls|iqLb&#N5NOUHGf&k51v-Z-(mO_p0CH@PqKaZTom@JEjjs z*Sc+A@Y|+jv^AN`QzWtEqs4LIMahXb_F!CD%gdg%IUGQqy|O>^|9El;MgGPFKJy#= zGW=HBdrObWF5LK}&5hx0sbB8+ZbEows2@R0$mG<;kXRqKjuK`y7f2Jewwt7n29)u}~tCa#c{*62IKO(R~+Ox?}=p?cq8OM7qIM~q?1_BNf0N;9-Hj>hYS?Ak^B zIJ%l4lWNvl==+@a7sDGvy#7g3I3X_h_sq1G#OlwbT*d7|2hD4g6s(q^>}|Jsp_Ydd zn{DznOmxzdh}d!2asuo7iSmiaUfa0ae_Z0)DX6nAZ5wlBa7$JyJ3-&Ux{4DNp5DeO ze(7PQ&z8K)PUY)8`_N-gO5PCdp4yn!nt0O#q{Fi$rImQYmC%gyyqpi*3ns}eo1AMu z#1P(;p8B`6cX_Q)6@yuQ)b@k~VyAX2>?ZuOWny_eHZq_~At9P(oGSX_)9`y;j%3#3 z@|06#SfNX&J`kIOmQUabq3<|p`S0R_I8tb{`9?+U1#O{k`z2oYE!J6_(#?ubR$TQb z9FMh~cTI;TdiWFqTNph!S~w<_zTa%b`9A$(2gjRaBxY=rRU*={SMAJMtzGY2@LGnP zS;h>Rh*qnLgsB^tkUlaXXt|q)Aiy8|rzrEGX&Cb)L)Ey+oRN)KV6n&Z6i>6391> z0hvn+#rLyGgyz@P1XcD2iCQ_lyLp!5pOm`geN??pYQCBVOn=US)QBh2Yy(O@&O}^& zWR##0-{vvguFIdQpsOeuQbAYT&Lh(qL8%T!#v&`QU}N9y%(W13=(xGr#tY$}$s%)>893{F>fBrZQd z!bzjbsfSp5;`TJj{^I5Y@L7`^!mACy*UxQDFJN z5SP=#Ho3eFf6`Hu>FhwSvX?kEml1qkvc7@_T}~Y0HGn=cn)|Y;j-EEWIo!mVjo%S; z9hd5t;xktf7aT}T5;MLFzm@uKQ!?Rv3Sm{uo6tN{cWX@ykyNK~hF*rJ7n4U5CIK1y zOvNESWfd+>Zo2tSy2tN1T7l-tP4g5YFy}2wUUEEbdf-e^Lap1cn%&gDql-%0xb#HT zcu7LBOSb72oa+XnNs{YSp3p3>Z>5{Z(aW%o#ii!$1WQh9*U3Of_pI2i$Cjepi>g6W zryfMTX}$z=;@a79a@PF-9x)~-F1S>0{N>n>x-1?&Va!asEm%t3O+KBj@YAd~%F)_{ zfuXU7(WY2Vofs)e?9HX=2UF@YAwyY&3j>dls)}K$KGodwJaUa17|6OHh_{$C7b>9(Xg~Br+ zp{{yg-0^RJv!i;`Y0V+rm~R36gP_)_?~`*-fqXouFe_PJSnJM|ymmRk%Us1bIkIZ| zU(b0v*RYKdtMr=0?Apl*Pup;M*VjEenzPZ_Ui(MPQ^GsgUteQ|o8=fD7TFVaM8n(U zLzLl(tXF65*NzwN$xQv8(Zu(e8=B&?YSXVtU{Fn)7+}>j!t!yW*tg6u?T1+p*gT0z zhu#IciC5@(S&p6D3*Oh?A4#uqv-B(@0NU0G`xmxke)9&eZJr_?fh*`=4 z)h3R3d@*jzrV;WPY(8B+cm>|q9$R%xob^N!k5Y#uI_()}ZBW+Sar7aw?SNC#KjW6q zNXsYC09otu`FChH8)I%fxcMjkIiKP^)c7Rx|L#F6R*BK zgQA#H!faK2x<}lo)0Jv3Vz|UE@$@%j%PaG@s{NbwXQWyrpJZ$r$H6Y2#8rQH%7V{n zuF=8asaUH~i0C?3kV*f@l1;sHX#DQQYrc20jpXQaqhvKX37eYU5BxaJs-DsJhiY{yQQ-IQ-`_&DB^dO)}DH5VqNONrY6G*aNc z?Sy+)a3#pzLoSzj|seCLn*6@PyxD$H=$6*t_Q0AKtyA ziERiHns=t8?M|$gE|^^#v`-roJT=oPzm)y7U7R81|5P}ixZxQb2ls-%Rf6xLjMHZw z(>zOJz?iS5hqRZIF=eH-20z=}17@vb@W9pQGCK`8)Vm6_gG8n0vZZXU+Yn8t{%c|{ zHpuLjy_39e8s|f&WK1>bxVRCb2S%|3Dw{6 z?);m4K~$~2-btLKb^o=*&Ge3hBA(3240lt*Cea))j^Kj_O;^yQ%G{T(6=QQ>+B*rp z6S%qB+>PKTUON?o_|%*QQEAuwEaBqDvC?8o7@x3t>KWNmJ6Hf$3bY+f119dLNmCs& z{mIFR&#-sB_7}WW7d)aRRfdav9)`?1xq4q}klfSVsn}X7_iF5@gS2AFYuQ=3MsBI?)5tOT zi<#kRe>2;nQeWgrC)RYIg%h64t4U;6OQ^m4Z|*+Ic-HcWxL5nP)H?ok-EDPKJd429 zvQf7`ukqX&ZG4W^x>w$ zmosa|zNFN|(pgoX|3_@&vuh5^4kx@6yo86mf<@c0C-TIWU#REn-ttWvju&d(ZR#xL z6@w)yc=ex7rnb-P7_6o#bikRiL!U1QRV%Nji`U`Yp5cXk0uOAStX8czPnPzdz;l?W zK3JzN{HA&Wx`2CGil9fXJ>o?)HoPRp(Qdfo@bpyPxJdrBdT5xfEZ?&AKs`HdTjtf@ z+EnYr>jI=Qj%bUIor^ckzrxH!@6KZRJ~HP$(O;cey|`zuWmE!5nYB`|3uo|xT=%)0 zz*2qwef(!-mpl#kM-C4hr}IGG-m&L4_aJ&^ep=K0z)+PR_i{@t4`TCkHC{mPQFCQ7 zZG##%gkQ@l+)YGOdQPlKxIU9jX{Z|**G~*5TrVg2WNv7&)6-sE_Sa0A%kK*ud)~r6 zzdAm%@CCGw;d$5f3ok_HA&I7DN}KqooP1<3iTqWG{(NARQvG$+``x1yMa;jxX!=^* zcJZ&}KS`s9I+q`nUg4MZ+N@20HqPIO>uNtV=p-zguw<{W+{yo2L45?9ECal`lYAWa1N0;bLqj;le@20rGr)puYxoN3W0$vD|a`-pHiKfFz&28TYd3miVR$g>& z%KmiY&*bX!AMHtr5B`bz7RPq>wqpkmq0ZOWF;u3txb`YW98Aqu)g)ijl&bSbDQae^ ziWT!%1>@VMZyXm?*~0?w8O>eGZ}fAs)N{{&^q`7V;FRj~N6E7}bywBeBd*5OcI<;J z>o?oj=$l3|8_*3(;AH04qCIg+V7U8y@k*D9mPax-cb|b-erO`|@u6dT*x`NN6pqgf zzaHL|UNb*=!-4KKll#ZzSKFfMHq8_>y5y_<0pyBQyqV9Oi%yaw_-p08kF z%CzprN8p?{GNm?qO@hpyC`@KB!uR%qUx@OZDL}vQ-__(`DCdc+v$=&SdTL`!H%_w1 zs7VTM%c97sdl>_5$mqrQK4w!O=P(CokwU(kDIps{-_8hMoWKDAdpL!JbzD#Q(&VNg zYJwNbTq$N9zUQY4cg}tpVBwJr^%l0YM5cr{G#9A6Yk5H`e5}37=7S40o@8}?16yA= zMETt5hJF|Dp`r_TQ@>wJcfMNaKS4^l?08MD>7Aa|Gtk1h#9QL%pxh+6`hsE1Khyu{ zLra_P=8;mfKOzC1LafA<2l&tF9ZfTsovB(c4Mb+)Y*s9$_6yHp(c+?hw45vzW!8?o zSxz)%ynTykG79+j{@XX!4DPuVtoD z72cp~FBqfiD+A%!eTTRS_Y2?3`i7mT$!F2gFhQDm2XX&|S=igbBk2#MzLOnvDPM)> zIJG@?z6+hpVpbA~S>W_`^^io}vy0D)b zT}|POwVckoKdbiQ{ppEMM?7c`(o@k{?&}@yy=>|eXpbyUcoT0RV!5NmbM?!z^)qY3 z-iAu{~yFccD_mbSkf=e5po4 zR*p!{H#k|bDS=}?w+e#&SE0Y zXJS?+r-x7BBQd-*9eYGf|B5FqPf%p4WBUmi9bLe5^XTQI<%u6BEGqJ3%ci-^8vYiV&~g$m(}&OueiN~@>sP;j(<)Wg4VYFbPr&HnArmhk7PzXX+Z3LJbSZN9Obw*X1}{ zHzCep_DNtR+Ip8HcgwxuU9x?>Re3;7-9iOWGkR4|Q(D$Z`;}c2*K)jvFUO_V&Uu!v z5z^3ok9pF@bUL5YXbmN?FKDA1;MA-agRH#8sqAx}hf=0feL_RQS?lHu_UzhuHz#Bj z=Fs*evvS|)CpBK8B++7Ks+Kk@ZDTr{_7}EHN!^%LJKM_4~HcvT@LKHlN6qkJ=LIUk#&y3&~e(OLZ%Ep-kkDYMEu)do#Y8gmS6s%da*q z9Twikmv1=&UOs*s*ql*wlqfcuq;XR*O;6h%c;qW5zUCvjE%%u8)`_81Q>t2+@mMA& zm!X1WGQpQy^~WncHF2KJqBM}5WNdASmmQ;bVPyZ%Du8VOoL|a|5jz;kEtnr-S33)k zvdM^#$r`0)+p$}ipb(wR%<4AYYn077>@G>o}aK(yrw`wPd41Q(VV6Crohbn&jhJo2?<-u5iQH=A5C8eT=z=O`7XDnDJ;qcfTDl`~r8Xd_O?keB7y9K!fqx)527Wt$pL zKa8hOS;0q3cy{9QrIIGR^G*>71Z7v%RU_VJFdjU)Wj^~`3LCSkU*IL(?OEMsS=n(r zGSlA83eU0@Ov(zkN*L4GBWP!(vY+5v(Ny2SP?`1qWt;i5Y1&tQJ8N?W-b-na34Le1 z)QGpy--dU$d?XVGQ+`SO6?-M=#s%nzzZmhh95Fnu2W_P}vY zb}(rpJ6@I(xqc^2s$_>QE4mkAIxahfIR>s6byP|4m}1VBwiZrbd6X($l6jk?9nMat zm@;CgtWrd?RT4p5LbN7K)LE1VHlgsE)rPiX-$i#xP3wtvDw~{oylDiX>`)|?*XI0T z^tDoSRJo%Q&}Hr@A}aA4-E^FE#DCdEV^6X2uoYB37p|h>lBT<3dUcxrvXh9nFDc2J zn|87a#!JKGxlMeU@v zSefhWK)1Im=mt5hH+ZTvz-~t7jWQ)%#R7V0NdgB%PIiJcs&kMA=pen;Tta}_%adv> zx&*E{Tf$60n&s>Cx?DK_+Xj7fa-3CH*EVRE!50j!HTZzR+YMf8aDl;MgR>1zGC0cM z=?426>|t;(G$GE-+YZaJIoo21gk@-C$pX zJq+$W-aOynE`u)^e8AxC2Cr4xXa)R2G<&Vz~Jo$uQj;9V6nm31}7ODW$<)^eGT?7xR>2P z>iGtD8GOOuT7wTLl>Uh{^6n*#=uL()_Fg_PL@O;lk@R#7I9NB~!xgOh@t@tg{AU++ zTchZT=cv(jhyFA(e8lni)r>Y=t*5E^z4`))J290P2htN$*`;2c)+6z{Z9JvsC zUe3b{`5aPQV_P({_M~;Ca_@33vxSlmx_a!)nk!}YzPKO%u1spWh|Zh~1cQz(GmrB1 zE4(0FoM(i>i2)s)b0M2#D8sv~OhZOQ5>wRUQ+PZ9m%}zydtZA}36E>J!<1hhzgW!9 z`45=i#M~?zcjNwdVlHYomx@_-P?+oQi8&p!l(4ozPQG2H(p&52!z@hnLV=ToTD11q zHT3dLUwwW6ZRO$WsFbEjw;VA2#H`HlhnF^=&bJXwdBtD(CB3#iUnP+Fr)}F%r2gOj zxql*FvMkl{C&~#qmE>i{A2OJiANzh{Kl{7SH|F~8|Mau*F)PSJ>)MRjjcL=fZEX?E zhq^!V#EwqsoU~P^d*o$}XWjeWushFa_xqJg?d`=o|L^BRdyM{jSy^ep{KCtJjTkk& zsI1J&yBbtg1*QzCsI)8c%e|=`BJ5k{9+(}>pY5&kmsVDcvElYP z!_OXmj%`n@^ewI`onI2LQzoX`Bhu1F4m-;=Vzf9JURgDNsGT!w;;`wZmG(gK!4nLW zR95-N*wcsGS>CFkKfkQB++SF-c&ME{+|C?s7kTYTrSpT{(kgFJ=2qm(!$CLe;~gi;J09bs>(9kAE*iz27*;yJ5X6^msM8Gw<>*wl|?!$i-Q$~0U~2p zR@vS~zACR@qGnfky+wX?LwSD1V!O(e0l#JEl0L}2mmO&P%*a=u$i3JMTlJQC;`kNHho7CtLQ-6AjFMiAh%$*vE)EoLg|6Fy&X`vNDz_hjx-xPAMXDZ z$-{l!k4O&oZlvP!e@*Iee*^a&O8Rqc9^zykI)F~UpWl!4lwYTNm7z~U=U?C0&)6TU ze%%l869?TB{`vJEKJb5+P0Emfx7=4*m0z_u)k+z%ARjhAm6~5xS(smD%`dAg0E$b! zWkpudw;;bP=#`qH>Wo$HrCJtQxfxSuORScc9cX**zd_P}uC0rlmA2Xw0x*}L!;H~0%Nxt8vD=MuBc;|boXo;nb_ErS)rPa1N z`dC<5?#q{EexdSRdEDudjstvMSQ;pi09oFuD#`o`Ta%LfilVYox`+-TEvw8g(qSzu z307QTrvRMJ|qJTv;D!jt3T;Q!LE~{K0<@~1;M7fYqK^9!pg{gSp5 zhsopZg34e;kpxixe&D{isDl(tMLx{OT%$WcF28h)m`pYl(hPq8a!Jdi)%+g?nhEx^`k zBBWJOBc#l`m_FTopzY<=2imrPDfehD=Kn6)&9gQ=aGRRE=uafFo z=3P`uskRvlmeU5bkLYyGl(s?!d1}l?HTL?g67Qn?B5z@7Id>J6&MytfD9>9M@D^D) zJ}bj(Et+EuJA?k9j834O%BLG1YI2n{12h@(Aiix=QCwP4>My~C3?ZfEN}*m?QBCLD z`2ky=W)CV#wMr{!cuI{c?F*w>hPTqebo9nNp}dq4Cw>gRYOpnH=A>bxb&IH@M&IqV zVlI9)IOe<8UzqRn+J5hqL2pH&*K(q0?A1tD-8_KPQQc4fv?Smr@D$@s(BVJlzMtbp z{1bO|_}|t2q3pzsi*PrrL)IT?i-Z3hv5o&xiSv^@59#{6|G&+x{{zqbu{h~zTZ<1I@*0{%pZei zAt}b(&EP}$S5W26zrrf2w7g}0x-I^d7F!G}tm1sJppmnjDX%rZGEix8nW3~&J|Xm#LK@b<_f`z0FD-xl$Lp|Gtab!59e>Vb^iI*xbv;C=UYqp zKh_#I&Kfhu8tbhr9%qf!4JyP8;lzpoHlSO;aUGj~E7W52Tdf*jF!-XuR}H>y@J)m7 z8T^~UPYr%)@N0wL7(8Gw?o0ig?go1rOf=Zn;E4upgQpuDYVb^hXBix2FwNjtgX0ZO zFqmO5)8H=*UTE+VgGC0fFxV;4IvC2m<&{;7ZAN~~_mpBo4Q$8Q1z236dX<9G`Bto# zlzvQgPBNgC{_7`x$q~k8$Uww}EH~l?bC8)x9#Vw(kPwoDT(jvwTMe=bnTxDJ)*)Mv z=0nJC?1nFzQ!&*VRK`?w(C`r>=Uc;EBhET|3K~e(<0{j3bD)J-95GpX&?yONw=|V}JYCFQcd1`oBkB{};n^-@oYIiE9z} zWjOab_!H^y!AtGwbRYaji%DF3d^diM5~iz~rN>YF4*UQ3Q(B?_!GDKN7ni$>eW;5$ zX3V?NGczY=UfI~Bu`|n-bok}*D>-fb`t{2{m^m}4pdg_j`NEvzrc9fiVP#MAr2j(y zpQB*Hv}xIjOwG!+CTGl?l{4F;$V|_KSvg_@$2BQqPBZq1rH#hNg6+DuC% zJ7cOfaoW_0o|)DKQ*x|~3$1Liv}R_^n5q8pTx+5yJKLJ+$;wt_IzgH~)tWSIdiJzw zIf6OUGjgn%5be;p!mZg^cr!73+KgG#GpyO3>7MD6t&BM{r+b8S{{3mMZtov6_@u!N z246C`-Qe2>KQQ>2!Mz6C4EFp+`+JnZz6MV)c(TFM44!Uqh{53o&o(&P;8=qmgBb?d zF|F2xrWl-VaJIoq4CWj38Z0q*g~1AgeuGyT3>gd?tTVXEV7QG;v6Wsg?HOM>{Uj;m8b8)SOJAs!H<$DvO!viDzmOs>fB9)gks_^lV8S|vS=~0 zSf;?te_0+evt7%-7)9J7tvid2EB%(=TUKmFdCF^sh#mcws2j~zki;9TF1M?ow9fia zWua<5$}-k=+QS*Fa7vTyUtC^LS!R;;N1->r!}%R~g#7Q(1C4)o>2iAYlwQmE#mCFX z01x$(eDqdS2IrTc1(Kmw7e{q`*eikvCh?UQA0qs}BH~Z9!@U71((T$sXQ*?9cd;7a zkQ9NzmUdJsg+qpPGNkWfH8p=~mq7o^#;8Z%5}jypljB8hu6i^&a~b4YJ~W}|RqTS& zz`|1Unu>*%U9GoO#4b`<110FxN((7la;JBp;|YrQ++5MO0%goWa&x^`@-M##Em5vN zSit}CAnUZ^hW|d4uDQ8Ir3?69s-Zw>lyVE0)8ytBEK=Yvkz4#FVil|?mkToO;SuVe zJWQ*jg@_Kf{pUWQ+udsn)*8IU;GG8VF?gTBhYU6tTx)Q>!HovD7<|p(E`xgv{>@;s z!7mK{!{B~{aR+rcdl*bKDD90}^pS#5P+3{#&95-Zc1P!>ic73EGxw9~Z~3ZZwrE9- zKg|X|Gq|WtKkpyLyx(9qW8cf5Swm%?i;42Z~{}oxueR99n z{G;AiszPZQ@-3y?M*pu?kvoP!ssVjOM=MnMRY9MqB8@Vf9>|iQ=LW1SmgHpJS{6BE z=8~n?KNO#;)<$GjU&{Ib8tP8Ivhu)l4)M75MC_n%*A>mO2AhgInB-(_OidI;(RrTj zV>v|lnqZ6GDv0^?eIk6R& z`ChtVV^?f-SnQxNkOhu{#r7|~Rh1pDI8D^xia~>1%nB_ld+5P7kyE;eWB*@4@k{Po zV*K25#=$m6oaYSf@;tF0i3}z)2kSoGE)V(xc7d$a7)75RE>*R z?>(fuIin7?m7ROA?R;biyeG11^ue|gq$jcp`ztulZwvf{a}KusaU}I=+`+bCNapy1 zZCPUuwkh=UD0oZq}WTz=sKP?-6eN!Mq#yE4hEwS@?;hoPDru?1+PH{Wu7* zi4$xVAt^{XFBtShmT-Lu*FMF~lgQhcdk(`LVbq1Xb-czO_D9;@3K_JVPE)JeWgCd4 z+Cy0alObPKeg!J`L9;B1J!vKzLpomIew~uB%k;6bYKB^@BB*<|g2gOh{=l8_#xxd; zq{xn#C!H^LdZH=l{<6}-4m()pTEmuY9QO64b3?y60ovrdoX-8Mr`6mgq3~4(| z-V3y>%Hm?bH^90^k=Iu#?Ty^Zx=Mwz@>|gaz2B^U`Zm=Te{9V5Y;FG1n3K%)y~dm~ zQ(yninCo)1d95*b4pkQu`-&VJKPx?jCA6Q$Vz7_3Q&!-H$1V)+P=0k+Mc*G}U?k&o zR#K(yW65(2lYv~B8E2$hxlA2};%Dz(^nhyngYEcCUm{DqbLIX^*(p)wI5K`R%B6ah zn-$_gMZHmis*xDOe`#-~sK-yDFPbVto>Q&db8^q77a{=Jvpl&|r^$AT^Wx64&O0x* z#m_7#%5!D$r(+D%f^0FqsR)hf-3x!_S;N`1L?%hGvT~&t5MwTvVhJR%Z*Lt;IipaN zScU4pih0Ke(aOgj!$3#xaX57ze$N{}od4$;K2IKMESwADJ6aAOKF?1n@~T_e4;H)q zhZov!8*W^IF-w(RIi8uBmUSwZ*?~tG@Ptiy9sJhTl5`Bslq2y=w(Ci9PgM8M>wRAD z@x4#&J*+q7nx(t>Obl5Elwpj@Y^S*W5a;T0+ghm6S7givog1oHd1G^$V~k-+PhEc^ z7wh|C7YvbL5FMsSQqEPzbaIks?spaF`%8>DDNmcDhjrc$y0b@T^J`tqq3)fpzuD#f zP7m*D=uj`6OSzLRQ*TIEXPbhqhNYDj^LSJ680(Z+!9ek7mL>~=^DQO-XP<>9b}t>C z`a5)d1{ibHtIcOP=HF@aImX;@iXLB{XUwfH=^ImYa|OPif|J2>1bZf{m54|nFVj5+nl)cWG7XT@!fXKL2OF?O&*#?5NI z*|Z5T>zvO7t(Xo(kU z)mUmhos>A2S+{ofgPVDnY8{>33hb}xI*(O4hk{^nvA3$j>VX7_m|3j5%hX8C={j#` z(NFAb$6dWC2(s%XP?cZkEr5-oRh6Zp8D(@j(x{EG*c4>hq(^M7p#sUx8fA}`8QjOz zL8w(oqH%bTf@gvJ(lV8rehjImBX<-6mWfRJS~$(aglThhQ+K{UK+9{niCdL!TB{0J z?NW`bn(vgU&8)F$34wAv9%`dQl0G1Vy9AdKs^|9lA0tIJw~SiQ9-`w5jqaa>^{AZ z=ykYJbD+x72@%UL62K%4+l>Z0hC`>GRLj9W=5uILdbOtPj zZ`Z6StSl=dmnAbq52p1nvAChMU>}igJDqlf(HP@TGPAweXm^BuBfpf95mPly3If*o zDbk~)TCz8t%_uYl#Z(G!5u=dFmZUlTv6VYJWBQD&X^z@QR9o^MLpP*5B71Nd9ui@T zTFWGlU1_qlg%+OWUaY)6`m2C1pV}ZqEJW*4>SxYfK{LdCv0tKY-@6-}a-=pNVa&%E z>}T*)gF_8E{^ECWL=E%*u zKe^kO>u=ZQ`;FOcuK$N)HrLk~v+FkP{#j#g{Ixc3am?oWE5;nTNnhV?%t_|@Ze#X^ z_4Rj+Iqybo{=ji>%%2%^L#@94wd3BHzc*&fnB$Xle%se;_q~j{?iOwCYs?XIediI{ zeX9x2Ddsvy_Ne*CKx6i;)aI8=d2$l{^)6<|zBA^Gcg%X|Z?wV2+Uz#w z26H{bac{0?8FQU6Pc>$jG0!yS&~LSW^BlABugI7qtMv6NjM*~o{l=VQ++XF~Z`>a; zRvpHfvChgF{K$?zTW^zf8cDNhw##`?LzPy+d%Ct=N`ZhC^uQ${4HC zY82A8lS}5Aw1k16-&$Ce@3YhnTbezEG6no$Y`P_z@_&y`pWepoGUM3~k1^%_ZhieI z=X$+1_cLanx&I_%ZZPA~0mdBqk@2YtQHS*G8bW8xV#WgW_;j#8(m{0@)Jbm=8;Hev zu`-mCYKTA1X23y%T@mO_ucWN#@XOhYN%tfJLbZ6+x#zxuzKkg;`;y8kW(0!PxF3wF zEPrLNib~?=eW5_EzpBuZwI{O_#VVCQ(9yiGggr}z!Kx}Mr`R(b^ZBg`wuR@HGhXxS zr6o%ZW96T6PhFf*$yc^@P;X75^fFqfF{`ySBcwZfQN@7Lz5j5)7Co2!jE`mi?F z7<2u9X!C8x?7CN*>y5d=`1eO+wtla#uXD`i`g6t{xldnz)tG(8{I+xb5BmDwjJaWr zHh*f&A>;qI#@uMalW?5Q&m`mi5J}Q*MZKde$#(l9<_B84!q8r=5wkAQzL6<6Yg#Tt zSYI$;P0Gs7K!GRA$P6%Lbff-tP+gOQqGIge!gODH?K$>Db)PTC@@BLTTw|@MCA*wm zF4^wvGy!^vz>=_(R!C6T^|vtJDu_AIHB&TEqU1EIz)obSAaW%|n^TQx5KGS{bTXAv z5$Z7YkO(J_?KXa8?30LlA|_KRoU2oYTSQe@ar!3tLV~Pv5`#O$MjM948NBX0tm+f zCY|&Z?Df{u%uaJRd4zp}4xjIFUH(ot=K77=Jk*$@5p6!pm>Ztf=5vkNW%M6o9rGrA zJ>7Btj5c3j%u(~aX~x`Wo@b&R16>l-G}shSpE3l>eX4w^0dUOq4~Y}Mx-Rj{bDnpi zj(_8GI($xiTaCGgxt{l|zJ9ndH<;^38*|j8hm$@bWA5kp|Gd86HfG;r+U%r{+n9eC z18n|D|GBVAcK@4MKI;YT6-;LC(vnMMk(ZnnQ;&>Iy9(k5(_1~;S8H~bTAA{dS|vf* z^`F1U(FK&FfHi7?`~t?Cg{ax`d1-)EEEaDIy-fARs>nN^{z~Tij%&PSBw9>8wipqi z0-Z13@=zt5KW(V$5~s`cuZ7 zvqfKj)|m6m^-Yf1JpUDAPBP{l#_Zaz@850Awz+?gG5cQ8*Q3T9-KxzW7;}y>H#ue# z-p`CV$%OAq$NaLsf1fc&U()7oC+YNRFy_OI*=NjsjM;6>NyZ#9>36I#M@;xnH0C7Z z-Ztjwi~4zkjJd&>hZu8?F%Ng{H|CMX95L}3W6X8Ne6@*>Q;(K+F^9XDZ|h=q?(2;0 z>v(B*O}}^2dpD2Yx1sQaJ@;q3jXN`+bJqO^I`-=9OWq+~*2zEWbH8EfGrvEzmvPtH z`FaP(&Tfy6OFU{5mGr^Eic;RUQJtC^Lh8w+(yabagQq?1;KX^4hrW)T4lL%W8AJyM z_(7XHtg?8RdTEdTq)^q>5{AH5QT}2oZ3SBO#Vj3I3&p%x{+0TRm}3S?d5uude9(xh zcMF-_#@?1>Y{6p#B|L&%XaQoW)+%{_(o-;@uqZR@^71LZ8M78%v}n%ai+_2^pe0KN z6b@K4plCqmfUE(R4=5inWx$L9vj!|2aM6Ip11`1(6SmR1FRhMK#87*XSTs^t3m&t}lyD)fh5(t-+fN z-eFMRg#QeAc`rg9QB+!7EXhS<=`9Rmp_JQRUGV?NTDTg`fg z6Hoh1eSbf5z0N$}iGL?_-{e;2L-ccliiXMhHKjzqZ(CG}rdBPg^6DIxdetJ!bVsC< z%(X>BVwA4!U7clpz{d-|jvQ?J222Kpi==koj$L{eyV)Jg0mE-I_!zj;;rOjPRjN+= z0zT!E@K@0rtF1sOyxHK)Jk?%Fzdd)v&_P9)Qor=;cgh(fVrS!wqtoXlM5lkii8 zE)TJc|2G?44*HNhWB#2%$DMP(pyv?JiWv7fpp;oBGeot^ZbGf`Cfl4`nPZw8lUe!x zE0~9Iop&%3uZYMt!VB0>RH z5A6A9Fe+5Bm-KQR=si(gYI8@o#-ZqMSax8u{`TpeUYBD z$2Lt4JHsBJj>L?G)A*F4-a1AQ-~eSq*LO%Y?yLNr6jtn zaq=d4ERURPPN|ZD`cKMfY|2Lt$`GeO%66;}&mC;%7c=jZE5(CtQEZrvS(gnQa>n@K zDRT!6!+%}f&U8Y3W|y_WSlC4QLpvpJ!;4>L%|JC|+6xIRKc~EPbfEji6gg%iRTd4E zs#on!Q=7gd@le~yyP;}tsx@D2m$l~0zG_();|L2c=b^|RS~_}J7L*|#x>&9UeJE?x zRuJ`1x=$*oYz@)j`LX|h9iqoK?rwU2#z)3n|Dhhgv>0<zIC?#%mShZw&}`8G#Z#a2N~ zzNoE%PB}4UgOVX{u9#LU{V0L=nF z!$Q3wQr1pTl*q2UA8e~sGadSwAJwabA6PPWUUUIxW9TaQ&4LV{SD2 zjanS{$LZ^TcibPV&EFVvlG)GHIbV(G5c%r3b3bnCPlLw#0oq^Z`V>-N;jo3HM%pZL zsY#*i2jKLxG5V|(Pf-zr5H?@;(TvP2ex9!=bRRI>qFARFw6{0s2s1ekl zB6d%+o+;&p_b-eu&U0h;<>>uR&YkL@9ocPa)1fXx|7p*vxT2zRAWzg5tX(AM@C5=Fj5>XAG|?B$-- zL2KpM56+c?JJqkNSt-Vxi`G6*}J3thur zPs+M3@Xg@s=egU%%(k z_R$T_b=^+2>sv&5*#3*9OS{!iunIYjpcLgPy2p=CY-?M7(m$6Xu6LE6y65L!7k_`Q z+sFEAw;yxQPek!2FFX5k4#TCC|31i(2wxYojzNw^`XTbc&i=?L$f?KxK7wJZurip4so#oCP}6AN<~K+g26sWT_#X3WW%HZ^1F%-r;>$yqaJ zSgS8;YwJHp%M!z1HMqXRwLS28#ynQg@cpyf?|1z9SMgQj$7+M+;CSRHWB!yceK~$^ z?Z6#72Xjq49JAnR4*%_FJ`^8n{QL~JW$<}&5AvrOZEc?-Vs`^5_s#={iv4u$_rsv$ zXFgoqb$q77#h$#;^;a^AsnU^`@$KYGwS?d^koLUYH$H!2W#NO@Z6E*VEqOI5*S|3S z`^ER<9Fx9de8P9Xx~uQ7+s2-C$>dpL*7rE&$IBlE>t3+#^UF8<$3*M=oAW-H^Vf;)8y;VD(w~k^&-vp0T_2qAi}YJwpVH&C z)=)bBs^9wX?mHgczIyE053YHAz}~F1^B?>={XpXVXWezj4X^cla_*psl@AxC^w{Eb z%g$}>Xr6yuMfb-aUw7-Ie|$T>x!bhSQ_ecc^=;R1LSRT$WbNf_bi)tmLAw?P4W9d7M4dENaRAVRib6osvFniYIGoYWrpS zsrkV&dGmC!oiZb9GS}2^n$fK2b!g{yPFa{fDSO&QsaB30`Gs1M)p)e^#f&@VSD;ux z<<9FlDLI@$Fhlt?lRaHO=4xilm1WK3eRHFGLN_miR$f}v+rzu)?^9+?O?N`!jG3ZC$Q;Tnrbuqio?R>pqcxSWwxz1+GYRq^15*+zq=j%(ln3KDNuV+{P zx|mxxb@p#x7qfd*=j&FN@LSf-PT}j>#hlc|Y%k|^M5;keo+5AH1+?c zk^)J5J`k}&-K-q2=4i|639kd+K>5}m9tF=#wydFW7dQ$T33r35k+JZ4@Bt(f-TrnB6tMciumA-;N{0zRsik;w;&<02mgjFhqr>gPzbJs zCxPc6H^ANCMMxby54<0_4c-7QL&>oU9s;AteQ?1(C>0-uCxIi8$KY;oIE^r~z1P_5*kydykScoEXAKVAtCQ8k#Nkgy+ z=?QNI$DBm=z}?`LNI!T8JmF-NBybzN0T~Lf1GgX};f-L=Q^*&15;zn|hr7T4k_``m zw;?m(_2A>k9C!rWiOhpX!Ev@_<-y(HACWS60~kdD;szXes%0&KyTC7z<#6jXk^-rN z+u%s#Hn4@FOG& zZv_hnS=Og;ANUTk4;}@RMOl0e;Q^;3J>hv^91Cs9@FegY#D=@U?kJX1#2)-DG7?@7 zo`}Z74Y$GjkZgDZSc?*R4!jQh4k?0Le5>kuq)hC=hlX-Cleh<`qp)5H&jag`+u(xt zBdf&?=t7}g4;LJRG{D{9RmeJc2>cw0z+1uN7|m~m+u&$qr?>~Rk=^hd@D^kbydJz5 zWqA`k54@3?bSu0L{1Dj(Zw0SAn{=zj9z1;{WfJZJmmtaT5cm<&AKnW3Mv;ba!ClB` zcoaP2T*@Te1>S(T;dS7s(X<Zi8HUS<5!(%CL z@H(&wxk223L(eBY;Vy6zQV-7oFGB8v=Ydto8h8j?hdd0AfQOHx?7@@3p~yP83!I3o zhv$IzArW{3*o16_w}PX_ljd+YSc>d{`@nmV55zrqwwv-PZou1+R(L(Qz{456@DR9h zf@ST8H-g>MDXYr~54aWS4{rod&Y*n4Z7_(8gonW2AZ~a)_&AadkAN>tBAwxl;GD_S zeRv)?E|anfcZ1uJ06Yr%vq)Qb2<&kIbs3%nPC!<}bHHuCAT7i_n43+y!SldhPbID3 z^bk9TJg1<-Rz#G8COSwnffOjKh z@OtolWD&d-JnAyi3T}h*ksIJXa1*i`-UtrKrM$si;G#Uz3LXO6kO&|kwFK)aMSA1-(eQUC|_@_8lkh1=k8 zWIfykK8r-)5pYfw?KwOTTg3c z-U^=gE8+`xgLfh$;q~B|OUYlj3w#jChBtsymJtqk4tM~`gIggP%Mf?52d}=GatW^k z-$9nZqhSAQ$alC6-d0VT!0W-`%gJ}R3v?rE;DWay4~rY{&qxD20=|Ph29JWPt|hI+ z4Omf2`oMkQ^*2%;;C0}oH&GtodEi#$Yj`90`puMwmG}cryoE6XJO@m?gEWCBfoaHC zxEq{>xZ!!=)kr$L4txa3gh#*wNH*MBMH(Y>;DUcg=865C^cP4OycJCS4e0}Sfv5eJ z;0OmtuO|L*H+TzjAG{ts>Mqg*Zi9YgJv;>VxSMhUPXcd6wu*aj@;#&jJO}&>@&P;o zmetd)!hPV2$Ub-@nD#sN-G_ND*l;g(1TOdt(jOiHXa1gc1D*#Cxu5m{?gBq7HNdnga1Hw!mV|TNs!%e8_Y)bh~mKq|fz)0sIt6g13T4KSO@QZSau@)a7?}r`-5DM$jPpS zZv@Zn5oa~R-C!=V2c8G6L89;m@XW*FtPkKWa8%DY>r-(L?nL&%qu|QkaSYxG1Nan@ z43B_wj*PSV!SlfT5f{7x?2!~_jfE$HrAQ{+2R?wz6gS`zN5xrr;s(4EDT3F77avXf z!1KVjkPtiyZa9XoV8a{16O-etdbkbdAPsQA!;d8$;7MQw@*LbJi0p(nf@}C{dKBIO zKFb&6zlKM^Qodqu-GqDa6(kAX2wrt^oMpp9VCgAw)=+T+HrR2N8!mY5X~YX&2TmCn zXO+Qozza_&f8lxH=9D;VIlK{EaRzY__uvCV2@|{lJbNtf-8$Qs6#tB{CXb2cG7mtioMj9g;2fVBaf= zJKP2*BSr8W@D-#C-Utq=BJOY(m=MHYcoH}nsTcR);stTm!|)LJD6$S70k8)56GylWK7*`=N5C&{plrjf+BoYXBm&O^A40ak8^E|5i7z|}ya?GXZotQH zBCp{QuwNZ{3b(<}5$o4H7aVajc?x%fk0AZv5%7jvh&#LvJm*&OSKNR-ZlkY(CxNFU z*>D$_h2+30qEF7{v$ zsfUNaCy_Pq2>1>17~Hy(HU^2nbHFNOtGEa6MRvj)z&DXS@F;lEZz%upJn$Q&6>j~O zJ_t#;oqNG|kR*5%Oj%7^2X}#UkfHEAuo@W&uLGmVSaA=!?jn7}J-7&&2M>YwB1P~9 za63{a?!gc5rkucA!K3e?oWO0c0$B<7fp;Od!Rx^@>nSI27nu4x(nL7;Ch{0O3Z~pk znutA^iEM%AfG;79@J8@UWDnf>eVo-B`2d~-EKYcDT5Z(ZOgt*|X;OGYsxEm}$+;AWG=!1k69szr;A>H6f;C)C5 zya9aT52Tg20ayJ8=>x9^-+P!efk(l)4YZT+Jn)Z?(4WB@z{!u24)7ds6|xgv4<1DJ zz^y;ih9gaI7dY-Q$_CsGUXCQJBAnpcNFR6yQ+99k>f|iF>f` zTH+43!D7TM?!h%kCcFXs7|DUR3jT$3fD1l`6u~3lfOVt;+yy>@gv1`)_5}3^9t9UZ zjlb{^_z)6-H-I~kE#e0BK0|qc`@r8JQE>x)h%~`l!3&?I&4lNH7e`2kJK^9iq#ryA z#&00L@Feikjl@^nfVU#)@Op47k_~SJhisy)fV;qYWS+PIPk4^JhTGtS$RcB7R9EbFTyTJ-13GM?QLi)iQ zz;_WF9t9I#CJo_9;DoKDAv_1%j=04QSnvwrfcwBxUZr1z+h8u@gXe)aB1_A#yNfWpW{1cKQZos%*w72ji za5mzG=Ye%dHe7HwG7}yJAA5ta!Xw~uZ<0Q68(i}i=>u;7&whup1a}J}_3%3IS!4}7 z0`7m8bbwp$(Z(QK;Pv32k=^13%!pEV;5pzM$k*^FIPQJ&bv6Ej&m;ZdjbQc%^ds;b zun8FrZv}7tkahrG503qaxWL_D1Sx|HzK<*s_u%l4$zQk&Tqy#t13yD<5I5kr&D0CH z^$BIOg*XZa$9+n?;BN5tFNhbs9^CV_^k;-0to;XN8(s%qu$Q>pMVP@iktBE&JpCK; z3+@6Jd`p`T4}llQ#arp{Jn%at4{pWBTjzF*w|sCnSf3D2-^g>pw|d1}b?_+or#|u4 z8h8Wv7bF6YfG;7>!5hIFkBYap!0W&xkB+A=rEGv(kx#`9`1mpL*4OX|n4KJNCEQK; z!L>*-JOVy-Y`kR)2d_LX-g3c1;KF`{UpQELe7rRi?gR5qh_{O1f^EnmxOHN@)#sFW zYdJg#d%ijE;;r3c z4_+}K-f9vK-h=Fe*Mq$V##`1s_yZn;^nu&pKqLw70!Jdra5wlnq#wKiJo9f`uD z;EiWf9^iH0t;l|{2R}lrdcp(lMH1lFNbW;=!Ug|w4(SGufFS^`f3tx1$OxZqdFeQ@{Wc&i0zfVYBw_yu_eZvfv%c8WcCXEtRCUJo|U zC(dFI{-Tul{*F2VPAQ{22nQ#X6Bps&gUDET1Nd46ae+62uUAqw;8F0GKI#ZO1eRTi zz0A)kmgO3EM@9>D=BFY0?@Z!aUAD#y${*v&+lfVbABCp{MV97G#0{4MeEhm5B zA#nSRq|3deTOH|&^n(koLTq?FxE>h_kAP!tp}xc2;6o3@GgiibaM_;-KRg8fs(~~Y z4nBjdgh#;iM=0Cy95DWI;s8$q_aJNFQSh|2lv}t99QPNV4R?bNAY0%KV8Ob0#^b~V zyd8&5N~>Ns3*vB=v}v6-{Yvt6ankh5|2$`A-uvq1il*)Ve{TEd!mF8c=FH5Q zGyBY$8OVfqnAd+5a)7-I=C&7+kFcj;egofAq=8xYHMHBX*TeiUzHh-k4D%;vP!4JT zCdw7QpTj-|^Yi%5!#)l(^ewdEu;;_vi0?PB*TZ}xzVM-tYKD0iz8LJOmr$8(bz25`_+{Xyv1#-XnRi%qvpOVIzlh97@iHV=ce zmUn+#e!Gp!?=K!v@p~i1;pR}vJ%@ZDZx8$A%siwVV-Xcw7cLGpyD44HOj*bjro~zL z`{T3ewCS<5!SLzVy3w8=SNYp=i*uT@Q}O!Pc=T-eoQr)l;f?M#+)VYypFebeE>OQL zpDy|V)CR}FT%{Oc`ekQnY+P0@7Vpnf%ZuN%b>Utg&o+JZYx8tUOigLXE{-?HQd#xU z@$gyqoaBiu`+iya?UoPXY?)!Z(co)0f-(-m{_y;E%O~l#14ETAsZHmR^WvM)8rb_2DWE%{BGM+NU<)^iASTmT{ zXH8yP*<}hZ9#(N@hOS#S9L8bWE9TvEljPl#8S>7i-!D(U-Os<}%a3C@^3z)yYqH+- zr=>Z8)?WrKy+5ppef7k;n-f(zC0WJM=17XI*Mx8^1C-f8OjvCjmPF+CYk#EF@2fJ zJ^i!&^V3>fFi(PIitaPA)eL8m3UV#&9qFI+l|dUW>(|49wjn5sVEQcV=aYW!^|j^X zCn$I3UB9V+j5pXXWs*sdmtZ`>I5N@u%R71Sx4oL5`bo#h7whj>Mt%~Mb|C*GPi9@1 zC-j@CfAPzd^7x6bA7tA|xjh-kFMpk2K0oZs=U_Prx-&l8zx(Z!<8!|JWS+Bs%v4^c z#?(~jQsw8=8*2sghvgzu`N@Q%-w_`V{&f27ewi_RTMudH=ck>lT_l}99KYSV+5RO{ z{kHsDlm0EeKP*2l%!?9VUNN3v`L${Bhe0}iwhsH_B93FiO!bR?q&&{Musr(t^2aq9 zo?-dvf_w+_ov^=spqw}sv+}Yg!+g%nQ79jO{Ua~7?q*6K-5)mXOOT(Sto<_Mc&9To zk-toB5zEfD4E5bFqo7^4FDWheX&1^pC?}iW)});MVXmF7*6z<$SMAMFOLk?ed7W{z z`5E%l%9s9wvas_JD|3c#P^V7;Z7=93@U)zq@GU1PlxZs#U4J&vbTH2{#o_1QZ@2k-vGh*X z|M|o5r^jy(wlRJ`wp?%X^$)~Z{5l`rAExkg%Z2rj>1MmhIPNv=k3T+t7{T=V-Td|- zU9gPiL{tvi9WOqC-E@94EL%?e;RboM-c&wUA{K*FyYZ`oj>~!ilt* z#u1#iI|a(NP)-nLnEhrP2^1Xsuh&^vgdO zp5HClZd{C4zZ?ApaLLHr62M6 z`47hV@8NG&OwHPha%97PIFJ^m*M=YLFD>5B%VhTdD6Q?^g5xHCJS+nboBBH^Tg`E% zg{KwgH&0DXsm~kFk(~xF4djDqnrv8raieO7jo z&Np2czdz4xSq|o15cc~Cx@Btrf;2&Rva)2$%Vc9Te>t$c+j?NjiZ%VTlnLe9?^`p; zjzqG*7Y#{mtB3n!{;WLxWrArQ@vmCJ|Fn2y+LL)9v%)qWIU71RVSh4MA1(hu+4yB` zX{>2^q3Ngdr`6I<=I*Br#_bQE;XH}*5EtLdGwiF0{>`2O@vR&Hz> z$m9CiYW?Zy>ZZ|YSP#j^ddO6)hfKkGNFLS@GK?oOmG4Yx8Uf#wLkZK2wbuTNthF+o z+d!X}70GLehfJv)m+}%UCrsaSW^6k%_THHxPb*_Qbk?cApd46Q`umCT$Ffg3 z!98ecR|+m{S8Uq+@}^uT>wo6uLZ;kT$PgC&tjn+-77nM!wze!zmZyF`EN}iYZ*jpg zZt={cl0Y5>X*1>)7&-akL8Qy zk^I;;HPgDMjoZq^)<284;Sio3SF`sDGj}|L$Fqq% zugCLyJom+&dKqd9nS>vj3Cbg^4ufO%<(K|f?*@9W`xOej69pj zGl@KB$n$nQi^sE(JQK+?dOQQkbBFnei}!-@&Mn>>#ygmJuNcpp^X@I)nZ$d*cvlqf zUgF(KylaVfCKWGHaxWF{mEj#Syi=wbINlG#yJL8#R5Q%6#c)F$yhG_6adUCJ7a#8h zv-g4V-V@%*#Jiq&HlF9;dH)jcZ{l503Sks40(}DK@)sh0z`S#7558f1Wx$sa2VTcu z=Y3)dJeT3)omag7i+5A;PAc9-#XDDc*BS47;$2pWW$@bs7)f#cn1yzhzk zRPnwk-a*DY#(0Mq?;YbEW4w!u_l5EPFy1GYk93tWjU}Mr2f3#3@je%xz2liRo*&~G zDW09-`3;_p;Q3tY)>EIIXORC2W$d5uMP3f68Tc0ATZyk6Umds*BBj{k_Ta0ftz8mpXYV?Zx*Ie24Hoh3^G?-^ce;eE*0q z{z^zq$Ctpj0$&-vI(&EH>%q4R-@Ebc!}oD~kK-G|_ho!v$M-{g=kWau->>kwe;87^ z_-5c+gl`4D8}MzwcRRi=eEs;|f$u(i2k;%m_cXq*;5&=&$M}AM@3;7J|0ty9;48vc zimwb`4Zbb-+VBnHdpo|p`1a#FitqFIzK-wD@%=r%f5Dgi#|Q^s5x%SOt;g4dFNyDN zd^_>oi|+w^AH#PT-x$7U@qHcN%lQ5h-+6q$!WaFMkSf5p6yHjGH{q+p_eOj@_}+@| zK71d?H;V6Rd@tbpF1~a4eunR#@P+?0q-Nqv;JX6fT72v9)#KZSFNN=|`1a!a5WdIo zJ&A7|A9^SS4PO;j5fxQgDyHIiJ0u5hhvebykg2%VaGIKq*F$FF^^n=BKozPvYA!D4 zo39qAOVmP@P>WFgmY_Oas+OtCRFS$IZ-`u}u2Rc!5C2M4tX8QKwHoh;tW{U5YgDPa zR$ZsAS2w5|)lKRRs!Wxub*e&Dsw!2j)~gMwM%}D#QMGEL+NA1mf5fe-K{cu-wOMUZ zx2dh_cJ)T}CUu8;v$|6yRkLbQ+f=J+Q|)TI>QJ4kOWmdJ#{K_2c?R{pthiK6Sr(Ks~5F zsP?IcRQFKJ+SM!C_~QFeOKlR57Zwq`|+B#km8khdFEmwB#)qp zdn>N+?`a=w(eACC?X7pW^zQaS=4nSCW&$hXLq9U^BhhdE`4D)>7w@g<7#WAWotp-S zH>=00ytX=@*P80{v(l#VRkyiKVZl zje=_L-=#fu1HqtupkLsHZFHm5RM7+=|QScr5?k+rlZXi7NrC(3C@B|S;SbhQG z*~Ju@N#{{&XrR-d$TXa$>Bk!(5_*68TZXzk2(MA_;XcC&pa9=^C2PEGCiZkgg~2q`U}73a@M=J9K2oZ$#JED&pYN8(vu;(9zwu ztwm}Tq0YWO&6lya;^8+uK967xq6e?CTDZ%z^ltC7cD@Ma1vf#q3?iLU0BPn4^x+wL z9nVn8tGx7sXB7L>h^~QF`|zUB<2}xFQA&0Vqzev!bP)x>aBQstxVx*pyG@?)X0)c{ zCt1!VTz~mZ0vJSrOFK;ni|^TrpHww%7Ei8slxRtq!=iEHRb{~Hv@TY_@ z-o5RV+Q$Xo*3cy!R0eR&Vb{#$}>7oZ@)c(ZDw*pO9DuTW8G3h zEL{}bd>J*^H=(TAZX!vGylPGOkCcC@%WRyJ+gfzP zqk*o$)g`1CsI?F8KcdB!91~1i`?jGD&%H}3zc}zE8xN1?@@x=%Tog|gdT_d6iZ?HB z1R5ILUW!4{zx#K?IgX|D@5BEKDn7zidvUrbyKW@xXV?J%n7mfKx#(dS7zcl9mF=qDP zYCh%~bFnd37_-!v>x@}z%q_-jHs)Q%>^J5;#=O^<_ZxG+F^7#gYRoZXK4Z-1jQK5N zzHH1tGv;3z^Sm)%Gp72vPEX93(~UXTn2U{hg)!F{^9Ey98?)Y+Z!~6`F?)@<%b52X z^L}G~#F!(-95d!=V?JlhZyEDtW1chS-x%|k#{7*jqkpH)Lgr;Isj%qNZc1!F#E%x@U;2gdv}W4>z4UmEi_#*Crf z`+vW$*IF9Cuh+U<{JvgmIsA98*RQBbyjwlkUV-@)UhwN~G;bikrm8R<=ntY*ms2ed zrEkOo${2{0<2GWay1%`>wrg8|OaE^5lC!>juwtmczrA-5&mgygOnv)8Tuqz$o)6n3 zlL8=Bz6<}gEdzs9veKXy6W-X@Hq_l-jcN0ymLA5rG>zTR(%aTe++{%=R%f>mM>fop z&$us{n8w`$gY7*{T?lJ{q0*)f)1|4a_3jFptEpePHF$&na*+ zF_l?|2cfHWDRoN-(2fg8Rb8kSb0H(2s$Jmpp3ugj?!hj4Z0ftMtF67Fv!!1>8)ZR~bw|9VD2(8Rc_-X3*o_oaW4_HtqMKy4heeslC64 z@0hpS3{_tVH+2s{Tw7YYhuYP*!;=Q0ejYZF!tWr;7G5T>7)dT}TaQ=~H1&CM!D?C( z&#Sj$p5E4;LP1M%N`O_gWD;vveV8eB4PqrNne6J@rk${gmQ40+OSTU6;~hxkM=M}6 z4>9jT;?`T0Z0Q;3NQ!s$4aG@*FILE}caj}Fd@20uHR@(3$=6#Uf*$o*2NPM;3ge`n z7Wi&;r zJv-bYk7DPATjcTRIbqI#`&w}qb+{FC-+u6kyVGH(uSH=HcPh0ktkZEtc)N~PT^Ziq z-nSh$FvHaKXL)%0_HN8ku__Dd#WEZtL^G~*oFpM)f>XwWo}+Z zvmN)|(iGYX+VDzub$I(gd;8sLLwNgOJJt|y32)zth6A*l!U!Dv*3)e7-GQ6-!(9U{ z-I$%Jtzt`cwy4`-Yej+VR&Ro>qrWB9soo4*ci&EwxFl>TmT}b#+W_V|?WzT~p;QX4 zeX#9n>*_$ptAVg&OFI^H5YrAo9jl7fZkW9tl=VGfJ|If@?Fsj^_q29GdhZe&9M!#I z!}^bUB;1d}uhd7vNVs_TC~PvdQ~P0)iJ|&b7+I(zM4f?s2UgK=%Mjl^#nfIs23s#A zJQ^O5;7)`wEt5D;ij8re5?dc+_8Hnt?mR{Nb`}e~%0N3O|LQbty{+)}EN!W6{dcP` z&?bR?k+y*p=)NSjL8R>);Q?vVl=^0P5Gy4w@h>>~c6hKS#pOnImNp~@w<3ozgBE#z zA2u!9m%~H7I{#h?@36%}{atux>ws{Cu@C2juj6-1Rl}yL+SMhpbPaZ9f|uWa|KG}> zXJAKb|Dct)e>U)Y`~NQ`kbkx%Q@V$jd{6KxV`ifHJ??*y1oD3%`Q2>H+^4@UaIw<( z|3NAJeNwQeo)0NNJ!H>BVc=dGAfQ%q0UpP4u=kBOBNAcNiD85Nb%xf!x`pF*{H>C` z@EYukV^oiw@=e$?uM^TQhW{R~F*phuA%G*EX~W56;_5H>XvE%lKX%P~v3p((vl~0< zHGsBL4MrUjnqutV7h~t1<~H(=FBg6*K+}VN?VumTE<4`olYc7^$`E$uSHQg=;gUY) z(Wl_ji+%V_FzJ`S+5mkMv<)1OpGr^-V0J=2Q;4Yx;bJi7`Afh*!|aeyIzXL(q=tY= zKy#qW#Bvoh9MWNK0Tnd^(qXLyzpL@BMYw~|WWX(6gZ$KSFh>}(%@aaeT3WVi zg;(sl;Gcpn#6tM3hu=QvLJUDxgBj$TKzx))r$|Uscfb!r?g1Z^;Dxe8@JI(`H!=L6 z1pV^shBk<%?}FY%3%F^Ap2ra4=mvkvXHTF+?MAFOgLCFvB~qM#^zRb54dt*5{yU-5 z;V%KUWKmtK5+81)1y#Q%t#k>dsuwC3Qq6SsB9w07C!O!{@L!VPKldBQop%VK=oJ2( zg^m_O8{RiOJUlwA&f|VifO`(^J-F}S{)58@M-Pr2JbiHd;F*JG5598n+`(55oqvu9n9X&t#+Ne4jJDPvA@Mz*_(b3|grANz-Za7+hG;y-%Wbw(;lVvA2oUA{& z^$;7FmQ^luBPnDh8aH{^) z)>F-=I!~o22ed+1RKQ*2vBUX?3lAp_7acA>Tza_d@P@A|vt8xGbV+vJ zoEv#{(9)qy@{cti>pYe^w(HoQV|$P7JGTGW z@UhWjW5-S(8$WjD*x6&R96NXH)njGHHyp1&zV&$X@y_F^r zK6d={@$utlj-NgL%JFl@Up-!SV#A606I)L-pXfZ1I^rgl#PEsH6JsY% zpBO)J=ET_(uben{;?)!9PrP6%w@AnT$7nY* z{WSfqQcG{=t&e3Q22RJ{_y$WKB-7zV%B_21sg8eUkkG)I{%2K|zRb}7;YH-Dl~8L^{0v`>p#q6J9h(Xkbl$ z^5d5N{O?5n#RHaJtBraV@JBCN-oN6}r>@cTi!Mrk z_v1GF;ZjXM^`iXz#G@ZG^l!Z=y*p~dFTU3Bb5Z(#LQkU0U$dddF@=mjonLQ0Vd?i7 zdXBF%{WQIc9$AM!Zs_p@V#c4Q|IueW`s+0RoJ(fJr#1bPlXO6uzUfv=pZ{4+za}Sh1e(5WyQQxm*Yxp= zhJSUprEh*-)8BPb`gh=Dn-<{N7d1VORAu~Wes0-m>4(3m>A#VY+O{V*^)P>Yeg9$Lnn^_w;)DiUi}T)UzqvApN%HTW|))Z2bzM|*F3e^)EO z7VJvjxU2N)<#g;wEUyFMz+l^r9lb->UaOpn>sGe*_YDlRweMIt(BHZenj{@Nm+!oK z&GH>F$BI@=6!nIaf8yaf(N?OYHlnHYFRXD(V_4)&9^&<2Z1wqMp)C1@v50Xn%YWm%P*H>h6|~0Tud~ z;KONr15_XS+f?Y|akP3WmUgg;PN7f4--V#^qnn0$wzc=yxAa4E3OX$a?0^JTnD$eH zV<-L4k%8`y3VkyEXdEjODhqcr<$=XmvZ8KNQ`Occs1StS75y~|Mzns_hCZk)gzk;@ z3%m6t8h*FHv1t8j4Zla={Am3e4Zm05!f5?k4Zly|M6~{D4gZ0_MNy;9WD>tON}&`- zH}0w!K)%0Uz%|jv_Kpgq<^$1La4jWR3GhAvuOnCm@O}YrAXp9X0Re9!xE|nx0+tbM z1o%M#*F~#L#QP+s%4lVOu?jsTylnumN`)R4pdLVp3Vld`tpHZ5(1!(R25_|sJt9CS zfNNCfBLbwN4Ny)BeN=#5(S}w4`vuq&ZD<4VF#+~Q8@2)XxB&a24Ff3^`h)=c;R4`* z0K;(ULY@gQiU0t7N`SFwL#YZqD)!UShHF)5SnT7`258EJ4hnDv08%p|z*zuD&0_+* z0syHwB)~ZUYgFj40IvdAt3rS|Twof!S8(7M~3s#N5@Qq-}~ZLGMF z`~QsiN)0@KA)Io<;q5r>G^j$g^;_y{K=UzHZM0LS6_TdFbtAgfVapQQTwAwkeX_o( zK}A=w`O*PG`7HXJfI6ViuNhDdX;rAu`4qt4_qi4lz9^Vo*uvAM|0LZD((IrSMle#uRMJ{)@qw2|b- zRVAh6SfH+qGyof|?c1qBRgq`mrlK2gq@J%g1#912N zW8tZ43f=)xoLq=|67hWmKt9=ZW8t>Gp>0rTa`Q#oD`CKJ>>1EZizT;i+?Z@E-%^z< zZ>TEA;Tz?Kx}$S3kdame zS5ktCM60M?SC^uCq6)o5JVp%?2P|=JE7UKo2byM5HbTjkl>*(C(B^t!qRI^lYD%;c z=RWIFSxYl9YQ(N^NcFGQ&6*Q>$pq&6>2cKk*5qpy9GBtTFqi=t0mgId!o&d zSt7c%r^knVYm`|toNW`0n*X*ab7vT@wFjjedVBO)I87gRLdT;UQOlznpc2bU|Ac@j z7401@t-Dp|L^?9GKPRIs1H+6OLOmtW7$JxQO&8q82_b!-7U(P?aPp);=Ln$@`iwy5 zvjL&CeM%s-KLF9*epbMI0nrpbEnq@Gw1%G(5Z4)jm<=M@NJLtuVX*Xhf$KF4rk)YF zS;JuKS%Fg;24i0kc#np`+7|`hhetdaE*nNE%#Om-6QNOQ5NB3*4>m$$ScQ&C0R@cw z(U@a`nN`98xP-t?SwfhjrnI0?p0e;1H9Hpi^px)dp1FxSz@aCn#Igb4wC@gxNPxf? zWPMFzQ$x9bK$0IC6T$+9s|uzdfEel>Lq+hPol?pWwW>Ap_US2XHfCzYVZfggn3QLx zw2`v93u6uzXBGPT6gDg~w_xZY)iYSyXJ(DPG%13&5ENG-Yz6?#E4 z&I;Ok_c|V`3w>3BifL4BR}VBnLoW(0KiW97&1!XTQ=zX3wy=O~C!*#3+q!VzxPSL% zRO5PcKrr+zp(#S=-@RRhUJ@pXk!B_!$1oTAwxlPg-ooFRvIvvDaLmQuocfxL$VesL;&06+%&izlC?=k8W6*Xx*^R8EomOsH@pj)3mO?(3Wl5yb9HmN)Ul~olGMy;Acpk@`W1|bD3)3l{TP1lw+YKD-Ms+k&5 zs%8lS!Oqqg*a~Qq&a{v=h@ufPQF92e*PKgBV|jH|c|$|_?P?yu3T>ZH`{u@~hRUjH zbas_$0TH$JOy?!qdK>KvX*a|1rL@-|j~Vu*1U6e}8KLT$+N!3Sja6z~M8B@KZk_sy zSP@cH`9}4e0qPo1Ak_0dr>e?i-MX8rDw@;_9!(neRlzYlOZB2)Dyr4jw57HYBZ@O( z-%{1kh&cp&n^?cDeFI7gOTU#gZ9!znx;+VUu4S^v@O^tjRkhl)M~VtWTGg-x^4YUT z7n$1Hs`bdh-~LugPK^dPmN(u48Xa=e?e$ee092u5{g&!2DqipuS^@wy1Pa+{&(B4X z4aYzE4i?lTG~KC9ua8l*3C4pl6GX9v4!@7URSW1p{^(8cen~P(h4hYrx9nu6?LOwp z=x7{H3r$A}90y^EessCUT`fvBRjpHtH`#M2P3>qB4k!Ku-a_FReP5ES;prA?)3>)( z=o7*|sZ?%6hKBklM(2OKDD zTq@QwTKQWx)l8-TbvDlEB9_aXh7dJ$isl-J*#&}h2S6Q;v6ZB5-5&WD3-EwQZ$^9iL zi%%Px^_oOY0nI9XOrsqN|IP!XEW-L)$r(d=4borq_XgN%gn=zDwR|&T{jG7>1BCO) z8icmu0iXvE!pe7$tCBHaIBNALOmc1mrHC5Gm5W|5$h&puP90u|9fRLXMHX8qi;p6} zRolDJd*Teba~o0564i_H*AC29=J+pwS^FY{_BSR#q(y$tZU2h+u6}<8CzSschk&m` zK3)^_SNa*aydN(3NpAcf6Yx18oHt&DT$bE;0wj_f)G^Yzv6j*)p00Dm<6~$Gy--4P zk?~qWs}n{-cf-xfWc57;`2me|-v*~!os!F(t?t`VY;QLqzZ)VO0m-#a!?n(>YFVej zQ={W3u*(Wh9Vd(qsjLdzqw0O!-PHj<^(bzL~R#Is;{W&C9mL&=wn;}jcqO71ZvF)SM{`+xzMvO6cxud?hP^pU)40*MWB*-1mf6duY< z@~k1DpuU!or0A?KA}?*aY(b3b`V6JwAoK8?@rU{;Kj*;FS+-OhWU1)Iuw0jlgDe%_ zCMc!iAWOvx44QBFtqFrIh8v_|$Dl1X-2JKAyU zhLn4nIIa~x_$qi>!Y=wk684HJK9Y@|A{@)d-?B6f)@6H8k=QK{peu|YDu(-#EL5K< zs}NWjpmGMet1H=}oMmePYv>;3Tt;XLdzKE547@9+=ng~HngrS925Q^gn;h&OkghJ- ziqlzgU66Ct2#D8Rh9NTo)-C!rtTgp1+_{RP;31`%UnMA6a!$6SQgYdca#mAF6{%K^ zJCt)h8IOkwjq-Y>IXRX+E-NhT7V{3X7*r+Ods)$OvJY!GnBvAyvUz5|kw*&%+OR6? zCm181eTgQhmSc6#5l`{^OaqLyG^d(q-j^X${D-`lw8->=yp3XbUr1C`2mV*Sn-0s*JnQg zqLBlm+))UqCLKfu*&T)dntKSLn76=qu_eW@sSDf@DZ;&&DiV7u{zhL#hEKX^7KuFy znygr0M(RHDJ)q+knUQ9DGg91exE;kOj=6@JkkqU{-NNMwCqy)SfDFJUrN`Ny`q2P>ETQDQl7R*S61T#{Nz>HK7 zoRMk_XQZ_087XbvjFf=PNNMrSND0~*DeV(xq(qn*skZ7FDeZPfO1qtdUP>T6BPHaU zkrFgBQd+$ksRrzfH0_k0eZC;s)`;0+8uwMfO`MU^ugplrVrHbYXPA)^%^b8dQcY%N zqy)SfsZiP(DFOeCl(3nCaz^R{y%{NS{uyal&qyN$A4B2I(an)LnC&cT1J2g{Be3%4 z9C!fDVXho3*Ax$;=gynZrz|0f`%tsNN~f|^<2t8cgbrmpqTOs)0-`END=u1Z(8Xb%|mO~cslq2_5A`#sdDrru>}4ufXu zTYW(O{RVguE^qUqn|{!s5xdOoA~Dw285jld2z|K8VGA*4h;XT_{G0=Sh7gQsO6j2% z$(#9kLpA^e!sCEOsab(;xRBzBht5B*hajG_$Zn2ye9bt{rsOUM!v&H-g;)#dN!jp} zGyf(yMPhUDcTTW#jf~w0zm#nOEm&%haf>sH(ko!1;Kz4afHRL#JW5Ae3dF`gh=5GZ z33l(1lMI*A)Dg_HhxVP>I(T&m-oolu{C$1;wT{+S_Rr|nf*Q16M_>CN=+;81!Tz?c z?c3RjY#oPa-2Z!f<-b!eH)&56jy;6TibOBy$zA|D>mof_%-@qyp*9Q6is{K{)jb() z?8(GLPezkHnV9IwXtF1xse3ZobWbKYuO}m9dNLuAo{ToHCnMnXWCXmPi~xHwpK$!OC(8EsxqMnHNpT6{ejLEDqjKA|Tg!t`X?s(Uip zZBItK*OL)Q_hf{8JsCmMlhNw+WE!wNS=uSxYrP=Z7VODvcJ zZ(mQQ$xKg1!0X9`()MHo{5=_AUr*)(y`GFXe@_--my|?ZR8G!)D8F&EV|__|abvO# zPV7AA2l*AoKaRwM#RCu^~7l}sup_su{9S?NdS5ox=%NRz|R zW>R`sbc9P-x{BAQoyHVgrr&6&zlKEp2O8%8HtldI&;UD+d=gm@zDNTc@fu)PxvLHWo(+x0fUIR=(8em#{4KP950MkC9 z0VcvUz}l)CVA^d1OuN?r6G%6}gnSJ!LDK-!>NUU`unln9$=?85nl$dKl9dcE-2jtH z8ep-Q2AK8?4KUIEse~po4KM+(0TxQz02A;xz=VAbun+VaVB-7@aFlx~;qWKl!s2+r z78WpG!zEi-egqcb@W`q7f0U&;HpvQHDDMzl(MrFdhsklqbs@2gX+u-a3T@2LX2)Iz zoRg*wtjdLQ6k5D^Xr}1_;(v?eq^WnbwsvC;$FAXpay50n?JtI~9u`)Aje+m$(_D58 zBzff%R5a0G?lT>RJbzyeVyHV16^RYBc%MWYBbVpKuhd!svrMWYJpzFXi}#HfP0?-4jZVpKuh z_X=DXF{+^M`vguzj4G)62LcyGCa8kCd!rOYaYURZ#a)v7e4W z71SLT`*?(^pzc8d&HzAaMg%wu0I7LQfL8z@HHQQ^2VjkI4-4=rfVIkfT!8Zts$sfE z1b8jpi=`BGfhwpw9v!AbP!-huig*jEg1XNMI)f^x`@FbhR0VZk5Vy>#pzc@2aWYj< z_eF7rDrk=AeunN_fl8Gl>Ykzde*o5VwC-o63fW#J^6tf0ms)-<}KS7OIbnii`M z>h?&5R}t(FA?};9O-6)B2$9iF9OWgic18vBQiSLOmtW7$JybOrUW>NZ+RgI!g!*(USt5BZQXd zGXfcXQ1>Z;&M6;0yj1oZSl-O~b>X?;$x^m&0jeNguqft$5E z*m_oAPao9%g1~#UJ6QXoz|aSk63o_7O0a{+h+KD6TE%>;59%J30t(pbgSy8AGqnQc zR);WVL%{R4_JD@_wJ5vk+-`*07_z~s9c{; zxjqTwek#tvP_AFw+_((KAC!RT-#=KYhw@|-bm4GU@Mq&M!%>fao{kT~uB$clV9f~` z_jB=aFalQ7QF{Tnr{f=npIPZSP%QLktFW~^yKN^LPNY>|4IKJ&X*+>s+muG1BN|>t97r_N%= zi=d!vwd7VQ*VWS@s=gW#dg$~!=Rxra*By5a;8~z*o?$Y?U~4W?qHi~Lx>=UT7)xhwn-o!} zhhtv%p$+ptV7UC5PGCG#W>%Qg{Da0R29B820sOty-O;(g+3FOl`F~-YE3~sy3_NMv zor!cPfQsB5yI>T%J5n%8>GcY872+1_Rn5P~px&ZU@zC%JJ@r%bZ!u2q7pGgJ)84;# z&z`rbM7_cHVn(K>F<&V=({L=Ju;;CBOnQ?AQ{#- zG5U{K|0^mK%?QiqV%D`KzG7)}^eS=|4~>}#euucHOH1B4`L4#V0yqB`AbJ6lb$qBoGXW8JcXVW&7^A|nK}0wc5ks8 z@i*3hKk=6kdi-ttLz~J@rd9MSYp@`O73146#4d`=o;wqJWI1T7`Ug!{SGT>Pg>8O| ziWJQK8NKJE`$3;$p*Y5JJa0914~vy7<-K3555qborMJkNNIfNmhGFwrI7055 zfS8&NnOhUed5|I78nlvx_&EpWW63ICqI!@~<)ZP*m*^g3bX5c;$_E+cI{;35#I$~= zQ2W&MHz6*2(QKE5$xy$HP-pCb)92u0#=Bryhc;`*{jj_Q%S`Ii&OC%av(B2(mKndF zwm!E)OI3V6L<@a>7M9sT`T_>^zu;29;Fduf3oK@tn|p*s>|PIc_qTUwF$}O)R(1@$n_YH)XDA)o!v4U#wm11+MeJK{q)lna4^LD)M3?9vrOJ_%aVq#XP*H z1&zbCFG%B`Fp zjYo`Q8eeLeNo$^U4-T~9nSmsZGq+-(@EJxP55>&&wDTqsqBKrO+SRKZY=k>`kU9>veyD?-RK(+-h6`PG=(tq)6{M|GcC)eo+>?OL7 zJjIf5k-fyIx0eXD#0|*62sU=iULvh}FOfFxC5nl?M4H@76cc-iG`W{ZQ|~3xruPyB z=j|mDGJAH(dx^AX*h>`OK4lI~X7&;ZczcOL zY4;Kd`1cYC`}PujptqMuoPRGdE2y~U%vgtFY^yU0sr;M+dtr@Hf4ogJKZFXSgRG!l znlp#~i_OR)?f-fD7q3D9uW{Xmq!r&6{vF~%TWLBl^+lW(3d>r->(j=i2HJ<(`j(6S zI-0oPJ%}%}iAyGNkxXlH2cDMYxnQ^O^GHJo&HT0@yi zKlYeV#4zN_g53O^=3Yshd9JBI6H;B*uu)E+<6@V@v_cMix$D)4m86^5a~)?(5}DOGTGXyBfh1#xc(u1bC^CB;uZ*WrA25Z^A3EDtehf zMJjtzW}`*Zc#CEZmdXo9%M0EKcuIZe?g74|<|SlZ0lAuDUcu5_RR|87 z6MAyjh0h*BWu1AJ-eo zh|cfz=7LWn!3ocCg3nvTadA92-;LHvkV{pzndk>(65Uw930ovaAx{kq46+{i8Qk(O zGBB9t4GeIC{_Pk5=cAQ20|Q$1z<@Rm48+91fF=h9Vq#!GlLG^qdSF1C9vBGD8yFBW z0|OzEfdOsaz<_`^Fd*O!3xdFwj;#FreKI3~2WT1_aUr146!m0YNh`pw$}~Xuu8( z(oX(?fu%{~zA9NcabQ3y85oGg3=C+`Ffbt6uVkdj%)o$vH!u)NJ1`*N9~cn!4Gess zH!vX1KQNfix9jkZSaEzV?sZTzMBy_&PcEgLk;E%$Dn5S$YEo>5ep5QWfKK@{lG|}7 zn2KLQw?aUC-7CJ3(0q8qIuZkoCx}SE>(F-eI4Zt~@X{Gcz6U0+n#C70xFY2;YgBwG zYsJi%bNw~srKPP+)(LK4+ofh;Ie{nAof`>;m1_^4>Hb@vKTF~nxSr&WRXCNNk055| zI@J#_sDa%*%2_`#oDCAr3?>AtNi~E}FE0{miE?g!lMc1^RfgKr($Uq5xHjs51q9J1 z9k6|<+o`))&^zFv{?iC;78hF!ouliqC_baFyN!n`<*h>JxDFm0G5P?da-R4;nVr$u zf+zKy6KtmQ)ol8APG-S-K{6>1;wACwTp!+DbRv$k5BNez6l-G_ z)nI=WLEvOUU(zpA<*as`8!-hfG%Gr*wSUPQW8cQBQ9#Fl=P(u?p}?|?vxo=`t=hPv z>4R}z)aK{anrKH!vXk6hBXP}vt<SzPC4w-=L!hnU0dq zN$aev^YZCFXUVs7>3kz=I4k`P6T!Q{97uSih-~4EG}w|e(rQUR_5k~E?L|)?#^PP= zZ8nF{cKo^XH;9(9|1o9HZ25^~3#u_|v2y-GitEaYoS8lABn+Rw;*b+RtX3nBig&i? z)5psBp2N`Np@f+^t?FrP$11(^1Ho^B^ov-_cbIVMLF}A!?!#(v$x+}-KF2@L6bbW?wlAmS4b9#L|>|nU?b~1OAHh3oLd^!MO}) zp`|F@LJJF5FD%O+FVf^JwUDMeguh#z5))Xx3G6%rJLB-86$$Ji8`x)UV6QN+yAAoo zz)F=`txPmGYN@HuBBU!5;QL?T@A6^@^9t_EGJ$KDiaCb987@xBkw~ixObYIzg(-Ld zmgTE6reF;t5`k11_k9fNOO6XkOK@X0xF6Wy{+YqOC1Y@_OkiIzu6XK3IWIVMHn6!k z^(@l8i5BwK0?YEBWeg0wCBAH2SRHy1ij?{NUUisb?(L_uI5k@*Fv8~H9wTbJ`J$Yk zIa5#wFQ@&=GjMzl;=ba$uuz^?{E=Ahf9F--H-7$9;xlh`OjQ8SKQZ0aD7xt_CC66)=TA5@Sbs2_D%+C16X5ituS&Kb9JjwMkFq zq`t9gb7dU{OSN?s-U*K4?;?ha5>;)g0b6C2Xo6$go)h5)t*JlBz6&fMtus@fmP2sZdQv4Olxm}{R z*Y$>$oQ6359h>O?7xx{)F>a~crYll56v!eD?l%bfXdtnu|=VLd_hxQb; zi4Vue;Rr=-#t=*UwS@+X+8+d2ek_xsHUlV3`w1v&vx7;fY*c^(u$AMxvloimVR((D z6}9&O1g!7ug`zg$SS+omO*lW6R@5e37)vW^6Hdg^irR#WVnIc1@>?A96txMii9x$s zD{AKhEG4KFwFzEFP%CN^yn&!r)FyZnL9M7wu#BKq)F!wtmR8heOqDUCs7>BB0DuPH z!;;W?0GQ%`NPw*Xpu6{B0h$4bqBi|>0uV)Q0;!l$)F!YiW)!sv?1>pgZ325^Mp2u< zzL-(eCa@naqNq(^7%rlyO<)uOh@v)uv6xoWru}qGD{9j|9y5yC1kM0JYDR?TvjC8q z#{_r<08(>EfO7z#A9+}SR{@BkHUl^xGm6>-Ud#OjnoQ;71@7#HqV^ILDHSpf%w68u z3q@^u8xH49xU(0E+C-0r^MZHwLQ$J8V}2KV?=BRz>2_MXc~wc@*$YK&I*tb%J-;uC zGw!UZKQt3;2!}tFMS-0z>MQ})KwAl60Hz05}Tyzi*5%)VPxkOg69rNz( zjXWoy)!Am-FvaR@E5t8=)!F_Yd`?NLz(8l4p0j*P(XWA#81K`CQuH&htC&@aK1vrg z#Z!v@7T~EQpN*aL{P~C~OT)ZqSKz5?DpPs2g_D!t2a=OnTlyrH2Bd!bw53_=RE*22 zX>DoZ+?Y>Wn(>BX6SSp?io^oi()1WLNKadu^%#w0P+OX`xn7tk{DV=Vro^bZV=o09 ziqdz!;QZRsq@3w_MrGM4o@d*3YM1yc)S#y=&9LUjF4UHeLZpcpw2LQbOEV*e^K7C~ z2j3QDUJTkA_8Cn*R4Wx+t@WlA`RW>7p&orfG&x zTbczFuuof>n3*r)j}BoqJV*$*J=d=t&9fC*-cWUdcJ!y0#h~wf| zaD&6Gl^~ZQOEb#E-B|Elh$I}Nki)S*g?;t`MDuf4qK%YKsJ^MLK3Q9}rK;99AjRq} zbm3KW+K)hpp6p^Y(-~O71)C@Bm`WC2WbfAi#5m}?YbCEIMC(5g32XyfLInAkj_ z$;}fnv3Ww1nPCj`yr39a7di3aTEN!lsBQSyRhTTrXQhL=8}O^j@w zh{bH4(4JxQM11?SDm0ndJR#t1o(QGgJR#uUJR$7cJn@0v<_U5B&65yrK1^cEI=LN} z1gd!PCN!3FQ6}(yL#6C4V?sRd7#2R}nTyBEd)xF}%$d(2h?<8j;O@Q-*^hM=5arC1 zsde3U-IQ}ehk5)ZbaLla^XP%?<`I?|XgCY$9GYilaCO_gLF|T>-nMRB66hqPf54Lu zKHi)~d0=h6T|sE9+K`kLb32z-&Yhfp+WGY3NF0C8flpzLV8J-8cXAH-?Lw@>RAFym z;sJ>yho8sifRv5C)68CO?_7{pb`7Lj260nlznQHmr-iib^RW5@^<%8%D5sTCufx3^ ziKpnhjiN1I0PrlqcDnus;GzyQ+y4TVEkBA?lEqN%zJ9TDD~>-bd6#iJX7Os#vp(_{ z4Z75j|IoPop~b63zxI*;qd~7R0;q z`v^Ds35(UDy*{@tzuPLc=%~-_y*6I*vr1k1WuKcTg;l-`=5+zd^sR`iDZ{hI)6Ze& z&pEIMtNF{g=8XKomd;vIK^xdCsVxNR>SI8?=MrRA3QJDduwgIy9l}Z9%2H_w%47tu zt1kU>6UR@P@~kVh)P4itW<&)}adnGbfn2oLI4{SN(l+hPy^_nu3|`3heD3=#WOgyO z40gbrPvx9s`>xjZlx&%J7e79yP-@1F*VC}`=Nz~iabJ=q*IQH15xWWe>H_xy3*4I$ zz7qLW26i48T?AjGU|w2;BrUi~CyBW}7whSs@KFR;8@J^auZp@1YMn;O^<|4bk#YN}#j8c- zK5_?Mm`qc+7bSge3yho8LX^t^pBw#16eySB7>9>bIl`@l7a8I$RLk0XhLS0rB`a?L zJ|42!J(Vr#&H(8yO z!B{>5>xzjUs&=soT}tvO>lN;L!#pFbos_U_d>zkRnZ5~TEOe|_#3arpKKO5g`uhF-J&Wd?{43nL=!gu zPPpbw#6#g^;Q^p?L8F`mb4%swqeF|<0w2r8oyG9Gm_+%AW&~y)qv0iMylj~fKxalG zF}K2Pb9giVR0IiqiZ<~%6NI6%M`b$8~ zTe?Dz5)Pnw|D|TpSv3now+(9c8;n~Xh$pf>^G@S55si#s9$b)se(3w)nsr1iH}ol| zjA=-jFdp^N@GCD3WlY1|rTF+#lV*AyvurnUs1X`fLDY|cn*FE=?DH4!I{OF4i8pOe zGTPBQJT1%vtKE%!h2Qm_^Q&FRD);(CgsoZYOK-IoGu zZiRR5Vbc1S2}Zx1rkuC3{O!67lM>xKZ1q2OK4rlA~^qt#*t;&(3crh ziuCX0!rmpcYWkl}pr3KO0oNOr7l7fpx=QS&FyB!G7&S|PuK}3fYkY`|_8TA|qnR&d z#wUEWkt!i`79fgrS)b@E7l+}^n_XZD2h&V7$zxGT*rKEL+?{1)759S~nnmaepb4$A zzT~i#A*b1o!<+n3i{)ndtS>vd2~x-55>_1;#=mYOnI7y7V~~1(&8y!EyAQo??E23kEax!;F#c{~+*=#IP>sQ8C}e$8lGI}IDP&I|{2Lk&G3~9{ zwv@d{d{{mE`iTI8?N+Ayyea0NLiOVBZzzYro4f9k&%ous!O-&`z^2|G4EY}M4EZ1N z3C&&fSx~)5hA{ivjRuOwWXg5p^+~LD#j4;_?5IjkuM4^o4A%;2KObw|xXd!NiB-<-uvv9}XUbomi{Mq+fgxy6NCn_V*_%VvKVO?>u7Jl%rB z6)JMsY@J>9RD~J&Bbi0w;^zDXax-%I?0&Er&h~aL8h7_>>+5b3Rn^E9;u_2L0ue`q zaiuuqX6yZvI$5u2={Ea~k*g$z{2Ug`$Z`Ru+w}Umj;xsdr%0Af5Ek;wlitM&xO{Ni zY#znPnGFsjtrDY>7%|Y+Y}-HsJ|pe3Pr_pseb2@iO(Z_mi>FRr&&JG3ACbWg4(B5W zW>>Nk+^Ea?Cynqnw%pa%j~$u2+xzX4laWu&X6Rnx8 zJn4t;A}1wbYiw>%gHA!Fx%sqU%CfyERpd#Dt1=ry z*x)W*BVY2mlitG^99TCm-~N{i%uUL3o#S3qHa4O<#+=CaX2-Cgh;(9AZ;%&6MZPcW zDk-V9q4|L{dg1I~1N1|w&4nJ16GD%?JbNj^j>L{3ew&Ikg^K)C;?4_4$_wrR;RUDg zBI^p+XihkV7pV}O*T&dI8=WYuVZ5PWCzeUGWmz#&RTv&UQCtV;ikDF%DVn8+#J`^UES3`Fxb>N z#Pzf{h?6JLnvL~!ctNtVsu61^*qLs?QT7|=-hc(y{7)b_rTepT@f6O6_Uz73pFg||SW4!7f{=g?NT7k_7@(9@d|?acimI>ed3Kzf{cS3q1dQYhQjasGWMv1-=4 z;olCd?V^fvpa847vq#|cH$~W&KLJbOm+{AGDEtPDP=Dd0+Gl>TUckWQKz`1FJFL$o zmt&GmpLf7gK;H%QJ9n}1LdJ0}XTnOka+b4T7aNi)FVycL)cKOim`!Nl}zNf;dTkv1e{`qHR}q1my&2z7XFq34905L=PO9R$He_9FYa&RNW;RE zUc#>+a0kMeDa=%n869^uZLejF$nusJn)0k^j#1y z`=rRgEUcvUxBW`u+sJ>ygjV6n;tw$8T8IU_ZJ$7Tb|O7m4sBBOBtzPnA(F~v#`ig< zvU4|l>QoXArt%g;%R=F$a&D`^vP|&^mtF}E~P3D;A6XfNa5QS##B*7Udch>zBOP{WRV-#W8 za#I-JX97M;);|+PpqhQcLH3Ua*dHJ>OTK8ZER6oDU2HFbm;>7JPXFX{4U})Gs*s!HsIWMw1?1q!n$5&14R1tH&9!Jck&;t&Npm4P=4>kvfLKlvoMZv)^FOJs7S0?aqWtd#PXi2*Wl0KP;dK<9qqlilCBkCOMh$Ujk`*(UQWl3 z#PT{24h**4i2eU-uT@UPbt_x@`vwNu+IOtP>DHCfh%Cnv|MDGcmUnaw`Vd$b1nuBT zJ}$jIwW=6vPWw!fksA4Z8P&o~?*PYx?#=wdsoLwzNNXcb$7>3Jf+pBDz3Z3rsNKJU<=cj{yTWtNZazk zHpqt9M-%Gtxa?ZWDow4hh5N(djno0KVO ze%ply%;~T~N%n#1?L!`5in81sSjP2xx&Bnco-yG%fD%al|Bci>0rA@v!vC6Uf`RuJ zeA~G8+LTc27;16Y^0%DE9$?wNtqYs3DqIFCr`dT0jYD)RT$?s;s!BFiY^bW- zj8pVJTzz>%Qw4cMjLqs&JZOW8IdmxH-+^)7)yZv8EAMuT*S+_8>h((*)H}TufGMtWTChi*8** z`6dvpF2U`aUJ#imIQ_dgMPnVAY*g_8S$XYdUsNhP?c7jR-q?r(gVc&_s-v91YE`Yu zxsar~egZ{qnxed-V)Mq$wdGA!$-2!=>v3)LdT1nqkGwQZeM4Ps-TKW{(AlIjL{_Dy zq@AnkYc6n}ns%nVYOBiOCqIp>-`u#tTz7-}=snRfd@TRbRZUN$E9*9|v*;OVw56`A zS2NRCOAPF+G`7CHGTFF+Q!P(}efC7xhN`B`4VxNOK^k3Mx49vC^JZjrZOz7-CRLbr zLUuLXR^9+!8>*_SP*NzFbyb_Hs%t7xrq!G@X>CRQ|3lt;z*kkI{o`}axi|Nu5+Fc; z1OmhWN=X6%LQNo)K!A`!v1|xQfCwq3P*jS#_8NPMimrWK!M3hz!@9caF0N}?xAE@k z+FdMb+f{$x?=y4mJ@3~X=8KGmdqNaFmwHg#b74v8=^|?a;kbPEgv$C7@+37RLeXNuUbDCy_D|Wf#2$u5cucq8%qw() zUKkc3;jt<%E1kOtM{b#mXLG4H7+8&GMU^T$!cTQn7SEfb4vNOjDyu3{InlV8Rcd%N zW?reNYfdRDF(R5&=_8GdCe4{sF?)8oIyi!zy}YVsQtr4(6Zy#?90Ed@<0JI2(Jqyc zxs3OuO;3%A(B{G-@K}mts;Oja@UWDr(GdJne4a=O0#S4XL`~jJuSaWu|QWZovv{#QZH@Gs*j82#k;iRSLj;Qf- zOgtb*SiqzRSssb<%6ZjuW~#yn+Q{^rE50h2J*!%-2bdgT(oe;Bejz9RpmaI3ImJ(3 zo?kHG%er~$zhR8->1k1%dHIvVJv%)@G5&8^Y1KSF_i9FjR9v>KctvH+91L13YB0WG zkMOG}GuV3BhpltqjA zu|s)rX+<#x3NlIIkcp(ISD#4*oY zSgI-_EM~3(otKoFSZa8XD^+ELMe9K@J*{0%U9tquD}$EqewJdPK}w#pkWczq?t<3{RFw3Ca!0E0?({mR$Oi- zc!H3M1owL-of_l~bsczy5X&s&rL#Jlb&Nl}xOeI#ApfSU)%<7|rORZ8O$Qd(AQv=dI-T11!7$ zZ?AzIHz48u?Gs)@jRX1&u6-tt6NJy;2Fw{;`x1Uk{qIgXc&BWgvn*i^$9;@hYQ^Ct zn;c8kZ$GW%84w(+JgYn8KTno?I?bgbRKKyJp|+i$q@-}y%32ayFK5ErHZ&j#c#m4* zmg6mgSOp{Dd_VgbunKbv_r4gT=-vDOJ4W%U-zfO{{s2ZXmFVb5q0tLwbMzWUA*}z- zC>HV^j}@E_k+EuvF^Ax3>}bC^#PI}Nj5&l>5(je_jJ?KyI_rBe2ZsKy9gBUpj+Xl7 zHr^zn#%tfUSG7Tf^%s zBG96iwkCYWVR_V&2Ar}W#`Z8c0M0L<8Zed_35#kMVH}G9s~S7-dOM70(Wh6iHDOpP z8akS4+t*WSoHZ|eBFjfvj$O(3p?5{jBQlA!;Mi#`;Sd+0)K4LG(_hQdF8Ar6N5k&t3P|E67Y?B|%X2(0Z zd$j4MNc*ir-UQa}TA9+YsTD6-M!g65cGuxO*5UOan=xiAn`VvSH5on2lr@I@J>jUw zNL6}tB6Tci_2BE3Wgd(F0iw5#`qo=Ved}#4j}+b8T7e>Z9Yd>gKa>@2KpT#^bj4i^qMy@Y}XNMvVW$;kO<4 z?>^m^1Dk`avM7?%wRuEiyA1_-FQF~GU@#*6S@2+#DUZm@(HD%0M43zO@? zdn`vR<&xFjLV0m(@h4z!dl>&Q*LF!ruH&ST@bK%B(?0%c@~7G-=fjwFWlr%|Mu0#( zC;0drv$X}mnlY_El}ZStrn>PsEs3xkr)e1BqX8pq$LRuRsU#K0+b>e>AM#Qm*5@Qi zuL018$JQ8yU7WVg>`W#X!lbnUb6V9xcp{klt1NSym~qE;i=(r!&djn03J$$F$N zcuJ^9UHBWM@NBY3$EErlm+ElbTES4Wj{6jgVOjP?>jnKf{>tfhd|0!(wQhZFdwb*R z&B}hjVym2S@C8X|$pd&<1V6VH2Vm_7trw9g8C~;`MeQY{eLBUjbErJ{Iz*JQMMABS z&|ya;Y_KUorO?2Y{U`~sMs9Vl#pBllck|35dG}Z-7V1{kY=URz!Ygj7k?JaI4h!n_ z4n&@49+h&uC$#3gNx$gg55l3Q5!I&`fWCw9r(YftBam2#1TwRo*O<)PnR#wM6yI+? z&}sSjM_ivOKsa48W0H0_tYH6j2G{^#0KN{*8(=NLVk}pGx--D4i|d;Aq1$Z@uw!==kZ`f5NvBx_O48}GV`x!WhPY+ z`J)tHYuc*3Kl;{c#hh)2snkyMzj)S~H4Po@t>2`BWSpdcs+VHFa|ekNWMg@$0Pkj; zFdmb{U8b?eh<=s&42rO8A}q>sc=9Ti&FUuBsi}e-3^Ps;jj}2N0_Pj}PMAOtQ3!%0 z_8SNOxbUnz?o0iy+K0Xhs9%0B`oUY}#uoj)xW)^~2qonfYTF%Rl(ZS6+y0kB+((TZ z;BtuPfIqx(VN2<=qPKBZ4?{vH|cP z(V|)7;nB-XKi><6L`)46)XGGe8dfCoR?b9g1%m@8!U^f{YN8 z*L%SUslY1M?_JPSm`I7FScw#tta`Yr4nRPiJAkg}yY>lDHs9Xbh84nU*!)VPi_xqi zex>REzp#1Fz>Fe{fyFAr>dr=wgOoJY@Z?B}wMiB; zOL5gzpy4#g!0*G%WNwbL-It?L zu?@7k1NbgDfuvJl3qj1#1h7`c$^0ydlt(~O>KV+50&3^?*GY9Pyz_0h>7w^pC;V>z z&br8P-$8l*eMbebep&~MH|r;!u?(-D2w?qmC;r3w=|cP`>!-`WV%ASTVN%vl{PIq@ zWVN?YUYx9l>}?O3T-zm~*H2PN*g{-#+Q-XdhxJn)o<*~M@>k{*smy-sCn~|ee$sGc z{UorgpN>H(SU)X+cv(M5Le@__EV5+t3Wl0>+$UKK%d#(8C+OGkH{n`v@3($p zs~m<-(Ca5k^wv)=Ad_A{QDJ)hBzjDN#Uc(Qd1I~C>Tbj1#0Akfk^>WrqR+@!RKdUa(wPV|d?qya#u6!( z%E!T}?DP#jq5W_23H@IP?8jr?xa<`gT+jD*4Q&jIW970xS?PgHV0GoKwJfk_dZSP5 zT5BNnIq)yYF_6lR{J~jlz_yx}2|KV(!!&2NsrEkee^mM3ZjK8RzP+%qdct z{hTY6;CHSXjyP9=#ku|-^5IU=M|L7`|@T?fz()f-%3#6Sl=`G z9zwk{2T#=v+XLWDWFN$_q1B8HgRDC2d|hS@iWwLN$-s~fKc4Zp$xmS_W4;f{+~^a% z0OUa!d&YfT`4{*k4*t1MBBkYh4QVp!WYy(jpt%-R#Q5uG<7Xy+p?sBl01;kD!WdXqxB+4bL zy@m4PrXq6Kepc@QDj^cer(;};rAMT7gDlcgXE0;Gw~Zt=0ui>n*}DS`s6*iX1L}XWpwaJq zuTi`qLLbvTOxNx~-cF)g6`APWurvI2-2>Mt-;8_s5Bm$W;jg&AKvuKA(2XSA!&lf} zAm_KgztD+NzQ+Cn+0FjKsYre!GvcqXzreDhX2hIE>^CF+-|R0$&xl3Bznc-mzLotD zCn2#mZgoF}2Qs`Hu>ue4fp#Mb%%icLUZmh9IEnCX1W}RQh*u#%b|V^!P@3w=ndo6A z^Dbtd5{L5oau!-q4DUl+nx1*~JJs;9MhD?vy6jw}o1KgP*BkQNAocsb0saZ#Xw7Sl z18cmq!^}?8BRd!AF%#5unV@pY*T2sU{mfJ7fKmfcC=b1g?R${i_ezxuE}t8E~V^MAX6 zKqdGmR~n8?t^}6J)k7%d-)$g}ZZ;5}NAeqSmvnvqVFQ6>MY+p+kY_)4$!7d_8weud z-?>X~*O6DO;&s|$K7gLJGtHmX9gj!a3nwcqcfg_bXl(7kQhYHtt9#9ant8erk%IA( zcL}pD08aLIe{P)`>?w9rWI@w1|7PD*AHs;4^UH*AEY(vLB(`)FSQ2_F*c; zA7+d267=gwk-Tvh04&i2_@V^vExhI2PIaVj_RipR5KL`B09vqj2H>KW&*2^f;#E+P z({;+W)VB8ZXpg{C=fZDt3uLNS0Xq5iUqLt0o_jzaxQ|YrTOfV81yWLq1Y2?cd{5zLL(&iv@+x-E|UAsg(i3QV&=}^0Q02D9p36Vb{-{gka?yY`i!NU0Y~ya zSgaKn&U^h2y}Y3%$Qw)d=Y1nK@6UF7dCQqMmTvN9Zbyqsp_A0w8g$Sl)ayy$m-?j7 zjH%D%Y2cK$+)A0TbR$y++L5t&uNp)h^p3@wJi5Tr*i0v$=oJ{MK;~Gw$vl9HZ!>v! zvD?nL)yr3hd;^Iyywb39X2mq@k+(hmn^{gQ-Jf?{Nlf08M?$(NC8ZL1W9k09zmCm& zV}qABk9lM1{=AK|W6Irmm6sQvQ>osubdz`R>&77Y3}*E(R>G@*-$ZuYb<112F;&@Z zrYb|Yk=Fk*Ylu}J_y_jQhJ@!QS$j?9WyqX}LuW&*TFrvj^6_7&EYHN~&a#D$_dKU; zQ(0?G*Dzzr0Wx}B$Bak#Gu~h_lCUKvV>_CYX!@}of-e&~!vN`fl~vZkhI%@vckf4C zW~i*x?_y-LH8qCLvU$xJrLxSw_{!{oClx9Lp41LdEz`p+bM$`HgAJ837Ya3^LCS72 zbk?aUhR!;5`tqMBbX}*%eE4f)@=@**V>^`lXbhclR~S0$^+%uFUm5(5kS~CL(&J(r zOX6u9AKhVngzq|DG;B06Y(aYKX>Ldk`?5JDtCCIsp3Qk>HvLZIk2=WPeITB_t7+s{ zIhfPtW6NTob1fh$I-3dHlCi0k_;+lAtg^-r$Av^K8*zHRIZ}uSGG_^{%>Lfi`t68o zQm51${baw-R^azy7Umw2$?G>bO~nKNb5rb*HLuBH`a3*JFaf6Z71#P?HEaE0NPe}o zJ~_Yrwf?_gt6yWSPj<7`PnGt6H)jc0R@CH`55#_x*Z<90KLr+xy9)Ur#aeC5S%Qs~ z&{TM07dcDN#~Axwj6N}E35beJFMkICvU)G6VrhLVO~x-dOR(9HfO``p z2V8EieCCF-AYYi()AZ8^AqgWqr{X9BTBam~0q*N2@*>^!ODYFxO31NI0^ z)~=jM)Lwa96t0lCC2_3?T3&;Xj_VqD8K5(n*a~2wg_>1pPAl&1QO*>iE907@nWqw4 z1#C3)G@`31gWu|);;8R*;+B#%f}26yGW6;a)Y`UO@9X_69^b}wg7ST4uz(-hh62GU zL99Pr^LeBGKGTD|?=w9(@_nXv$0Pp)u zKg{nl{jhwW=^^~zXL>mQ_nATYJ~LRp291u>-)9Dw(E3%Je4iPtAP@k6uPlR=1l+jr z_nE;eB9h`OFn|TCnbwvo%u5NUDTgHlmr<+G?uz@UU7%_z_>pJL(eeST57FF!KCyg= zPMojsf%S-xpd37$0STTE`!+A&{vHJ+u*VZ?>Q}ADH>13Y(Y5u2c34mguD?n!T|e zXZJLm)KeZI1Eu!#kx6dMz>fKb^+@Zfr4G4oZ zjttnf2}r6BK0%GstO1v5>RUrsgKK*5Wt>#Vsh#d5E@ZgM=^uv{(p?>@Mm?WV{S13@`U^g%qRvz<`~L6v6=wn3Um*lRXAobmU7+& zlyQ$4OU}j--^>>ba0>t%GI6%U?nuSq4!b>74gQOvz5psHa*d(NYTK}QfwInHpYAgZ zcT-VPv4ay(G3e$zDrxvq0P>~pdBm?Ih*b?f>OC(P@Nk^U8K5!Z9M41|JjEhyC5RxvoM|& z#qrh5CPO_3()z$wjkLj+8$5MraCmk(JOo^R=sCO)gk6RSpTy~&?dDD6IZHtL7(F}U zP$aDK5q12pf)72epRB=`wAz1J$I__x85uW*Wqbk|eCCBbXC(j}P&k&hdo2K3=vD$5 zwE$rG+xSTB5CCQ^(DQ&YPA${zrt$}$V*ok>uQ?-e*9vNb4F-y{@)Nb|YG$qad1(5u z*02wg6r;xKr~qq}l`O7uhY?>oP`ASB{sJEs9nzkQ!(ho4?|DmFMHm%Kwn%EL11KIN z*`mw1k+60d$@oe}sl7mq(mo?u{5pKZ=-O2f&_jFguI{aXIo%3lc5EF}+ujMyX_kKV zh#|0Q6{?UbS#D_%INyVhUo9{Ks%rX}H3Fju4Ii|YaDABnFb#+KFKZNjT?d_IU^7we z;VktnfZ-Q3b#^Nt3>mF(5gOAEk1;R|Z{eXfb`T{)rqxq7bt5pSm4~$`|qdoAw z^8^fYUvdFp4i=hw>P4to+XmeU8U?4h6)0%TgKyqC1~7D{5hq;?5n3f0k$I_7V>x-V zdP{>o1w0ytl_sX^bnV_c1|PQ@@UbhH8^Sd8{VM_1)*lIaA8QB9zY>4ObhO~Sy@vlu z7;}fd@_~5XRhnJlTL4a}M*c|Z?}7NhVCxuIaJtz1iPwOcHm|{Z31aL^ms!XMgrFu3 z^|_vMk+Z+dK~mvPVEY~zxJf`%T9e0Nh5^&|z;zl#6EwNzW|E-*4d&hgu)bk^2LktN z%zPY!qt-px>3W-x?uVi&AokCWZ^On=eBpkmo9Osau$~nyAP?X%* zXN$)%G0bs|;n=4+uJkx=77jM!$scGLS@DqZ3wsYasDr5A~KJI{VA)p$a2;p!8wBB zIMR>13w0oJ9Eba*fW~paKL!b-qnnMDY-di#*~XmI;!d(;gcfSKcVGsR*~qKK|TyTu)&4MupO+^8igQnxZ6)a9=UThv5PF2f1wwt%=sp?jhxyR5sIjh%n z`&d+Hu6dp~%{tcLJAp4*rW;TG^CS3-dktRd<}TMvAI!*%9b^9WI=HwYDP*ZS?iHv#B^ZmruL(CrVsM-8po zZKSZ?KQefh{U?K`N|r!LFoi?4@@N+y`f{cE@F{&FmUfB{pJVVHkaLa?Ki%NjgBSbo zOAVf_+Tp`D8+<#={dR+wW$7LRa9MhpCzQ+5K-b4x;#9_7KXc$P-4Zf0WFyU>BUNQ) z8~hHm{{@Zbg60x~W@mqF*rmgQU4P&clX<;ixEBn4`)YaK3I;yZP^q^uhDtsB&fsaW z3&VK!Rl6FjGCwioKSAg^LymOyX=W6m&=bO$Rpz-q{AC8;iNY@R;cqv1D)$;6{%MU5 zbnS!2GH>=#UNJeS_RoFzj1!H+wXpS_nQVM3AC|uTs0LXNjy7m%zo7ZhsmuZ&evZL! zKmjuiekf(en=y~ep=K@9_^HfMW~60tCux#+xI+z|dcDF|-Yy^hPR)5t6cD*PTFwu;TtV=JfN{~V7a+1N*eNGfS7uKN0JKH_? znR%U$>F{W#6T(cjW*lM(oBd3*&=y0aTe!$i6u0nWL!}OH6RPLyGsl>rh`M@Glbj8- zz9Y>@b2Jq3u3utU4{+ic=Nm4rZLyr?v<%BQtbbvZviH{)*Z*SgyIs$!hvx#1mgnnN zPzgbR$vcp>2#JYmQccaO#x)%c&1P3_guN8_gaZ5l$&YXL;~Sed`)Q|nw8EO2nQ{rJ z-s3yO=5mye{A5;9O=)Uqs%zb>egzEwO_o1}|5eKkRx~06D?f?rCL#lu5@a zLUdJ`b262n+YWvlPbg^WTyI)GM>25`@>LXEj5?%CFBA@1yXNqE16Rsuh61S`{dhD( zqgS!%B7qJ&T!}~pW(kpwH##@(t!&W+%(Hi(!E}4kEVxHjGb|Dr^kLBq9r!AG{n46d zvDA{jMtG<>gp*p^ut}3A3%P@2(J{9-CUZ+;vc_qZv+c#$mu}dErHaltRWkZA(M<5Z z8Y&N{Ka9kbTKj`?{?;XGFm6ju~^n9;TzwDh! z9W>3i8;_xdLGSGb0TqS6ay2u&W;7y(iy8z2GAdj`}VGF9ur8GEWqo^7ZMGzY~{A8{_FrpEeywuUl# zQlF}q@%;w_!+$;H&nTw2C5!K{;#?l7OzRWl`+HIjKBWxuN&4{M@8e05Z=`sh3r|wH zY5!+ZE2W-7jeO?$tsb2EJM{41KUoaI!l0Ap8%oiBOc2ZU=m;E~`YJ&z$!daFUWX(O zPCX3S{ATgr1hFLNw;#lE8%n{!DT!T)`uwLLmSi_UEYCv{r~bc_AeJoa|3nZ=@5thU zZkSoDnOogw-~r@$dLbVH7sB)O3uuye-3L8~k6kS!s;4FO4|E zJK!l(KX&TCPYl3N4;eh1ox#OY(Kx+i$l&4Z^lmEyYcCV%Gx7bJn}7f{j}d>zns_`ugEWct!5n}PkJ8*k*<9v&52H4bY28qp?Mo1mMG zOhLDlS-)=N$vATgEI4{P9)wWzp{(GT!y!|Jq7P&R#}ey?!iTYfxkRLfVo!ku^N3Fm z#hwBS<`bV4+W!<-a2zQkgc4Kecv5nO5-GTV$Vs8-Q((af#1@63Pk{v|5<5>Sx!QLM zEI5feEDuHD3W-}1iarGvoJ?#5uu%uQf>VgD3`L&;3r;1r3fO4oX+&33M)<^6a5`~I z$r{1UAP!f}xL2aqf!I@Eab9@PxB-7)w@G-=xPfe;2@e{VL38lJgT`f&}u2j&jhRAP_NIa1^gE(+OP~<$kw4k z!zs${48tRu2?Lxkp5&3e0S3Y+DFfaTAQ1hDWzanoK32>=zG)S1!tCHVOZNtc(i1T0 z;fdFfj@-=xRLDf`CJ<1Gh0JYlydVEDvd*S_CL{#JW0AXPG1?Jbm-$gkiq z>3IYHG1vB~Oz6N7Qb;lx?Bk!n-vq>qD2I>LbvVUe2LS>&>5M~we3NbhcC+UEq%j47 z4H&Rn!%AQV>=rl+0lO3TK-rksizc@50V+ETVeIlBtCrj_6dF)Pe67dYI` zHLJ9;bnzl(hw0N&uBL;SnMdhphjM9wv_KPh()^7iejrARCaRf=gqyag!<0S&5_HWZK;VT4816a4V z4KH~uj``{RBZDN+HS)T?N;os3Ny@6099jMAaF7)>St?xF{g3Kw;dy~&0*>epk0hs3 zmJ2+}-!^1gVSUC%rCNV=_=#WtNH49%S?M*{!fftnY;T9WmmM1T{v2VCXT9RkY+W@l z)%v}23#1{6yk~b>n!b^Y%KRUPu4g}n^%0K0ICN2&zk#avW5d2~Q!Ne|yn5hb^zQj< z4xd%kgHPZ6sEs(JC_~hhLTz4`#@qTJc6bf`$iqa_8{*dwg*QJVtbg# zL2M5r2eEyC)G`=Ggb!kSnD9Yt4?C+*eTpc435{8Wt4Yu^Ny)jCaGJ7N zT>LVs7^+@z8A|ONdn((9(5JF}2%gIJf#y^;mNSt^M)uaG_%BkRQ$Z7NGb z8C`0MKpfEaeRk>VCOtYnsPR#n24C9go> zT{IM~%F-|l-{N>xIZUVIMki~XunfsM3Lnu6K1z`dbsJEx;Q?l~wzF>7kQg3dj|`Kh z3=dGdgX_`4;eoYC4*QJy(djH~fQ}0AIrewXYLS_zW&YO4%=5|2i^$CL$<%4eoSKvf*UH~)$5Ptcu8UddS$EhK!A|ieq@2RREhy4;B z#>f97csBw5&&B^M@c$}>Apx@+z1K$qTOl{e{4h-Fd&6}N(l6B@hwaui)4zTpn> zAkPDyaIwiWcLZ|zgl?o%>>$9!6xh2A(_l#9&+5JeM~g-XtqP{L;0czaX8{G$*XIMH z%PJ6$QuIqGS8R2<&Abe!Jdq}8&9G}Afv4U_iN`6D{8xg1Qc<&RP?i)53q!_H=%6NX zKQDkKzud6UM8@GILkCz3|7favB-%6+d7xjsR|nb39fw0hIJHwa(&Qt{N*{}+Hujt$j`seN2Ta6ML#GvB7;0AJ^cENsPk!Sj}gFoRQR*Hm*J=q)%mpb9>#>^CnM^7 zS_Y6~fzj%GTDq>{DYPN8MXQHx&xU|VU2yE9u-r$TDpdLMKK~~^d{hp9ZN&xQFl9|k zTMZs`h10NmO}e^r9_3Umuou5Fcw!kZ;ewBLwi^X0UV5ZvuYm2=yK#R4z$|mhK z;z5=l&t|a^KbA&(jvV>>3`>-O{>C6_eLT0t*0tj=4zy*c{Lx26`c-;pjAz+XcA%so z&*0I>H9S*I$!#DUBG1nWQhTfX5HqbmA;4+9-8ElV{sgb`6Q&vw=c5w&6$ZEt0L$Dk z0JX7-=!{S$98mqzI?3R`dQIhen_5&ZQ$AlJ)?~)BV6fGQIvh_we^&RIIJlz?DHx=q zIvOq1h7=5PINR|XJP*=1O~3zHuMdMk8rIg|LL;BHX{{~QQq>e3ff`lUu@+BNu}F=3 z4wS+y!^Zwt0Txkk78TqM>e)W(Q9{-DUl=?c>iH(uvB-<_QtUNmJ)%9*YqxoVM|*RSr{AJ0j&C>`}uFns2ClWM&#FYrD>u>rlb# zvM%@GH+j;$vhpABNnG4}!gM~E788xk{~N8&mp zu41AaiARtaOa5t30J6Kv^9OZmy>aS-wpin!ZjMSa{+4n4MNMci(+%Ubu<_GT6uYGZ ze^=;kH&oiwjY9PX1gd$Xq5c|=)q{rG0sK`4Prv_XpG+~O{F{8asAl9))AM2IyA5HF zd3|hk|GYmMSPfF@3z&1%B9V6#{#*bkZwnIdF>x{y<9~-;F)l-XYh+|$;bUEEH&Vc0 zFgyW0>z%hDRa)8eCEDO4GN^KbFtqjLC-MVvx|F_{~J z=WNm?VcsA=tNX?Qo>#a*4CBYBm-Y%bh$(yocm!r|n!5D&o>|=>W>x$L?AOcG_ZG>0 zJ7Jj??+kKUyzr0chJKrMq3qiAD2^uZzO{s|56?9Z7OTQZhKC*eL(M~cafQLtveC%I z_pRl58E#g#o0X%*tcZFxyq3Ndx6)+X8E)zO1NFo4R$S!acq@*c?Ge;cKO7&#(KCi0 z4i7XB#|LrrlcTxd+F-=5WdD91cN%1mX#~FPPe}X#iCdVcKqB?eNX$cG91>&6KdloG zAC8-i5bxp0XOj-}a6DxgX@@tUDDe3nj^_-O=D%C0V$6kK7(C6Nr?$LY+Wg(4b+0g& zXa2s?WR0FkiyxK6nidMgcqD;#RA2E2^ zXabt&=}NnwKN%{mbA(X+?&o7er6!9El{Ve`7_DKJwcLjvZSd^P4f~Zf!B8pftVpi> zvkjiT>D5kpQcdS3!!ASqS$Mp^WDwMKGf1~mZ;v2R_!qdTJxE;4#GjaW1^(Md!WSNBv zkTV!7vioF~rdRU!$wYKW*2X%_RemYcwJ6uI$!tn0>vXqun=UmG%LM+c?gG4W=E!=w zyiw63>*+3?$BSs=D0wM_ojzrq<8qa|@(oNBvF*_1a_Q`JowIE;SN10vxvfx=b%A^8 zU}*6|;Kve?dlgc7H{;LLH<7ptiMF>``YbMm_nNHeefe2exlb}Xm%}Bo#K^MvqJ88Z z%{`Nm+jXOMAcyr!_w^y@y)S@&3@l@boR)|p9o(do*AI!I@1jaWkjNX2KNr0RDYU3R z8!7uJrPaMO3sRl{e$e|!Jb=U+BqkR@F-;&%dmb34>#S}0DaYy3Ik%$$=#`>3uTzB+ z44p=DB66C}&cE~o(-mnt9}Qq~E5!cS7_cs?@-_QV%|6$QI%hV-l(k1T-?kg& zRN!Id&+6ue(FpUhNAqm`2Qd0&&>ojBgFYgHd)-FJtPh!mS7q*TS@PM0^=*cGT+EBq zg&%RPq^#danZbY2Z{YLFdUHD6dRFlFeU2ei_K%*EO=YKR`?h&z|E|4`y9BSgqv?+B zG?m^5%eP*3|2__b>*UT5{5%PE}GwQp;Y>><7H@*QIO7pOOuiFjRxcb+ca=%G$n#MjoX>%j30Z2Ns8 z?Jq^#{86&&iKsgbX!mDwG4`K;p1cEP{W4n%Qr4Y`w2aI+OL@!bI}^E_cDml#dPtqT zMWV!XszscFCIhj|MPn>Oj}ew#IR4S%j%&0ADKO_2(>F(87~+CfKi1_IT8P>}@*87pjUuU?y%@eLzmfOdofJw)k zrptpY`JD<0hctS+ogA+lxNmFz<%ZFCMyWHNExqQYsL_06CYojzu|8Gte`9?v0{#Qm z=S(E};ZnE4D#JAnUHT+g_@rYhl3#1^p7)K^v+!=O37BgHa*PYyWSUVJf3j}H0tg(e zsll#0w&L@y!n+NL^XeIz6zJMP#T6Xsk(5^1peSL`6_pjq0^y$Aaq^n6w?`OR2m)zC@`u~Qw^Ps z8h-%#k%rDjRULr-q@lB39S5M_bh@rLo%k6-*Y&#SOpRxKuZiIEbIywJi(5a)s9#OE z-S~$FbX}oqdYN)x_T~S9!E=skj762=dyD#xmRel=ORro2(tP>Dr*!@lg52|;FQEJp zuowiq2;(+>(0vh}H0Uz>g4NuVRdEl?7Hd6oOCF}c!c$NSHrBOuv^1?!?oJ0&A9WU) zn0G!OlKBL|$;ZFU_gzkK2@k$4Xj+B58|#$&6UobI^ZZrJMjt$%;t{QV;ahz*&+EycTRxUHr+e# zY~9TmH}ltjlfn5qrNBp}z}^#aoX!+|aVa9-J6buP zg2U?p7=!$*ZeFmOh_@y=EMqc;(j-J*89|_(046m8+(!VXct&8xqdowTTw*%26lJEE z%~}-N99`-pmRfFD=Si8IW%9$qM9gf3Jj%6HqJ&kMMEvChF|(S)O1uuB2P0xlrXZ_4 z3A0Q|4vj}0>W$zJQ7P1cZ!+26WW^UhVXtS+-(eUt!Zj#^3uO)FlX*FWA&!t$M(i~J zdfsa?tktaxzHe2GM`p*Ry3tG=LPC5t`Ml1mW<__K3`c{`pVd7JS@{`NHHF3}piz|u zs0NUP7A|APs|c*ZWO_L>ys06q<^{Yc5kwp}Sk9iFl?0&O<2*}49_I@LSGB;`ZdBHx z*Fo^7#F(IFf@nzMArViAiR`YoaQ}$Q)3^^I^u{(`Se>=)*r1ovRgaB$nL#4K9p+ z(1SdA@=ZD{o~<--r+1<}$Gri6zd=tm3cVH#I8(~;Sj9yh^ztC@pqB?n4tjZ*$U!d; zBL}^FfIjFIMuZP~d6@7)FApIHy*$7>=;eob(8~|YK`#&CKj`J*{0F^4a?r~ue*lek z^+7LZ2^Fhc?3y9AWd(r%04!mhN&>DMKIr9C5s~EXchJkJCLz`3c`3=clyI5~usCNK zRs3Z!Gvi|dWhUaGNRU989G?;-P$qFIu>u`75UHdrB=AU9;~C-@vI)2pZww)zQe+H~ z%BMue5UIPI)aDo>6;3f@h}0H0)L{(S3IQBLSdtWZ77|h<-hi`6j3K1KhsK1rq!5R% zJ$g!bOIBC)V*huv@PpCG$ZPRWZ?Oq$Xc5yUWYzK#x%1xJHZQWiJXm?HOZyJ9Ni!4sZ4Ogph3`(F2`V&F~IDsA;NT>nr6>vc&K#4^q z;A=Q1GXSa+0D)Y#^>1uwg(nyIk3+!QxV{l#-vpk9*^0oPu*!oB0@0_0<1RtKxD0$k z4j3>A=wdBXMiM|R1$z4sK`i9jV zZH;TzVjLHygnS^IyaH|%2x<`8GdSAX-&l_zn#KdsR^Nz;$hoZD$pwHJ6i=WVCJ;hq zfyPcEg#DMAy4rU1vml=#vZHM?#_vYfQ;=Xh}lt9(f z0GViIf;f|iruB$MD&V66!gp!#ks?ypHhS5o&H{`nfbg~vUhS{7(-85t3jly^k@lYsQRfFl-J2p)|M}rLrd4=X%)Ymhir1zWrXe;e}kZ<2ifJMFz2|6R{O=NY#4Ky8mi} zt6PuQ!Zp|ngZ(wHL7ktrj`L{kh}4ZR?_!vLwGO^CB3D_zva@%1ummkG6v1+``u^1eWgLxt!-&#^P#=R?WYWDCLPv=W^Ct4Mr&7MJT~s% z2Kt!AmKwAd37XcR-y(4jFoWg1Opo;Rdvg|xo zml-xMg-PTT8i})zsT8E)db2CX>+w~<*ZS}$8~$T~KSSf=orML@)>8g(zIvS$H=Hk} zRnC(>*1J5`(*0S-shp2}tbg%Xi}q)ogy3lB>n7cR3Ru`6(G`}GySJ(AH!jfRCqT}5 z(O4K8krU=sIR{^?nce_?x(|P|Fht)sEaz5 zMFnv=5H=WdIt@cJ7zzwS2N~S1J=lTVqK2xRE+5arun?8=lEI&gye(lo@>&J#;#`&U zn&G$?9B2Bav!&VBnI~TQV%z0f=d8#*hEF=T zaU@~8EUe@(N1cyjjN#bAriVGU8je4rlrqC1%8`yb+fdoKBcrJ7`^yd0!jj_@Llw<4 zE>h0JzPva1^9H(J+#08{UomvHFXvwdU?)BuW>z^F#uc#wZ-((`fK;#0P$?oAuPnk3 zLb!Q5d>msB$nkT-K?N-Ib4UrJj3;G}G#Dx^c&-o6lRGSVEAW$ylVpvqH27$RSNJ#{ z^p_W|^Gd_P8vWVNAvJ0mnw< zpD|-*$~B1NavV?OIR7pLjAWGKn7CFUwBV4xfe4a6cGX}HKPqk zMhC$nmd3xolv>=gD8a2tY%+yQm?4pH0Ie z=vxgzb0tb~+}H5;Yww{1!dJ_@fJZhM9aO*>^G`M)82NM&U&!NX8DiaF_}hLbmxxsE z62)9CLwtHLHmHD;PkdHz|DXcSI8sIkC8p5vq~r=EQg8v0lY-Gf1)K@Q79rkL^wl!N z&XY>6_5~GiCQ*Ck!6;lIaZ7^HK?R)2#8vT}>I` z00Pc*;+B#%f}26yGW04IZurZ19dWPW&we4fLV9;TP%sRPZXhs)Z|>ux_PjjE+w=0^ z$ex#niR^iK7}@jk0kT&R3?ssOULGdA=j9<}&&vb6Jug4ZJug2jdtM&Gzvt!Q{Ci%q z36&lwUk%?8)GOw|5x_w7On0(v3Tm$ zj-_-CQ@gOl>m~bCIrjj(aXCPq8Up!2!0rmbtH{hNDrNxcEp5`m?XIjeY+j6b8ng|d zrJ4Pxk$*&W0tm2|){bSlK(7mAfZQWU!U|tVy=nkqilVH8S>xMR0yL5S1#wa>5Dbtm zds2d0k2lY0631V_Q|bU>4@rQd>H%Q0MS#x;;N6D+A2kp_jRb01OGxj+3F1dYaF0Qt z6B_{?jg1Hczd{(>HiuBv?;i;uazTsW8rA`aU9Cf&g*MvO1Hd-WsK28{Pc{)ia|ODr z1rT;^#;~!f6@YR7CcgYwD(_X```}A<+1}c?{dzs`<4$A^V(s9q$~EWxSmXKvhZB&Q zR{Bi_Q7@HFvvwMeJ}nzouSe;hzvdw*Mil{1mGV(3P#)i_hu0O1S;sCaf4<}#3Z4Aj~gSv0I#YHDY*y| z2I|#8|4h?_66WY*s=~u!11>cHWo^?ru(<61gh4aI0IzwJdW}!&+kU3SH|u(Ejn1ip zE_xs)?l|!{V3VPq3+mhZQE&25xuxUFyG;#v#87{Vyd$HjkX&T+M#*!ds2f0CZ>Y@M z5JhFJb{gvQpl%6M)qr<=xh@Uk(H5*EG7jFU8_EJB746u@aqUlVDUM6;?YJ~h$K@03 zxb!}bO9M~hsP{6EnfyK$(LM3(>DlQ>`*%PO_8ky$mT(f26}x7jNOr}L*J$VX1UxE? zEqiPTS@5N;zOXikJ1j62^^OjjGI76$iOV|0MiJ4IY3679M362AJkjB9*&3?V$Ah{= zFAS(yA04M1qi?mcXV@%C*H`f+V?bSsV8P!HjB&iC~^ zt*yrc-`Igw?;@GY()|NAHEKOYTp)?&)Qp*-7?SZO#yTKTS>3-ukGhz~sl7&>*+!k# zn5iJe9|uxu!Y2GpaNaRn_*W)iUIe)45&fdz%EZ{rNoRmzH;g9f0wi7*>yc6dw`zkP z<&`q_WR#N3Qj%FnG9@R*a-~q5h#JBZOsWSfoNGjdPcP@jiizbAF{!LkT&r@w7{Jv+ zPiltVTNqI64zmdY`qfKVTNqI5|4x# zvh_-Q|1d+gUWrRANUp?fvl4fB`ovyF75`_yc;2DE$Hg@Q4B&wpovOd1QND08~$)0mqPp@lT+K2*G{kbLLxqEJb+h z({Zfdaa)M0M~MQyM-c53;8esD=wa5Kg1C5_rBdlFGH%m;Y!M{zXU*s7n4UpY<{t3$ z{3m$cW#T;~(zavVjm^-I}t}%Bq^#i>fMCAXwQEb_hli zKL^J&;23`(kcywF!5RTwwD(yG@?{LIw26v2=p1khAS}VHsi-QenN?9*RXVGHWMFDRbel>p%gohn^fp< zA=@D1ru4en^_2~ExM%}ckQ|Zu6ok0(4ejk^Ep_YK%NXJ~^n=V~R3bHgb~8@* z%#u(+p_)u=^I%hTRtwJZBg|h*vmvY$LN?mZn1-QR0Y@CTHuG>+NrhHPjYh>+w$`>a zNQZ^$1T_Y#Jy5$55x7$-8(-3}s&fs7u@)8Dkog-_AIG#&Z&Q_xnRlU%ZhS=p-VU@! zs<=t;N%4y}He-@kwHAu1SE0?BkAOQ>1XN-#w-q5cq0XZPosQZydQChg^E$R2ok+EZ z$`4dW(>I~|%n!j6a3?^6p#w3h(6Q2cPHgWg_soAGs~Pd*3uwau_j0r`;LeAeN#t{r zNM||ES+C&#c-i80o)2@G+bM(#fR_y#Li z9yyz5odk4Wtk&kS{{7N7qbzGN+4}XzkhFwY{33a3c&@6M`=HaUyO3AsC<^D8sdMNI zoz1$KI*Y+^SxlXf2l%&ptm~}zNyWMP>zF`YsRSJG_TIl*g~DMS6o+P_R)wN$UYI>a z2#i_jKO5@o69#7i`8O+o>`Zd`*Xzz}nrn;Udd*^rht`zyhLBJbX3VTWtvvVt6xD&B z)qQCQlZASaS}^_%-h&;_N0C2^m?2ZlU@=q<+2GD9yol`p|FC9IvqSh(VK`hZj=@YR zZxToe$K&+ZNF-(=p$__i;T&r?bB+e-G?0cj8wxfj3y~RxVcGDoULdLA8za#^HKThfS~P42NYcz# zj3hH?VuRo<)a76{(>a7~OmI?7ovu`)il8RRE2*5DL4TeNP5r4Jd(qIL5Fg#pkwXnt z(BT%MLZhQL9j&8jUAcxCCvN3ub$<$pWAH2-P18&{!BS%}{XCXH69Injv4uIGAS98Q zwq+vokA7&WTs{GZ8;Px`ymi%ckT&Q^pl6(j^LLy5RSS2G$}2K>TGm^-McA;;|FJ>; z0-d5V`OFmErCYvQDoeAIo5WuSX(I|4yc>lci_OPD#1x!ls?=a|DZGZacCICzRk{Q8 zk=Geov=VWPx52YYprJZy+-U~4m-T@*d7QyJh+w@;rR*{sw}tE1hTT%$?JMNBP~sSz z{(YJ1+;cJj2Dc>;e+smTXZddg))Am{)ZorO&f5Y=I0jkjS z^B{2oRHmW8>6V&^1;|{8_I@q(Ah>tK0SV$0REEUIg zkwD0*!Mz&9l10OP&m=QMX|Pa(Ve;VuL$oGu(;!wb8h(c``eeR%+MZ_tGF?_?vCqa6 zgZEGxIucO+t3K6HX;BAite;5Z_uQ?!vOcW14{>ITs?ziw5HtbG`H5&_@7XAXwy;w& z|MVPytvG?L!M8LRCbxEh3Ex+8<6J!GO@;wR5bs2MkYs+=&<1;%AGQAJW!}ZiZ+}T<8sd9~mgQyMZSkDl zWLn};_Cc}a92(|tA#}vQOh!Hi#xzylP=ll~uY(v6><#!U7r5pZ7%Cr!yu}8fKR8>n z!o2fNHfXvbMzcZQ0SM5c!pB>iR(DMUB<&DKvKW zgG_~NmB@aFk@#NlSZ_-&7u}E=d2?DW42^Z}uDum}xS zoDUFl6b+psP?#9N9-bK2J}GuFK|EXU%CmL9K;YG2#)Tx}+0oz?1Y!K|%ER$nK>1ru zt=Tyv`rfOXV7w4c`bt~9vs_lDO>L|+TqT|%bTeiRok*rl-#6$Y?L;)R9?-;1AP%vY3USKFmgP&_KOfJ0`xuK>kDfuKq*mlv-fJ>lhbVc}-m{lm{?=tn95blVF zFgCG%n!XnK*ex3Bb17uPolKFu4-rCnQ>DDb%K*{IY48{UkyC@W5@gG!Ny}c>Ae61) zq;8VIt--Mx43jGaM!}lgNznUHafVG-HSBVr;L0?#9#GyxrfIaStI#MuH65P$=Ks-9 zr7!QgPxqzw)L|5buDqj)*10y98T$-V#AYwWKuuMhE9$r!g-$?~&$atOnJ=+IZ1DNg z;IpoPr`lADzS6LD=s>dp*qnx*B?Lctf#^432OxZXaiP5!d5#1$ zg|Ga9dDvcdzo|dx+C2;aBbA@E!yZ%w{0?N%Hehb7w4RW9r#_%F$A?WIh@J8Y^^p98 zG<@Y%x?xX9!`>mJPgrQghO1FAblsC8?Q=rN`jk|2{Eq;^M1Cbr*g}XglJ^Ms5<#?2 zL#fvQ!n65|=<9Go(91KTp$iE?FB4ub8hft#jEN3z*%m1vW~h~| z1(+fJSo|+8>NOced>*EE(x`wciayY66+25nM6)L90uqM+luWC=OnsRteAL;R?VO-< zm>EFgQh?;}U*>DgbZ!(b<(FHGW^KaDw1g@dU^tJTITkw^s+eCKwbZGE-LeJ73H8jK z?73Ogn@V`V;tX{rx5re8IbcgbFf+08P&27LrG5pq2h?HHu-WiEeW2WKHbl#f0b;5o zzlwR-jr$f~hJLRB6dZR8)E~S8EsgVUA=&+5kl3k`4`{2Ik`HK!Q}UhqJxIm(#UD#0 zoCI^`afNhPMEH~-0dq?5Rc7*?5+s}yJ|##f)jK6fAWfeV90UP8CCHMb$T2`jk;u&= zaa@5kyeaXnKDLGqMW=Zk$TPV7S>42@;29gb5&X}QS$6S`lU({Y!=K$)>;_H)8h;o?8wdEGGa@Ex;oL;HY!nLFqki0sucPz()Xj zUSSMu9ZbI0?+tJo0KUfPjdM(sRoZ|DwQnF=qo4^Y0IiMOh-}Sd*OVLHd!@B(@2hMt zJmyT+b0#{CM;!#X3P5T-NF~^RPl4&pPlKpsd$= zQ|2A0AGeEpW9rb!nu1fM9q*%((xEA3QvJw<);g#|>O;Dzv%=M1g3j&1w_4RqSrsXG zi(kzU5<`B18p5MXOowFzFpdgvI|20Ya`y1+0H7`=@x^k~9o|;MN>kjbaB+NvlLDy? zOpL#U<^X_7*aDyjn%zJ>TFd*?VPsxIF6%J%uOy!YPbw$H0`=V~MbmiDQ@%4<)>h*7 zn8HsD7fvH!?`&leM<6$k#B62ZuK-9zO|}zQzKeitB?$Z~VN~Hb)@J>!1Ypnty(17N z?Z>gi?Au7gH?RV20mPS8(IF;SGz~4CC6Vmk53x&Z(%I4JObC^e4A35L(-bua zd;)$Y81)0{{^@vnzjKdHS3cInZo>Qhl@DtZI}-Kh@1#-{cIn=mEqmCVpnQ!tTaI@- zqrK|y%xQ<@>aCa;Qvn^%B7nPgO&E%RyBF-Z>=9b}?_YF9y{-yIZoPAEkS+B8{JuKo z^%t&YGkUA3!xNawT6*eRC;dtX!&ls)R&L3prUSVHW);HImrDF;w*!FP_Pid=?6?B} zznkyLqm>Kpw3JJ+a^EYQsoS(l;yieW5%B>lts0yO5+krrJA@}RtzuBszV8E#XfkUX zS9jEysD1qkfU~=bk{&S~d>r6p235<#C!R^48f>=@n+*RtNhO`~h_;Ad$C8pI6nrx7 zw8~3n{O}D5|Bb*7LCVc0%OK8X1M-zb55DCOxU6N5Z2U@gD7A;3LVQ@-bivppI2vlz#5xuki9;cgKdXBxoJL40(Zou$q7tF@Hdsv) zDSsg-8_&(mUi>rD#AY^e2cR^*v#?reg1;jOWgJD$6Yut#-=>@Yh-rQr-UaJ`VpLT- z<$MI*G@4w;JAjt{9FS*ooy1%TOyAVUv|_MJD!@K0XJcowRT!eQBCPrc|mr@5!fD+sBT${(HTWf81l+j$ymcnRKE-~eZl{^sB>aIn! zk`8G*ZDmCo-u!uj+V`^&j3tc-VL+e4ueIb^4>S%!ho+nJ&w;Zvggr0>k-+^xt+i_! zYF2mRY+g{JSgI$`83C12^u3KECVn8skv&Emy`WV7KAI1e#hj4%4#yGgeg2P(BLSDQ zuDHEWOU#ghLzG5^GNklkg*{DfqZ;wUdkE;%6<^VdzT$4!tjhtW*Itmv-s=qt;-%Cgn8^@PRM&beJb2IAFoI_yU(%Rg=%@c` z2!bbMfHRH~xqQC6T-dlC3iuX<&JX{u!2h{mkc*twtCSf=!jE98&;f^n9$wT*E0+&% zx#1`w1Ae&I39etaH<#_*g_=lvbN7P$IwAV7T(S+lA9J{yA=}EY0f^xKi5+;VL|NmQ z`7kh~Y&J#Q3dWwN8Q?)s!`?j(3-~X-7@%E_H*oc$6}3QYZ;n|3R-A4f&O%v}SoIx7 z)J%~1v${_}3A*Z&So#i>?uuKVL`v-g0L5)d_9?qfQwrIXKB!Qlxb-R2|005LT2on2 z=|ceMs;99_KP2RJ@^oT0Jq(OYI%Z(ard|b@wj0|_JT9iyvyAHD9S1#s^0@9(fBSJW z4?PyYDOV}?`n5ISKX3I{fyUf!zZ|698J_*I3Opr0_oO2(5iqrsTDZOnuVV9&5C1g zknX5mGix#Lubo+3IUC<{UhoXq<07benY490c? zEHQ2=j({yJuUes#i>k};WdV_;`O236$18{bSBys<{y#|t`TwjHDvtk`6j$L$8B;TH zo)^(8i7TxvFRq$3PsJ0OT~V>PLL~^x;>Beuktx)pv>2D&CK0G!v|!QVWs6iYff8J^ zyRf)Sr4T61L&QsRAkkAN@>MUL7_WK@%Ou3X6qZS z`?dA|Ju`Fey>CgtmY@Cof1lq|a?i{?Gjrz5nRCvZnR_qQ$5_wGoOuge&nci}F__RT z;iZ?9)0d1?NHwtP zussr`5M1uG`z01xn>50rgTzA!Ks=+Lqgph<1RZTkw~uPcq;*t_FwnFcPX921@qCVY ztb*Qkys@qUFKAwglV58$RJz1q3fqX`Rjb!mChA2V(ZWg#%2fW`cV|lc1pOIB_y@I; z!``mOr(+{o@DAvc9umb}K7zW+nAX z@6+LVob2k=`I~?=jy{`kJKviiUQpT{Mf4#MNp$=xrrj41(HR;YQFzU#bg+1Ih)BGM zl$-I4CUJzuv`D=8Vj zVkT5rHR~RpmPl%*P@Svd>df9iZ*9|JkU}^q)(B73);m?;v0JZhA|Uxbuuvx z-?7k`uAnskr$8t^`&ue5(UOxWx%-03^ML2 zhm1Qx%D59`8FxxZ<4%CXxKomiJHb)Loiem>SD-TP1ha7`n9cc_l(3CEr5whclG?Zv zXc>2vVB>DzvJLsua@ZEb@Y;FL$h>IdPGzNWmw-0z1Sc@=luaYZ#$BOl<4y_7xJyhn z?v!vEcS>t(PR8Alw2V9DIgR_^l{K5`lcsq|fg_Meb7gIKiz_Ke$_t4#czJSC1?@YT z=E|$+ot$_f1#V@SE9rYPuA~)oZwyj+Q>82E3QA2tF|3fO(xfXXBO68QtFTOVC9S0N z8Rkl?H>)4*T&a2gT!sjDl{Qq~I^ zClxjXH7a{P!tUHSH+A3@jrCVq57qR0s;O3u5H=`@O}C-Gk#dCGXHzeKh4iR%UQ$M3 zGMW6vIx$B!2BZDh40X&PQ^vsklMG{vRjvBKe zbT&Fgyrmr|JRB9vg-5C7A=F3Nzy*93TG@fg{xf2+huQu(5)fV zh4H$-|93h09B>bJpJ`^L33IqRb8yCJ2=^JTw6s~sz_^UU(9BHBPbRWOqE@pn1zHF{g{;NiY|vkeHTcY&&UN)R6W&4gEVK%9djkQXQC$Euz`U) z>xM=*Msu2E*xB^3g)ydOF24FRnQ!1J35z^Ob+@bP&IOf@>ZYW*FCR^8m})nJ1NEn% zfpXjlqy=T)atFDlWl{4U0`ROt8feHIOa-Uuo!21) zn{6j&kEIcsa{(q_!9@I-dzKuSc}@%iMdn*=%dz*$LAu1slpI%?3#?3Fs;q@p7VuP7 zp(PVC3qe#HM`0ABRhQq1R+L4w!cGk^tJMrma!&3+Jh_v3ehpUh3$NbPlU3Qvht zD_>5DG@G(GF&(0%UyH#|n{C9jbVm|$Fw7Q`3^hDztcE+}IaA%hBHwCNGCXQ>jNsCk z{B{$w$5NZ4Y(+C#DVi}(6yo4mt7^xvjdNzI5f~qxbv)KPd2TCI#p+~>rIOWynbr0X zNLHsfTU1@v6FAlG1obk_kpyRlD27Pshk|wRGd;dWJ!AA}=rS3sjfc}L$h50h6C`Fd zh>If>cWrTuH89a#PU0>PvhtOQLDHdc2Rjw6=_G@?oubrcDob=4&0CuS;#e#djG7c} z+3<~R*3@L#$k35~{HF|^w4g(@7)TQ^6c)^~N$I0`y2*|YQ)Vl}CIp6$MH zZR40|3ZoR`Scf{skU0kwNymUH&QDMya*A_AXlmPzj#iM)F^QdEiN`~$J(lOeEYERM z`uMXK?y03Rq&N>^Rbp#ZIh2D3;EWl~nG|Q2NwXv%!`U%G@+D02Gm~r|+P17p{05(e zij;S3&3bspPDPXIlu!ifl?yzC*@Ks9IuwRo6p|LrgAC@ua4TQ(06w$Rrf1nRpQL+) z)<=?!q(B^+cN8eIT;0)Ht}!E(n>$AHPpY-CntL)aE)A|3OeH(AQ35%^!FJ4oQ;5^2 z+Po*upJvYt(ixVQJJF$JSasN~D5}n|tH*=McD-N@=d}?GsR(prIClHBguK6(yLutr4=W0c68 z0(o{U(@wR;n?&X`TOue)i%kdeM3ztz*GZ1abGj|XX8_bj`AkN~TyfM3K|NdDvDTIl zbgJ?k8%tS_bE7+=1ZRpRUg#a!lBv!NwSvh}W+ykcd_pZekc=T-;T-m4i|=w620J7K z;$^ZYn8H$-s-#j$7%6NyT#zuO%9JBDR5>s3qglZz)icay2O<}w1Bb_{9JtYH{hVdb za=mtekU55Els!bF6$qvycoEH^C{b~mdI*El)FU~bN0&y9JU2b+r#N(s?Cq&a_d&GC z@!=FD&FsakWbvYmiJi5^?AS(is6+ue0 zj5tG9kdZWuy+Z{JiPk*>7-zd2gn?sE5C|RjkuzP%O{P7?>FAavYcS48==luku!Tvl z*G94ZlAa)hgUuDJv68ZJYMixUidwzKM3=}cJ5&d$9UTj#VJ8FaxEt%($BNKIWyvNf zNz&Ser0EQYgj?!{1oAAU0M2&S1a;$R7F0O&4QV@AXQok^!zt0+RqAJ|n$kJ3_ncB{ zNt9DFS#wKb;;0QWFyqIY2%y5e*pfTmjFm=~yd>rG>h*0=7A+^Kx5?5>K)PscYlU1* z7R?kEOo8d{dNc;iQamt<#vjF)KTZA2dX?z~c!3S#!p%z#xaJCrQk3F0F^# z)&gM@*1DM44%r_OJrYV%M=D7L^AibMqP*io{UrCC{ym2{G-HwxesH+^Y#nhIwh>&n zR1dFMa3?KoXxfl8a?Vl}TkTk&vr4)B?&siSp3M!a+Y0m--p2 z*l~#-?I<}Djy{9>Bu5f`9%T2KSdeT__5@SZIZuwaI<;(`oG^}&r;#-Wpcf$%=e$U@ zS(xTv;SePoL!&EFVxF#8H%u*%|H*ztHxR{Hr%nU!9AO4haVa+8sSd)^6yY(NK@rZo zRQ(cekB;bvuJ{3VuoF}zM~`;`<~Z80tjzz4DUJyqJE!3oVa|draF%J;h+|}I#R`YuCVhbYdnJtEL5##h(qvja7 zt_~}i6+4315l~te@k<&(sg4nf<`Eo21*k^e2OP`6O~jDYexxHrNh;8}a^WdV`u|kN z@KgLq28|LdUwGfu3Ygf77ri_^-BRtbYTPmRoU-AtV*kI*Z>t*)+nuJzRGRA{S`w5Y zx6mc`q9g%Y-6;vN4pOXO3}?Z}RDywJ51DH@!)cgD#tMcV^~T`prR$jZN&9~qb6}0h zY}YXbr8>tr<_`Hpn!U7m)YB+t<)~CAmW<>Bof1C^QM(1v0Ra-4ewR!C^9-4-CZnYN zIG(Cgc;Txu({;=z#*o3j*Ab_yXN2CJ$6Zu`v#m@^7ysYv9eDQggrt%DpXl#6S0MIz zhv>BiA0X3f(810Hy~*Ko4*Y8*UTQ{fmvdNF*(P4yr}OH5n5IVF&Hxc=sVf68yhg`8 zTJU7*#jZrf!3H_&9VQWOjLISj=kp~Jd6ZL#l_!OjCR;)olCu*rr%a+W$~e0e*}s3% z>#;-A4(EiV29Y_YhxEpzXf<*=pRGcqjzKzRb!My@Ig3>qCb4qhtYd13*(o8$;WO2g z?PS{f1CqH>447i`m>7Vtoh%J56QMb_A417oM-s>$Bq>-y$VldC+6NKs(;TW%j{S6{ z8qZ@NRBo~nDeyrh!UgPu#vV$Why_0mq%mD8=$Lp*O({dYk>=bp^QzUOkM@OUS;7N$ zD5W?%Uf0gCu(Y0}aV)ShB`1$>W22^K^km?u5V%K^A(_{egLz8Xp>pRuNwr9b_XgRA z#QdcJVJ}iAhuS_yx>KbMbNC?{R_(fj)N6Q+Gy`#5g3O7Ntyzk#BZ#dCl-t(k_?+SH z;y93f%9DAb70~}bk+P^b8S%cKNEz<*7b#;GVSvS%J%HA>5|(C;;X4th5W5I8nhA`) zQ&|7GNR|rcr05Ez%EoCQdz{mvL!fL@Fzg5cYiXB>bUUhRhd>kVDmz1}*jJ7^d*O@| zk5D2z(rExku>l;dbEQHWqbZh&v6>J)TgTb^Of-4NJNKz^n3;7IJU_LOZM)`jUMZ8s z`#F+7yyGVm6KNY0OJr4#t;w-SW{nG5Vc%Ev@lj=2#aTGh0&c=m*p)cti53xMQ zk%X$}bIPcTG(S#aaGxkir#oPpOVJ1(m{PSJsBltqKc%{dJn?5$3FbpwP zbv7B?2^ioxj&@MCKvk|c_~t67exAczOD@c3i-zOLl3h|`tFc<3IVh!kp;L9nxDJJE zRijQOlSnAjRjj77Ke`HauO!~AEwb=HjKaFq!g3n5L@~D$%^M(sW2t?ovZ03^9Bv}} zs*o<4T>q^GQA=UELkgWi6v&iq62Y-3v81DfD6geJn@5@z_UK@Lgmjv{@q~Md>rv)X zZFeM4$&T1pV$M0$*okh;S=v!bsbl9I`|j*~*azXF$A%TM9vkxZwF@XYW$PLx=5QTY zQAh_Ob{c>`Dob+7IVVQ4CyaHvQ)XkPhr{isNzJF@Fs(>WIoIpB>pYu*yW_bDa#$zu zJflSX=?wO~Pg4pF+FEI{iKzgn$Rx+?m%BUA)ui*BCw&|!lJzI_Fv&#NYTk1P*Y%#e zvanMv&NyT)N6DOhs>hN!eMHXb!R0A)IE_5G6O=y)gnBYbb~DyxQ-nqDusem+ez+l8 zu;|2xHYqge@x}zTZ9J40mUOVp5;Z>VE4!^kjn4V%3O-%*+!jF+89Myoh^<>B)d1QsgJCuw*#7z=%3XL$I#k5BFG)pT>t3eKRcB0Y7(vs$m9Z$DL z`*f=YnI#Ps58A)MPJNWFl%GGfMLwC+uzU zNwUr=8SSKFtfiAqw`m`QH?yH9;G$Em3_7SG9e8Tk=3R-RV>>x&GugSybJA#0NK#@t zw1k{t*!xvZ2#(2t8ql4_^kIdk=))!{i4x9B&}Epj3c0VO$|ZQJ!It(DIqDK65YAa` zp9GKA4zXL@Y{d9*NG#`A7^GX|SifRf;AB{g5jc)GIJrR_cJ6|xahCfaWIyOoppL_j zWDPWm<|p>fSi2|D7gv4U_W&m$bXRr5$6 zxxHoX7^>6xOsD1R$+eN1kO-csi8WPu1v$>H#mFd@M9dbw2nCq$H~>IH<9t-fDGpIb+W3YYA=kcd zl-C?35O}5}+7BR}!+Rl~+re@vNXL)kIXP=@KImM@%w$_z#LS7PdH7$Nw(wJN zVpW+PhuI~4;SfGb#s`v>$if6WY@?1OQ>%JS0^5Q`NxXCsiXF#{7lD`+i|SDPSs-lz zLg535M7?Bb9|58$X3?kIT~O*p&Gn#4qsN@Dl^vL z{d4%|LJ^sH;rZdU8$H`*T(}b0R6^#SH{DaSY0ZZEwUwUQy0z=^k)|~#T!Iik4K=zU zmkVUA-LL^K#zU9zdLg`GCdl{X0N|KKXhS{c~ONqy~r2@aikY+8?N7xOn!y}`VWg6 zKF5v^fz^bSz^!r03dtMG3Sdh*06XLcqA0~9`zJ~~Cb|O!PZU<WSUM}X zte*b&iTWy$*7=VA1IZ`)hK}KS__OAdE3{_K#?>{Oj^AH@k++>#5xn^uSMEr%^6LGh9?QqG1)`swGVp+%E_Vytn6>Q>g(*Vb;9WD&ty zae_jpu0+z-l?jHqd7_r;>F%%o?Uo9W-7400KX_#%QoS_qn@~xj-prl8arT4t_2ynN z+zhnNJ6sQ?R4uZM3*BN!Sk&k4Y!h3dZo(ZMp~I$6R0cYX3<$s9XddljH4N&^lwZ5;A( z91Bvj86E|y_Fh$Avmu;Qvk9N%iZ(68qdCl@pSs*)c9kdyh}mX#g?Y@pUcBovi^X^L zc8cd+VO*QdiimmfOObrvdNUL`uy)qc5_4nyGGB#p#u#w~C@IZiYp1w zVyoFHzG#@;<`^-eRctbg4+O=}_rNE)-`(T82VmzWF{&zLMnr1!A~6y-hIE#QiKbUv z)mk7@a>dr-i$uCtZ1c_+*=Bc_xYW!RzueRNgPo)e%)AfH8^nL$wS;c7!1s+sK5{m4 zTbEah@qIoKGFz*~C^OS1wwtYW5m6UdE;2fO;yZiH)-Cl#;wE>eK|bx9QfH&0j^@Oo4E0(E%X%IPFgavBh%Edv6$t|qi;wRUjj3^_;7kYBmnml+q0 z>iXI(^F+j;=#R*;$@ea-8E~eIJmb}OgF2#s^9){ z*T&`I2XJ%$EJmAwu8p^dEHhIqF}rc~8Y3{i^s;Ni^}=U9zR>>R>Md)vruqleztRF^ zGu1qHI)yZL`*Q5DyZ(rIpgynVX0feUqy>)d$84?IDl%Hd7Snqy-#5)ua%Ah4xrkXx+L67ivi|n36mwGH3e!LPWh@!1#7nLo zbM+!${;W##OiaLlcnwkfLgrbb51F?i^Y_TS3)k&tafvVA7p#at zLx`ch;um`w#RIspH5Xv6cn;tivwKlV{i4GwM5>t!rC%&HM>u(_e}h2D-zIyO3Dw;S82lS06Wh>Tka*|n)&V8IIdA(Eh5DiQ11uEsIO)pB@O#PqkA>BHP3jAY1^V)O0)3Zm_m^uRQ~ zr)eImD85q)##JYQ;t+jaog7GfCT#7dEqY-ibJcJY$6V*@IWgJ2(uBE3)TSuZ;5Ypp zq9NQS)>nC^8)sx)du)1}j7+SQ)SZ%uI@g-YnhlVD`NL3f#aZs452Ej@_EmfG+I+rH zB;xS_nB|)lyqDm%wynX3LtmMAhF{JM`HFVesR^5?+OT=^7Q2l@7ii*#yC*FQ1${oh z$L9;y`#ts5{)zV@fjp1TT1;(OU_ss=(SX=Gjs>>a(j?FHoIO%jkZZ*mYpIX{&|-u&4Uxn^_S2`H08O!0YAm$YbI0`>6mF03Z9 zF#m28y-5CkSFw?o^@4G6mXU&PmCA0>fwQ=n6PCMm8?arZJ^<{{!CxvlmDSoI#$|9h9)^nx+38>DZ)ySo_h^F||d@BySB-QE5Md~;e5 zzv42Mx!Z8}8KYOUyBl%$uREI~%Oa#|liTHAvqkFN;l*!VDz^3-)3eG&wOI_#-?q#z zW2GAC>-<1tEpR5K?-2QD?O9K%ztzwK{ zw$Gv$eC-mn?bf}EMxav^Ux#p0LsJv74()1gD_UQ8;BMUbt}vTRaI0C}dTv+o(TcS- zH-)4ee=IxuFOaznn?olcbJ??WccZ5#Onp0g`J_RbghrY@@%|3mEWr z=?eg%T$y)%(mLiTTh_pwX=24Uq&2Ej4*QCVuM$VDE6Qy zZy0^#@iaZyh7PsvZuZxO?nCxb!|t!ClSQBk_VTiQ!Mm`V4HHypPOZ2+{)g?IP?qCH(bW&El#aB>ya$ zaqC7^_>ZdaExVeZ68WuSsByO2m^9K@F=FZgQ0GprN;Xc<5?|jd717@W?J_^VtNA*S z(nq(&qkD}tZq)f9eTK;`z9?yMCpRXWUqS94g>e=!3bjjYPoucJQ9`55Y~25eDs@m% zj#A=uvsd0PQ`f^_3~gV(pey>Ws_1#b>7YOR=}*ly^!En(Bf`1zGNe%q?-32AN-Z+O zO;Q&BWk#|N3;N@G+^z))XCb;Zu#u!lhv7j>L8G0sqS;gJFZ z-#blUd_Sd0P%Fq2SJ7&z8B$7G7RK=m$aSJJzFc78SQC@EsE=o5MYy z>fTf&winO;eaGS!F}7HQyke|ZZ0)}Cb!;ae#m>ZGm)Y32LG0+68?2jEMwLFsJyBT77z-Yu+y|ueB5{!uLjVps9+-+9eIbCElcle5C z-Mqg($0Np7`J2`T?`;yrrnfFA&M`CVXHW4T?GX1Pmc6?`02g#yT=TVE%M*cu{abI6U^cjGv@eK)CWt7O6re3Ug3XGZ0`ez4V&Vi_?+9UG8Sfv zbh9-gMz`;Iu!R>@Yn|K{M+}z1U$~<`(bl=$irifGV2B z1h2^KHcvMnL@DDjCX3Wd_pY9 z71Qv4)hFU?Z{(I1G1TldUlYB1`b4WccW=iN;$6{eo*psB)K~iI^7e_J>@>YEHkrS< z;i&0BUZoKxXRV~4#H`h-ww}wbwjD6w{d(3RP2_u%8 z#mRI?!U)ix6MFI?USAmifH;x`tbchO}}nvptRlcysxdreJ6 zVZ^t8Hm%Fsc9VJgmC?7z%!*(WA`&!_dGbBgAu$GAk@X9L)OoknlSMk+7)NA24geLP+5$wZ$Zn5|+HsFW{ zzXcDr2E@I4Y1A6U>#n|QE{2wSYG=2I49bl>&>-&KX?7bqS^3985jZF$Yi`l&G6Uip zyUo^+2jbomG+Q99p*5DchSo}PJ?00tQ7C@8r&rv84an!*-Ec*6-Pk?e9^U!)TSSv+ z%?X){MDI@Q6t7oS{RPn|ZrR;yzIIPb3&iRVd)l#|&`4WUZ|-TYUk2X)N>14Wn6gh{ z_Do#WF=Z=JMas;4;&7$!usFrc_3y7Yu`?MU(QzmD$iJd_r}RT|C`Gin+k)nE%Y)+g zNzJ$Ji$ppecu0KL-D*x3zubw9h$nzyEcHJatSu1D!kFSNY63rA-i59wwSpS#Y7c8y z^Vke0o3lPAUW4#IFvu%j#r0W~@iu-*+`9+fQt+7gr4bf4?CukPGs5PG{jyk_cw@KO zPV2nsmys-wI_Y4z)}1u-?W(Kan8+eK z3@MzNEIcMv#c8u%BSRP z`g1w`k<9QBB>yZU=)quD$DG2#l0x6?%UfnGs}&;xK{DZeFySVm2LB4SbPEe9Bd=%=I%&p)Xn{Fr`A{Eb}R4Q zoyE!)4VRNk)X0s0F}hf+YZeV^K`}zR?DYyIP44j3fEG7(UHkh4349ZjE<+mS-7=M@ zYJ~T{E-W4XcT#8y%!LTVg^xa^2m2}GkN-&Rv`?rUWja2G05*qMV?q_quxykE>~xJC z@md1qfo6EaTi4*jzbcH&(-vn-ojx+K)%j%UJKKIVP3_VRT2}i8!-yc%?}hb-NF3Pd z^)=OFH2wqf2Aj7Nhk@PV-;+9J2nvHlYBedD%x6;aLHcVJqao}#_li_3?r`2OAR2N(!Gmzgb03B%=FXG& zxykVABvfp+Cx84tR;$k)5sQ1pRxcebN^Shn(dWebd*EW@@L;%@+?|xh?RNR9lJ4d8>vB|yRR*@MdtmI}m;hp3#5#x(Pk&>w;VyNn=bnA+fk6w1sWk;TS@sZon zqk8jvk=9rwHD@wmB~dL&$#N1V(`+}YlIzWh;(L2RSPEHeBiYPOe$b@J?@l((%uK$y zP>e&@3e4==a25!M!iJjJN1uBU8$2&boN)3+k=|G>I^Y+KlExE9aI(J-Q)TvDFNVoE z>TG-e5z!#g+Nk(pakZISe-9k2UK#`%ih%ghuIAtP#WTV<-7UIcL!S{CwdUWM6Q483 zw1~CMYnH@&{1jbgjE&737h^n6%Y0hd~&H8Jwovjwbk@G(-EJzpcSse`^!?bvrdNYMn?AU-8S8uV4`fo``SmMW^%o zZWZsqslC%}cE2F5!~wMP%&z@np&1s78pU4+HHPP2DjKRVGBf5Nq+0andFGhy=Ggp# zi+s~(V8I3Hy*^YYRs=+c(Ia~bhcY0(y`vF5{pld;X~&KLAnNHmEn-8vNbM6Ty)D;@ zp;dH7XK3Iyal?)(VEEF@rv)jaff962;dLgUhzXLex8(9 zy5%L5dNU7ejvg_r8%ImTFt50}SPTpJ^2OC*kpar9T4v%D(kjz~EShO>7>h-E?j7cB zX8nFKr29T|#Jlq_Qe`3Y$_k9t4BsukJ8GV0ZUyPtAME!ns}N7_?h#)yu#QXt*Vmif z4I--w=eb(N_xHA%^Mtqi#b4qO2s)U8o}{*3i76F;!H3)0EiURYJ^QaQAIlfD=-ISJ z@tqVivlCjTvyP&-&krF@^_{xbBH#X!r4-!$-uM zpyO{?{DEw_uIUWiS$xS&y->lI7A;#?e+soHs@TojqvD}rS~b1WUz zS)YHd$ZR(+B*9B-#<55|qXF>-E3deyAhfK_d=u&bgXX<$&S5k399Gep<{23A?B`xG z$NIPWA>z&AKeu*^#=$)Z1@wuF(B{T&bL8dXRV>$LpuUgs-hK#0v-r>z#wnbC!vaw( zX+&rH#Di`yeRMDGqXj%1B5tS+i~krFHYR73i0f*NneG*r&%Qj;B#w>@h*n78uLre? zU*aI(d+-4s9u&sHG$6i%B_UmZfkpInd-@)|Js-z7BcifhjQ4(hWs_)5HYVfglkJ`2 zJIOuu;*lL_>U&scbkiEERrFjP#=7o4#6zWe2_%d3o~HdbH3h|e?(n4xHr%%X!!EwJ z8#C{xS2v3e91;EL)n4)LaI+6l>1wg1>axftEZ@xRka&DomH3m$6)n3U)|ht_aIU;q zjPZ)4TP1kl6*akHG*BMfi>T`ikaVxRZ^cQE5`U9#68b*5pmGy6ltxZ9vItmcdirPLb*r3dOwP- z$1u*tgqbtr)*x24&0QhrnVug>O?t~NjL4gYcL4+vL1*Z#gF11964&TN+aBob)OP8bo41XLlN^=4HN!BCv+%cDQ*FrSX?z-kze1y!}Y z2y5Fce&*^kOICoS6(YS|{0t|&#CNwqjE9DC4cCjGWl}(CXe(CkX7fcN*DQW80vmpq zMoD}HL7Gv$)tJ5QSQ~@<-re}~OJQao3nD(yF51*`O1xn7{cb;nMW8Dmz@qZ2WP|4d z_qWhc{s+VZNuB$BLGhnE0*ed8%+}Qf;$hKxMTht%0tSp zu6#C}y!GGOjW}I#0xQ7mX5I0#+$)~&%*?;E-g8+^)$EIB2hB)PQ*ah6+lZyJ_WS1! z{gTM+6FYJX#AdG;?ybo$DVjZ{$@j)N+r{>F>C3%K0wx_6xgK0VNecI<1z;sXa(!+u z3X3RDjBKp9nSf-ovoYD9UvX;-&CNV-4rR*4LJ2`r>CdI~N3K3)tW#Dc7oK8dczL~w z3z*?5s%EyIB<<&Tj1P}To;=1XS6sUJ610Nd?4x5O$^V{nvt}%|hH*-}wMz`6h!W0K zc6nx&M|?%WeE)&z3oe~8$74(y@xTxB>157Bg0_!;ysJ_C$>lX~>u8FYMIrH(BpmXD z%T0+pWzNWMvt(&djK#t3Vt+o2@#scT17+B0UbowP*n^1Cet%6)qXNj9RZ~GrF(2 zX+NeOF9rTC$@EnlulCyHIjRh#cD)%-VO$7J#n?!`yQ~|Qb=bKlqdeOyY&XFwrddA zp6ot=ZZ|Kxfr6-aBA$4w8%r(m^zPQC2Sh`+XFrt?S2yEPs5cB)y&iE&vH#IWs9odq zadc5@fX-yvU?XHKEe?puJtD0yVvhJQKY!N#n&1OI@vXg$k&mxh7esf96o(LqZlbth ziFg(v@^_&5TPVJDlhJMFJrImMDgNRDdFDHRy!K**)ei1y6-V7(xpt@3OS+lc_Wteg z0XK@&+(=6s+!7RqMV$#I^v$s>$4UK-6KW7siRQ`Yzk88`wWFuYdn9VtZhtxEBUxO<0^FHz~2~Y0*EUV>+sjWnsZpIUn-;{Fo?bW=R}~#hajuFJAz2GpVphjQqv^2_JI); z*f7L(h!l63qxP@Zy9o0FVHq?0vM;}WCdr8*$^#;+ReS|A_jkhECceFgoFYSf03ZC1 zJKMzvqUV5^*L&nPU*(+qdNDy#RB^L-29eNTy4p>(7Jb776@hYYES0jUJRZVbC%&|+ z9j6))*^v~BXW%LgGjol>&~DGl4SPE8`p?Epr1tt0XV7q9uex$uA_L=$Y&dixVindt zAL++~_gjXi4=N^rXBz~3*bMK1Yc6iUUP;kPV#HU;Ycb6Cubm6m$7?=^ExDi{&l9%5 z)6T5I3b)no$)81fU(j;6{>W4x$-a=GF>w#hw0e$;&m+{fFkg&sj}(0$oAQxuIPsc& z@obUT>&qcCB4o5fB-3-xBERB_OMEo=sIW2lL6BBuUWVtAXjyP|Yem-@k=ePmuw%tO z5WM03BZ#YyG<%vl#2b6MZ!z&;M)91oCvWnZN4oM0uUTl8nU7$JmMgBMXx~JiczchO zS8*1d5HK_EEulxG@a%?pmN}-aUi{J3-T_ThX=b9vU+n4r04M!LZ56mu0=?0W%@0q0 z6E*{SU>_PiGp2bS^sSxsA&8ax_!E~0^Jyh>Zh#)o>Y3HiA-b_Nyv}U~a&VHh%b(Md zzkFr`Ha3?B#94@VV=^AY8UOR%&i7Z$^!eA*CP=%RLX@xWsRE26{Sx-lUY&Rs%EMfO z6=^^!XL0A=K2jEjdDE>0a2CYFZn(C^t@%WCm6k&&Li+O3p zoLgVN`0(StBJ-LCu|6QiG>$IvlQRP$p*Us|1y7QaDJLm^B{+vi+`zeC?kb*ff%NZo z$?jc#(k7~_dM%FA@l)zFpAH?={g~qJF(>4kALJY7WaT3^A=_Ur{YyGGc5)Pj3zL7- zYW>i-W0p(Ma*1Rd@?lMv$NlHc*FET|m^tfGnBkI3XSBRj^qSb-P3tiV4OVp>YiSWz zv^TAtwcpp&P#Da?=G1Ae*tf-+tViT@ih3^sdN*Usj&SmQM;Z$KIiY$y)F{p35inmx zo~1)5O`v>}LB}gM`40rw1;t7;v&er)Tpkcpykb?~+cW2M6)DfNIr&3`E*eFJSDfXo zc~xv`7wf!Ylov+1!c;bBi0S>{uw1m)!(H;=%gb`^aG|n-AyvguhB$9QKI?Ug66< ziigk<#lq7|csMrqYCPnK%f+)VzGh4HM}I*CFc`$+mX9H5+U*MaivW2MuR*k@6QQhj z@q()d@w$Nc#D#s(#@RCkmf{(5Z$s{$+1p^s(HmAAjI265Thupq(7QS!4;>bW&g7Wc zfoW|OzJ`wwLlIjVMLNP1X6DqAV?h#7VM^0fcWa@)WRYCQ8>f#ZaW^N?U%4KV@-F|# zRaFV12*tunJ}q>VR8OtRSk56z(hTy8uRG_8+kN>Zh!|&1t%=gvgNTvA!Wk0^WsAQQxFDPfL951=yEvc9Nkn2CWfUK{m^CM&r zUoI%`n5(JVWPIGRv>(Bu{S-|dU3PDgzhv9e55D4g9gjR9lrpRl-r}anE&jrSMet>3 zEs~OSD;1S?Q}WJUOV-hirr@!rLZ7d0pO|D8e~@1?3vXBHtFNfX6Ru$~r*Y0y-wop8 zo=rt%7&?EF5IuVuA%G9L8)p^fc}$9yCt)Gg`w-6XQFZdzfTS}L!ecdbyUYAS%i6qO zUw|bXvFD~vD3lV@JIbMtVPs;t~A7byBU@uUgLS69SABI;VHXb}_UK8luf(fQ;fHU$3J-d1)sY@sV@GcvTB;Y>8?Rcqbbw%(2_ynZ}#Mf3%p`UvmZLO z-IzKS+c#nCKj(^h?P5l_L)0L0d0KB%{oY#^;Q`Sr^9|34H$T2}-GcRzhM5(TrB%td zR6LUJug8>}ivX(!n*@k34{I08A(3gtOGFl&-Jp3z3$$^;B_5HElNwD8wYO4L@{sn0 z|0;%W1(WgYzFPVG;|zc0Sziu*4A1S$1oZQs0VqL?&ijsQ} zGnvzKOMQJ2LUZe<-uwa{_g#<0Mgc6cu9uvnN&e5ef}cuMqg<6w^PU@i5!i{JNZni?uB{KR)DJz$P+gp>v$3uL zgNF&=@L%A>MZJ~*Y3sENfJsFicwP@%o_mB?OWwyjgX!4xo!c6(A@#bE-2PGBA0C)m zQojsmK#{eWv~^zhhp*vv7ME9L)epxDV(?e0jq~ML{OKg94Rq$jwZ^AB@xUYC+K4AF zwBQf$`U(!QE9TnIEJ6$M+fIm;wJ&N`4s(|ry796l!4RGoH4CyDhTmo`H}4e_dX0G_ zu@vt7xE@Nm{`2^cuJU|iWX3%eLdd3%wx#?qW6b0$o*CrLDPrhbQ zL3&@h2kY zr_b4(3LZQKa-L2%i@;R;s68rItIJV4^y`lf+DZvPCiqQYJrY~WM}Ol`yRn~Pn3rbM z_j8MeT>hrwFSS=YNvVtf()sAuwbZXB8uv)jyrIeJMt^kEcxOP_^Sin{x*qVo9OGS_ zcBvZg`5Nzley3NB#*5-(rGt<2(wtl^V7iG8YA=Id-K6X3k3Pyj2z-7WmNYoXU&JngZ@kXYi!l}VO|=fNvh&v>SBNWn~!_1 z405^ng+dg|qo3p_=D{^I51L5-MFx@TyAoRODQLZ?G2@>>{m&}#mi?r9-qSB8+N-Le zdaiNICn$?cQ&IdW6n`4UpCP4bEQ!g2v{OH+zS>;X&o;Y0+0Rm|b4IZS<=p0S8TxHF zKaVLFve;wn*5KTM_(Obq4?2L~u5+5MkMlF~6n&X7`FT435}i-;g6i3)^XVOW^o!>Y zhAoOeu%t0L^V5uqXdJxg4Ruld+0zs~^JMKYdK!GT^z{6+6?Q_)70TD@^7(do$!`>u z!n7bQr~rMR`*l#4`=VVgX51@cdI95H7L&Cwt+>B_&6%$HHN&powm+D9R=*0;F1Hh~ zyTF%x*X0x1uV}t(imFYwNA`*8c}v$rn`89rXPyL8A$7$<7@FKEFa}y2O@rH`2V^CpM*L94bgRf23~oR}ba?1@-V-ali`s z8wh`LDtM;fNOL@VqB8(|euvCkvUW))$zQFp%{g29?=Ow_0o22r;3DA9NsbCf=O4>pp1F?M8O`djX+?ili=)GwQN zCJUE4_2;jH+c9>9%JtXJskrwJ=-~&F{~0;RONZa6pSgX28pRLv+WOllaH!mcX|NQQ zI-f740Iw568LHLyx0#`t~LlHYd?`F%}hL3&{%Wqvw5%-i8%7Q*+K z1K(o?e2+Z1FO#uw%f?!A%-ol-h-#pc!_?(bT3TbC&G7(`qGFmXWp4{SNh#U#0BouH{X!MdEBnRx$SR! zSAdM}Vc@5JREu_U>32LoeU(Tb$W4!0rzEmp=cA1|87>z;^Yl0Ezt2zCdO@7wX2o#5 z)B|eC)?Ytp-ZWEv`neQ(%Le@@a&QOc4KMhpU5U3*jRPIJq@NzQJS?`Pf8&SyAOUsT zwH8+@cTkr*&F0e=N$$Qt>x~=9KfX40y+K_v4y8ico`SSJ4QYD@hW=Sd+Y6Ak7a?sg zv9zgqP3^q0NzpgR)+;f7l<`1}*W^!w#}YfWnJ;f`R`t=V;OGa_VO%EloJudjh1%U$ ztMLAyvWYL(T5%a?`~#~fqmGwRw1k>Wnp-ccWLhdZny*xE?bWK@7504XZ#`cs!bU$U zAL!BR`n@G7CcP~A7gp{4%I=4yXD}RJbEuYiX`5_4!+bbYugbp?v#zwqIVL_;n3{p$mUzen9u=_P% z^Ce@4Du25zS62CExAC^4{M@u1j+9ow%%6ihRXvaC@nkuP(Z4b4Zag1tGf1zzm8uA9 z`fB&8dht0$`8%E-I)J0-Ndv?S3ev&@-evjR*QDAlC*Kpl6SXJM%LX1c{#5oPkv^n( zS~?Q`M6;qJPf}s)r5de`$nFqcsm3d`@vL#2v)3N?5gPx1#-E_^sozx3A)UX&)@LVZ zNB6nK74GAkQQaQVk*ME9N8u>g0)3u&9U;di2RU}+-Gf*_s%39{b)_^||c1EZmb^|`UXNo*+xG9KxS!@vT>gkYc_3*z&r z3TjW*dr--jd=I?NPc$xs{}$-rb6-tJ)2~0eiGLaRG*jurs{Ti8J%57o1i$Rh|NJ~6 zJ@+Nh!N-4IAfoYuezNBW!g7{l36@>%NGk7K#X+c^xAZZhxvCn=Pq5=4S4Q~>q^GG| z-ggxr(rrB(tLN{F(epC?#O3FFPnEBVY1dx<&bK_3at8(6|AV^xBX;>X`Jp&oAVDO8 zG&1QU>PPKkijK4FdSo1ErEYVr#yg<#XyccDm^a7wi&hB}BYr}D(F)W_^t|%8qGzqm z*M$A5PS`JsFiwt*TS@~&^N#AD)1~UqviotIeW@Q0U|;-F-%!1)o>2AD_|UHe|0w^U z&Zh$h^n;wn%E`aS$Vm|emt+0B^HG-Sd++_(!P*PLfm zJ(KMDbi($)XghIxD#sgi*Xn~W^avpR64PC4EQ)81#P3f|Nsiyc6NP-RhW9nFzQiP; z@KuG3%Xl?j>2s>zL>K+yI7!YG& z8n#ph#8{AKU<-Rdl>YrJ;_r-X^iQ93!F%Q8kMj@e{1lx}d?)-vI-lns_$lqs4sC}p zMI~Ow3ySYPT^{>$4IBrgdP?CPT_Ydjg zCqv|2wf>|0S9Jbgbw2uG`6bQn(mPVWWPUl>h@?`O&hk+>c%jRDmKXK4x~nQfHJe;3 zS61TVV>JzxE9D2s>TBs5u5?w;->{)@^`^BODqU;0mRGK>+q}uOp>_+tYq6!Fa;*zb z?5tl|wWYGM-wH0-wx+T+T(fyodF7hTTh_V?YeLnf_{5pBW=DlqBXx@_*A#84!pp5U z_hO1h+a-)1*%i60p ztfWu*tqh~jDr-Z6ysBD>Rp&sf+7Lc@B@;B6AnSi4W&abqIkyIrD2!KU;YqbkE9>#J z!xnsdU@Ig<-(gWXDa7MNK9#FCy70LB%B?kP@l}9^)f?(*3Z9TSs)B!6S|)$J-}kWHW4wU}4Ow3?tFvJ_zdE!E(y z`s#L-Gx$?0YXyUR>?_IjfxEnoQ@l7qSq7W6f8=(pVDJ{5rOI;ZP7AS|!LM6cD;S)h z!@a63r#`Q9(TLq41;ux(jJw5DQ(a{V`cTGwU=kG~rR_e z7<5t>NI+eHsk_x$TJaUVEhZn*N= zxPC59dB-m|EkU_yapk_NX@1V4y_CVxmK-dNZS8rD{gzc~34_1ZSpu)wY2ySA)XJY* zo@9%vZLn@-pw9hHm*7E4#DKqR9FN@;S9zw@ktI=0BN1DQYUUbljIZfjT@#@(Y!7B! z?MyezjBuHGZA=xHlbNw}@y0Xv7>Xzsg>P}?L{n_ti5SJ@xSJRgE;az8xVJMM9Ehc; zS>OA<#qV+k-?p-rGWf2}qN!2d#;Ff2#Bv4)>ENo{wUogWE32HrqgGa&w8qm_#&rG0 zYHl%uOo>uEoMK|2pBQ9fp#B+TVt~bg>3^Fm$ z-wZM_z+%v*D^APbsT+S$Uk%r^HimmG!j>?|q(DX)Ox1%yB^ge)2B>s|2B%nAOBnQ6 zS)~llw6d0XHCSS0m6mC6t)0c-IxA}lgWIjFQUlS^}~2F~0t?MD>@o#n)e! zp#HVTuRoBe{y>8I0}1M{j;){5IItmq=r)6uR@Pz$Z_`MX2zIEa1 zYOI2#46<#;glCYONuZw(>IxpSDk^7?jeBAWF4qP4umA9n=kjt8}R$t_If-iYtxV~V2^*ju{bhgJpU48CFeA^N6u8Le;ec~6K6gXLDK;2{k@ zZDo}*XxAOIDvbfo&}qy*20c0}vHWs*#)dIu&{?o7jtB7t1BnU-;tJ;JlI8jeQW?Bb zXDL!SRc9kIcykmYr*5|q8T@h-qE1+scv8v|ky6$cPfA%LQp(!mNhwQ2N<2H`NeLt( zC6IuWKq68C2}lVfA|-x+;yYWOsD<*lk>!HS1j9AGUmUIxP7Z@yj7C46D#qGx4f0|J zn{^hH;kJGo3~8iPmnd}oY&E6YIFBnx5F5~?~R6FAjkBQp3CE3023zG4wk#^7G7)Di}{Whej!xmhBjtc_FL zG7uTGiCCiBvM$VtpIAf$7~E$OaXEwBGNgh*ZdOSJr|cHl09!3yt089izl8U%Ya$G* zkEIOOT3IWYe?PLb82qu7Rmz~<=M`3GHNbu5@uj6C!_R9Rw=2lp<8~9RI8QSazP-FG zjctt=4u8_9Fk}qUbAR;105UjMXBn^*jgy&Am7&SLOBofXrpBG3N2MswolHbbPHamoNh}^PCJcU{nInxMCzwqM4BQ_zKBM3h z*>Ob2;<#OLT9;8Af*4CQPhpluiZ>h&Cjoo78i#zx*21%vr6N(EVsR3*#3&Adk8O#= z9Tl33q){2>LBe8$31J~m5L)G$=V}0Ei$PxBDQAFF?92g?L0;G>L{7bG*T^6rWm1To z8e`d43lx?wSE@P0pqYyduijBx1 zcSj*|ihG2n8RYILL{81MI#k*cP^NybHN0i3nuDZFhS>ni8>c-i|<@8 zQRjkf@tq4M>Rd2R+i0WVTCICY8j0aGR$iXfx9?ba)7lv3v7(vJFb4yuK8CqBgvanY zJsO0^@Mdd-N*QEVn9vyJ9Yv~+;WkHg4D;v`9*-qo7iwUYzQT|DiU!;5EC#=AWtIJ0 zgCAH~r93ic+2k+QV93tm9@X1fJ2XfyXQCg7;QqAQS?Zqsmq#wqDBYydsLKrBXXQ<^ zMu|x#Jcg(0CW+N7Rs*rHQ{(fqqg2;lb>4LC@lYPack8?a27pl(StzB|8r)`Q*(^{H zuNS&)UNK1D6r&%uVwfbm`K9Wf{r7-w<1bcQX_xXgPEEHE%Nbl? zWi4i~(8?-juqdiJPHnOg8NAubTFl^=t*mkeJFTq64F0>7RnB0bf1mMhnhBX!snR+P zUT0^uYVaXDt51W2t-4D&c%E%%ou$E9cGi3imfKnO*eK|0nkXIvk}HPC=yruG8nQ0&bd)8cqpXeTU@H#CiNUw6>X$IcEmI%L z+Bjv?!JM(^_?Cu#VAWO1;4v#}F<12OR#qv4cHMCc#rHJ!SW5$zGsq7SV_X?rp|KSE zIdzj&Hm>^9^sV#smE?$F_J_eOu4%nhQyB-_xbj32$QG1qL`@9NvT7=2kX=+@F=&%e z$|N{UFoSH0Azramp)Sop>%u1aQHz3d27jQl6#F>!l8wmVIIX`FBB%JQ0_b3Hb`&C~ z7V2CeGI&`OBBz$vhzwRlA#!T1jmY4-C`7CK8i?mYSt2f!wZ(IxED;yV+TyuTmWT^w zZOnxdi{>&0x!-E)af-W+!DNv8tq?iIT?ZnAPA$h{9Rkn|ER%_t*pfi{>{oNj}$5({)uhpuioI$oyu<;BY(pZX@ zoU#M&OBj4H3XxO1=s=AO=4yFKJUYM8)v%pQps@d-QKndex0pe$8-9yMvMyY)p-UxV zO`g6t->SKs!9_YtQO&8PHX?&pSy@XMtcxmZQKW%G`tHxIg5?bU+R9qY;IXK>IQ5Q& zSkB-@mNs2HQ-gjxE0&1A=n7_7C`-5$YoP>=AD0@bOC{ndA1=G!s=1uO4xOcV%Bk<# zhz$P7%38wUv8b}K-QiPWuUZ95f2Bb_UY9^b-qR?l+OftwWsnymU;=}qG?t>CQ>WWy z8NA-gTJm`f-eqUSlD$v&N0%ioj=(NshvgB|hq=Ce6B>uOSws&sL^lNlhRpOzG(w zz)&!lud`_4m$h+fo{h-h&L~8kurA3O%GFo!mqD&`uxksoF~MqNk&Vk>h0d~YIb)5D z%ODeE;cAq)%V?`?IfLV^tTF~C>a2k^;4r%&gIocQIxy(0D_$w;DqNXXT>%EU0*Lr3 zhMkqguL!s@#)eL3kX5upTTiu`T+CpO&KkJiSysU^2JPyD3_9!Tzu%**x&jPx1=Meb zot5?9?=!5*Rx@~x&QhB69(S8gTbCpajnh}BV&gon#Beq909fT2;8hjoJA-VeFbNsl zpwSgMce&d*;{$yo!GvY?w!lIuV~|_QQ0ncIPlmb1wFGWWnrPL_=T|ZA59{)5EB{+` zFjIs%&t0=gD2*q9)ug7)zVHBopA7!oVnB$&UY%v}lQU+x)g8Ah#Nb?=W#MuLZ`A>p zLHZ^z{UC#d40F^0Xbj#NTP0`kZVYf$MfTqj8suI%I{2!-g;ET1e~1ukh?-? z40B(A#vpg)1iM9OC(xq{G}*kygkUkq-GG3W$WuckpoJu$+!?nuP*(UbXlHTj_t{xL z)!7_^mMl=y7lqGb zV|TGMzKf-?U5u(CwzKPW2GeJ{J{ooX2jOU_qeu1D(`Q)&`8}w zTV=ktmr3UdVBd>v$>sWk&SD`>AkWrZjjb2B@fE5Z_BAlE7(7qos_Njn$Cgdf8E5FL zlWfl8N)oYz>w7^1Xq&-b>nznaED&dK_kqhG%ML_w6;~O1ZPpo(UK9kVeLlhNr|a6;7N=vWi({LlPgapW z;e2i#8fUGgaU=#e%zcQ*h~*r&$$kK|0fQ_-aIqNVmN8qYWu+iu8;!ad+urA5IM~l< zRL54DXf(d4>$*>09sH^$esMli4Q_0(_$4u7TZzYrrJvj6(_r8igWL?HHnv`5#a6`W zY7Ia}7~F4VEoQJ$XIaXEGY;Fh3?7Na<&0vj%m#44mRr@8G00SbH?+QVIABb}wRRzH z>O(urqg%CGkK@HZzb>9*wO7g@(+zR_f9#!moLxn+@Au5)F$o|E1PmdVKmsBHCOj05 zicwJ%QPzG9donKqC;{{kLVysG8IA@7jY=dU%44C(5#=GGa!?WC0TmS_DvuzDIU*Mn zJSu|t0J+t@>RY|1drd&^xu4JdPa)EdhNH0dI zpg;SYH8UVx93`(Uv&(B0(Y}As@po%+>MC(2Rh_FqY5)?xlBE`diC+-|UZf?R7~10N zBGX<4Qf%`{`T#B1o}}TSp=`Jxs^xf6;Ti{~fB&;xeV5kQw612rK4aB@L&}nNy%)T~ z#4;dVlpt~0sK}uzW|zwp@kCwv1>~i(j>>Vs4H}A;9bj~H7J5V$xSO#S0Y6}@4d?nBGO7AZv~qyjQ`T9USxs4Qp=?mS~J>WVAEJf0k1aJVj$L(b^(K7lPtok z6_=|O-2)pQ?GmbvM~tpe+c+Nf>ePU8Jgl>wHq7zByD4u%<)ljY^D}b#^_MnT@H;gY zkcB=&`A#pG?jdVYqhOi#jaNTpLH|>2^0PKPjs@~g*aW}1nU$|q-+W51ljY&dpQc>V z@r=Y3Jp3r(ypeUTwcx}#-`Dv)HdO=a!6 z5nElICvay=9yp;)hI2|$5L3-*84#y!sZJ}V@OaFOzMDEKiybw(KwRtJs{*lk zS+UggRjm9qTf9_(Si4LUMz30yuL3cCS+Udy$@Z1JFgv6QAn%#FysUR|j(GUu5r`v0 zQ6SEfA?AHho@FGXF)Dh@AsG-qj@E$(dCx_30GWbE7l8Xvr~!z}M;E}^cvfnN9XYxH zKE;8f@8UZAH2QArq0x8avB3+;VNrHm+%%cj<5E@aIm=KHp;0UqgvH=w(O9Ag1#Glr zF+NY1mZ4O#T4tF+1(V!X>rdSmb5chDLA=)}5ur$U*7*M)xr$9BkGxk+!%@GmzO1aT=~Y;Y zlFM`xsR7?+tU8dBCQ$@DAxHt=XRHi(iLvUy&lsx){H(HyR}i4CGQox-ySzkE(?qJ& z$f=S{Fea{GyQEZaTB_wT+X*5~r(i91l|*q@8rUm5R>{9S33)87RP; zt>pY1OvpQJ7>NEl9+-%CEe40qlY`6#boBVPPJ!vLe9?8b_5SfTLGV@<8a+UkwXSJk zev>4>woUD}AjgJlg0?Rx#H3E!-O77Zua5T;HP~D;+`Jqd+^`@A^OHwu2@u;$XR{mv z<9iF>0jw{Dff&Ec5xy**U_~Qkv&ao5S_nhc0*L~3)Md0Crhz~Lh`8IW-z+JKCc3G$NglFH6GG(K|t zQ-lwV&qM_t`-@gCEFkB$Vmu(u6e-~5{3>F2mGMPWY;-9g_pVSQkC&tD!)N4>Uo_iS z>BQHq#Z_SFm*u&GEzc#(hdHYA6?*NetQg55h$`v)IQ3|7cIzOmdy%!F1$>XPx+s7DeckSgWn2DGE9=Kh~JjO#l*U zV~EAtmuO(Dv;e6A`E*rRWy#_k;Q3eAFoL83vX}-^t9z&$S9`N+L8~l0fDh>{S*QUYRhE3BZQAzQ zmseV!dV#N2mJ~ah_o-Gi%ExKuss>66D{lEOlTy8}N=hYLgCkYsyLuHb0;>~> zDrD?Dr*QHlV=Y#A>ttg+qHxL<#%jp3aQE+Ny^5|Cy7O79S79yE_s}2ItFS&cr6_or zUWIkb4h3rmeVIvEN96#T4SMd}`fzX+@gW))Ij z)~iT;TjA}2wax58>R`Q!RKW=UPpw?V%3sh@5{%uUK!MU?t&(DDp-?z2)>~4Hy|R^i z_tXMDs#mvG1mCkwaZjeVOQ#iZC*6xWu>-d+c%Rp+h~1*_>A;$*KV7(2udXEcx5|@} zz`5E&CkDPmc_Q{xg?nmP2n*O!mMaN9D~J(5yIUX)5-o&^DEp>H%d0dVoHD|NSaG~R z>ir>&2*)E}h!)2qVh9(Nt%!IbDBn6~xPxDV_oj8>{{Sg=>vf1%{5-<6im-g5?WDTaVP%cp;jGQ9P5l zI#lDzGk>Y3AuoAm9B!UTz>%9gGmbdVBt;Q&o*BoSXU0M2nQ_#4X58&xXm_WY1ru|X zOkEi39`j;9rowR@l_B6OO?MS|x3T)uu{@I1PqZ{CC~I(PU$D7>}&a>f0oAa z%PleVlRpj!ESy3Xkb|6fzzZw3y|7}-3oEv}uwtuYzg1?xA>fCUwS8snW2@GUo9F*8 z3&VM@+`Xf+{kA#x*Q(qOh1`-U>&C^Rh!E0asl;_*$P58-&R9jcKTUIscpZon$12MG z;L#!AWcBD+MY&G|%qVQI_BJtCYy@OJ@&Y=!{|S|QX`ypzacOe^0^4hhjnzo*GpDJ- z;Y1+DVt>&4r<2@5Elc_xu zm*OhVj1#zL#vbs@*xa5O+txFK2@8ZFAGSn3$gCHpxIwZcW|YMY_Ij&LUbY}6akQ;; z>o!v*>s678J1VTWo5G4aDXh4Q!iqb1$i#y44!usQEU$DQFt_`F-Evq*>n(|w4=enH zNiRYA&ARP5Os^vS9);fvEVi3VZ3mitLg6)fog@c=+5%X&2Wj9P%Ic~tpO-^CXiWLj zWe}aVv(13Bl+{%^eO?Z6d5~iV{M*3Fb?1A7?SQje6y9m97I2fXdVyipIjRrz`s-w!_YVxw7P>d0r0jqaX)l&mqSj>E=9(cj9eLW97@J z6$i7;dW-GIv-1^(O?pPYzC`n}9C`p5*U}jF8DF#=c?(FeixfLCf?XOhRzzQ;G3quh z1Sb*cc;FQloqa^-KIZp6;L#Q`vU%Y+grIQh!1&qi3)$;&M&jgf{;;{G4~T1A(bPA6 zv2QvmeX&nmNz9FH9gn=pJmwmL!LhEBi_PnJv3(!YBPPz3oUZs_$?-U3nqh;tXBUNg z1QsUe{K=KH;kQ*$x8wa*F(!2_0|&d6ZK>zyY_E@L+h)i1b#<`y{))-X&u`Ef^k%)f zdS9&*D0^_n`>bwdm^>vg?~IO4Top{8%$%+$>#g=3IheyT*|-ClN}ak_=@ykS>3KQ= znMfV)O*<8qJXEiaH$#Ub6RqQ=u_J#+L*=g5t7|gx#LVQ%vWw;5!12Junkx$qaW}6d z?&js&%r4r@B#`wa*{;XVt#X;1=wzuqwmog%S^;yUW z3*(awg@x_^W{I(9xtbnxixif{n!>`M7*kl-iLogxvL7ZA7FPO#T1{BNOa+P)o--)P zFHF%bM&xSEcuoxbX-kZ~z%XsL7`IQERBN1`A>UzV$t@sBRMuUOts-mw#U{=ckWudC z$fRUZ&x9b4x)zfY82erjfG_)Bc=h3#@!CMlM!4W**Aj5>WGnS#GtNw+?0?3SvC~|Wa3DEG zDvKTI#NxE^sJdo?`6C0i`D4Q>tlDMcC-g{UjbN|fcN7lhzg%?X0rf_sw%H!D;p7{{#R5wh!TjhX>}qAXuA z1PfPJmdIvL;05Egs}qa^*74$ab-XxS9WRcCpX(a(_j=t%j;iE?qs3p(>)wA)_xoWM zl_%@c!EHFer-kLj`xSm9u(~zzY^7H>h0CA5g=DoMVFhHNp^_ihfV|R<3bU8$Q?Q-w zX;^(fh3_y{Mnv8iSbJ&I@aW5#1H95As#ep9`v|>iOCVWANSlEyAXM@qov4`x##i2O zs!Z098*R$ZfTTo~BslI1LBvMqa^3Jq?JeCpez0T=&UTT7bAFtCV_m;Fb=s*9pXzvkRx1aFz3Eruq1DsGfdtf zE%94|4y&+h!(iLEi9TW*51@M ztFf+l&Q@zpAnS^8@dqsStyL5h2RsZLhFMg#@;+fW&yI_IN`j<>E}Z zoxbup-QEJtfE?gUikUJ2f|GoocOW<&^pX&q6M9JqP6NFp1m}WY5@K6jdU;6*#-Nvk z;2_XTLNE@!Bn0EnOF}U6yd(r8&Pzft!n`CzO*fcc5`t}xmxN$6dP#^|G$y?y#G`>Z zWda1j<|QErGOrVYpz@Ls=W1g0k`S!#yd(s%=p`ZAwz%t8K`_yKNeE6Oy-o;@CcPvC zdps`*!8*Z9LbPq0*RO(L@!%yP?$MdS>x5w1@RAUW94`sMI>SpsaI)?tAy|BPNeGsl zUNRnPJWA(zxtkopJdBig?RXZ+gK{Uv(flvF3#Bs2F`{@dCM<>y14CHX=_vY*ZDe|w zyciTB#ZX|YE-W4ghuNfuIA%5xsW^cOi*!lg2#X*%CrsqAw?!&;tFXv>I6_!yO6!U3 zjN!g+#;Rj1GLD!TV}%aZ=^!t4h*a9adfLHyJRYPVeSVGgxt{j9p7yyO$E@f|%}|e{ zP^41J)MLvKfkc}NEy9fuYY#Ub(aPU`#)2W-2C!fVw*la_8g5P*IE3H;A$W`}zXym$ zLeZ53hp-#~5}r;BOq!O~lAMEc2XHQlSETSHc~e+q%MiT-v2$IOc$fSnB~w=p#IAHD z@g?)Ol#FwauwwVRlI(KW;D}i4-_1RGFZ1tNHbQFnmt#HIgy7#l*yFm|=KOn;rI;G< zE@NfD5Cyd|moxw3XK4nI7g?Mwz*pKXtd{z>#&pUi)s>7VPN{%#$-+xmIP)0WXJo4t zaz-ILg);w^dF~%^)BbI5rGOc(vU375YF(GWVYK$+%`jT~@#d*E=K66!7&!gu!0As7 z+h1nbbTIX&gQ-6rOwy%vEcIi4CUudDZ7r;HDD|g9sXumz6ii1_f9xWjPVTFlKWAq! zgFq(vC+xvAw)9LA7t!pQSecyUnPej@>Y2nVvFe#5DJt=Q!o~7;*x2zd1am$)vCWtn-tQn32d~;L97Hv5QOyZH|ZCnNMi#9>< zW6Bf3&kaNDs}qec4ME;=C%fP+^-ReNLNFfOAOyE{ZetR2taErnRdO|urjK`<+Bs9G zmrbj(A<3iCoYlh+EFx7Fl3eR$A%1LgXD^UM?ByWX;Hpl@wp6ov7=kUX%0jkfpw+_= zWFnP?Y)ee5hapH%Dht^*&{hvau+ddn$hO?JdKlsidj#7HWKQumfM5`-PRO>@xY|Z) zTWVZA48e$11&|D2Ul{~DV3mbr5A0AFQ&FtVg^o z1PMiDA=~oH>R|}-jLJf`rT*2!5TqZKg(UI#Hb9VqR2H&rqF6l)L1t1}$gO4!o1q zaADzBoFlB*CBlj=FD!CD78O=(M`2+u^1HC&tiFY&8{S!$#0TU><&MfiAZvYb#)ee{ z8mkA-jP>(qjK^W}`7<6-a84^MPG@<3C9L>dR#;Q?Ap_5vgvCKE9uOA!o(D|AipP|& z;&wi-XVklITilV)H}e3Uhvy}KqUEppy2GnO(mqrnFF498=KKH;Tew*XyqDG2&qG3< z0XnhNR{hwDcLZd43S_C`N@7av=y+fr{z*~bzG_=120mMPB8Dwy=^{v2KwRKTf=>uy zOBCWECziUXKXp+*@%1S?5b0%{@JP@pi<6b(@o0x(;&==d#);#RWEd!p$6z7HI9?nr zc#o**svLWM_ZI3(La3{<==|=l>%%-=2=UC=tG+mX#fhF7d(1QO*_P@buM>hn(p6b} zemBG+CMisOdA%{Eoe%{3w93=dFY9>fvX1Ve@0;E*Ge5tZyZGKW2ZCYgYla{qd>bK% z1z$Y2?Qislp;L4bF5f?x4cEX)vp>7!#@VfUCg)SIZtIH&}XcoFN6%>8O!TM-6_X7v5p70!hP? zt8XuRAL;g0gdzFEOQvBc#fc+=!b?ItYPq8dBu>0s8VaJ3xZvrU^f;YI8|kFkVA4F+ zPG1_wDI`6JF0uicKv--@8T7*X=K`dU7G`;a9o!Gu&Yn2SR%-&UL09PtYhWVyd5NFu0{Tmp9!7f9N^#Fri zSge~_Gz%+TA~fRlfJotC7R|z9i^BL97Ab(mfUx4VfUw94ECqxWo9jgF?a5|{3`pO- zA>wkWnVT!ryu-oFz+kIpYO7{yt7dAeCbnX9$fNz#R?XB_&D2)S)K<;ZR>_+KABf(I zadRkXjpGN$W8x#fIUWg(jhN$+zV6h_=6K*ATei!97*YK3`(&zdWn3&xJ~%y<%XrDJz`!50qV zfk!oX9}htcJj#a10PsD=%7A!D9#+Nv5LRquVZ}BUR%}gS#kLeyY)N6oHWOBCF=55F z5msy&K32pBRb=J>hQwNrcYN|pmdzh8fJ#ANm?r8h(t@$-sj=#*vFfR@>KJQ}or+FK zBY=AwD+3asB9)r7o|?3tnzWvpw4R!@9-H)VonBdR$fJFx5++hP^aciF^s)a)ph_&R44~RQ$aa(?(ZJ^=_l_&RjBo-1nZeYoJIqv*es^S)wsCvJScHSYK zDnFi(*J8V8@8&*sDnHVg)6Fg3D4irCdJEPis%1NU$u!as_woW2AG_G8uHv{@OPBOR zdM#-yw|IHAt*x+5)6(1N`>Zd}*7vIT*u_fQ`fr*9SL<~fd969rbh_(a&b^PQ%;d^a zv3YSX?mOSM;%#sl0cPp&3&)nr=o9W5udE2Z)H)pH3C9z%9P^oCyins(gUcW^wyCOaxJwLE07+)zZ zV;=Z+m606@@Gxa{RnAzPqxC@3o&os-KP5Y}eN@F;OnV085Aw+(21pNNy#>syx;n67 ztXfmyW?Jxit(ngFb+z)ATdVqkA61si4GUg3cgBKUb69Ilx)=DlR2tU3CfyHw)TCFS z8`f`3x(fVLDh+G4S)d;~1q<|RIlEx+g;qxkNMq%5ODpYduYYi zf}H74z$ghKO<-tKUuv1YSP>OpZFN=Y+~16a$E+|R_ze^3C2~TkomCtImSz&nk# z7|5SllfPpMe5rYOF>tQ276JD*)?(nk%91AuZv&rUVvB(PVXVc#o0L`jC8>)$au^Q= zS>Uerk@rQwdB$1{e2cLb0aqDoG4S7wwFvl}u@+;=`1)^V#wze)V`W$tLrDTojZwuI zbX4~JH;q7i*Ls}+`ExI#4TwQx3;_9KH6jJ1tM0q+)g0tz-AWo3<%v?xF8Qwnnw z#bZkxtcmB4z+hQxmIqr98s&nild za4_R|`Q5RwA+ek4;ZJN3MDmFb;Oos`84wF=VaWHHWD9G5L|G~c`MV$)8}u7pMH$*B{^l@c`06hkHiz!+JBn`_SvzvOc{4u-J)ZW*dXO0C@cS)Uk*d%{i zx%ej{Kq5fi3;^O{kphx-L<$&2)BivQqU|nGfrAYf14%E^G9cj~Ed!EXL<)%CMG8oI z5h>tv=Kdtp?4_0?xyx!0h}ou8)*fbm+xTtnPaAXR=VtaAkOY(#;?CR5!!;nIDlHV- zES127PX)C=x}6r%cH3p9qB+)~4EPFT)qvPcoO&3zWnvi+E6J}Go&AbG01ES0K^};K zM#;lG+`5+mvDzs4*kGe>VynLeWk75-N?zM&m$Max#YG0ZR&V*Vw`&d=Qb_hwt&~QT zEU1viND|dnH$b&8fF;Vg!*!vGU>^|yvI-EzKn!LJ0>%-!v!sTX=y+nRiU^RgDmA2O zdNDc~m{JfJQgqVi1GG8@y_5n{N13J69%t!QMmF#QWk~=p0F$eWzuE%zr%+f?av|@_ z6b3}6%X(lmI{mF2D(Gj_B>IP~3B5pcivA3YMyJ2GM1Qi0AE$a*#k;*6m}T`;nZzeQ zKQg0x-rVkayG=f5!A#Rk;Jaer8&&1F$`-fYl0(r)CmHu{D`o7g*9n#E{O;=c-TNuM zAmXF*p@{#8(tn8fO4?Pj$>H&7E?ykzIBRRxmtFQ;SPrDoqJILhfz|hv7 zvD$i;wW0+KnXUn(j$({M1@())&qtEDMCdUqHvpvbauO8RcBXdy zTV{e9aH9QbvIg*-#;O6A7^|^V;aSG2jaA*Jthy@jzl_xcKCCSHOK2lGZP?DVSAn}4 zs|nm&S-$A2m3T{#1JVsIM+Z&|a=^3N^^MglEGKCn$RC6k(*tRZNC8i@3hO}HQp61u z%_#BYd8*?I(^UihN?AqbfcjGqG^qKg5bRKDOT9`i0={&VAk?lw5V*%E!Ps!LnLp{#PEEp?e*<(T5g9D?eExhRLAK6#rR zNFCiWt&KJ$J)Kb8F?;=?y*dbj!B+<{QN8OM20=7OF{%=CW&I6YUXeJN$dfy zu_$W*uOAgopo+IC?iR+%N7F=hRtO4iRcUF3Urz@*SMo`z7U=6s<#G)d3{14pSST*1}WAy;9 zP*za`)OUg)@JVCUfR%2m6vz+w3UyFN20`FTWfg)iY^5qznrEGF0{2sv|7)QT7)zct z0k5~BRUpO^DIms@R0;fy^}U%|sF_-*iiNhcjyHi*l;s->@v0z)%`lL(Y%J@%)?%my ze1mnd0eq8LXW2*&f%|13(<59cEZXo+YgPl8S@V~5y2P4R z1@1YCkx~cltt{8tY7X@#6RZM~)&D(N_JFRgUkh;AbwNiy= zj#a~FLk)-J5U7<0L# zd4H@NMK94`t;z4YfNwTd6UcAd#O%Ni1}WfW#>%cxc&)LTz^^IGCp?JVtv^lR5@Xfr z;w8pv0x_)&XL@~SkOJOstU7Q@Gkg=cx3MzdW-NG$_G6`WF$0b$YmzKBPN~dXDJybV z*h-Eyf$LOyipb8E51h*%bUvlBiz{@Y-odb`MC{hp|1ShCjkweT_mCX?H|0qr;X3># ztkmquFvla`HD}d;oq9~>#$hdonxtG=F2~kF*D7olHAmpL(oKdeXFCSWyuD5K$ZMWuj4EA^SjUQhD68iYkKu728ce> zmI0~T%TX&;lrA@@VP2@=up9!l;(K6Q4Tt3=HKfZ8YCuEDaw8UT%MHY-&@C$M{fn{}$dYhF^=SLQe1my}hw4(jnB2;>ir6oOEl_Lg}S*lnyja2I1$fj!1bw#N@? z!zXJayxSnQwU%W-+T!KnR(NJyX=xx(?PKkM06|?62*9>#56ercJuEM&HjNIdMQurR z#3C*_5T_L`65>WUUfhPVh&fVyvBrE-18y~yi0K1b@SV5g0Ue&Bdz$pPb*;E5*I0&Z=reqf0IfiSQN^jRHNM_UBd zfW*j@${GGW{)Y~qySMz=iaA|5cNlF`-Kcl(dj}D2;YwK>12KB4mpk}E3IWL(!Qz=+$kf!Hfpkg#(vcke)U>$2i-X_ZmPN&{Yw+ zxK8wsGygS!q#@a00LeF!P0rE+{Ju)0fS=S`U6mCbIYdY?3xQ9z%R!uBqpV4vzHO|9 zK*p||H3Auv(hwl=AX32X%|Q!+FS8*f&4nOtL>rJO5N*I)gErt#jg`e?R&=E!w#kTP zu!$59&y}30KB+On^dVaWx=4G4m4;Wfkj1DE<j3rEi7+orO1oxJ|*{=Cr0jJ4+p+&Smo&#mRXKzdMCjC)UMFQqmh zy(}xny_2lBy+DjoR*ZX>hGIZ0Q&x<7!D`8CRflS~7wdIvS%np^PtBh@`FZ*COWZh7 z1twM||NZ%sO5)^zWZV3!RdaRak{~A^B&smnzBpfpcjHgunKiyFjJo|st zPD+ynt(`C!-T!nuQ9ydI8sgM?o{r}W^tzQCT88&5lhxM!D#j3ziRkZ|Cihp92#a}* z02S7!^)3x7nZeM_IF_GxUpA8eO=}#d)d=@9BRSNTmZLLZXj+q|y-UYyp%LmBo4tB~ z%Z=3pe!y70z#EL!1U_S|USP0CGqpz(dk~pL)1ba@wrm177^@dZFv{u*NB|Y;p!j}W z$ubP1zf29;S=lGYY)9+6sg4IeS$Xm>EAE05i(Bh>v<=rgUL1xOY4zVXf7UlB4F0sZ zI^1kgA4?J629z}i@LQ^I3wa2%uA}>ax!nismQ%|kR&fn)y~S#&0pG5yQ7Yml5KQM- zOjLm%R+c=>etUkQ5`PVHz-NP8me^F5#c`FdP_Mk*ypsXHV60xu7KUYS8gR)n0^Pl) zs1MkuEdHV}^kNgO0Z%kmcB;bVR{EsMQdxCCpJ}31VCY0G?L;l@M6!aMr;E&^!nzZ9 zp|XktIjCRlP}o?$;sty}S>0~4Ke=+`j2zDUcQN7EGik+DD*n5*r3pk)u|0TUT`hEN zWzB5>+jX^)0hhL`7hQ*#t~&4>V>N&uGgcFLrLpQjK1(9Ie&DS^3ivZ)H8AO}J7Us0 za9?9Jf#2QPq<{|?s{zCkC36mDc)hkj4uWTcH(9F&Xw{zr3;3L|GT=LA(5eC83C3yw zFErKw@N#8!RaSN95O1_@4*=`NssgVy)&Ow5v8urTHr4>JGLyzufeVZ^0Bjkn3jBz% z27n(kRtCJ;SOdTf#;O8$+=)gE0QWUk2IS)taxw|L%A~5m9~)}`c)zi#z~_xM0G#+T z8c_uvV5|XP%~%cKk;WPTE;d#bI6MpW1HcQ7RRun2tO4NmvnkjFZZy^aaFeop>_Ge` z$N`^jmxFjV$N|UcIP&@+mf7GM0FJcFL3}XC0YBC*2l1&O2mDOC90Vg-JP-V>6|Dj* zmWDInOk-7nyDQ6g3}T+i4FKO@tSazuV`ad_#u@;Ibd$`}X+EueT=U0&SRSc;SK$Q9 z5H&uyT@Nhs$X5dkc%!l=RhCqAopZ0UW?KfRkwp6f>t7Y#9#{`3?6y%`+fm^OfpwC? zb%AxQ!i|CTxWa91@YR3}`?e+@rc&1h>01>(6j*;yxTTG_+AM|p1r|f~eSyUnOnYs_ z)%eiN^MS>PJK07^?M8(U1{RP(*47JH^DJI#z}H!*FP)b|yeY^Xrtrgo1!T0eRRrrt zK{_2PH3kMDE$d@KImB(Ud}3AfXnKxRvMdi>SlO7!nOmH$;J7fDny4R-znj5|04 zvx<=CbmgE?mqxRO!pgYjuL0 zZv&rDmOKOL%t=3s&H4*TKja!IN{;zWkovPieC2+f0-j+`T8Q5k2NtPlMPQwy5SMmV z_Rqoh1Tiw!c9wV+rWtD?8S9iF1zfHy-*wX1BSDTd_Ew9Ph2*La1s37+t-vCEJsw!3 zuN^GN7LvYRsVo;5|z5Pa?!#lvMphR5w;hcNF;!@MsI^FG4-FbnBEY#*Y$FOBj(qWpaG zP#>%3E{onioOVcHk(U_&9hE*H;V)xhy^RGjw8#NT(Bj|oMl4;25z@y938CLd=&!O2 z-WP|@N3@Y&vBqY=ww7Hy5|?Ag8KSBGg+-F!Wk7t#21cS~ir(7ML>g(SEUr7oX3k_UTP4Y)z^kyiQ z97fJnkv;S(nt`-jULIPRQw>*czRt?kfbTF?9oRBf3%E#G@?p1;9AbHpQ)Cw^e6xvE zfu|X(0YuRlr&L-11@b}}u)Sba3hJ4Lrs4H}$Sv?pHLyde{$~Wvo8nTa@KL z&S=pCG;;4%$-w4N*k9;>Ww`Pq2)>|N!8(9Yqy?lMQvc`m?lpSdqH^-e z;w=_=KLaM;YbtpOnp#^5B$)sYv5I?uM=PsHCQvI(um=2yv3h{CRB8a8VLyiL0p6*s zq6Vl#?I)%^!1pVw5QO@x{<=}32zZnJnyCCsR#I%QG!t0=iQrE{NX4;sGYYcoFY{N&(q(l6jeiArd$yO@-_QH5bDQ45Xc+vg&@@3 z_IrRHAir2B1fiDM8*)9sb;>FPp*|G^ftQaGggR=9^%{7rvI>n*R|G*I?>HBNP><+J zOUwi0CC5S#>K)ry)xbVw6@pN=1VP|bT@V(6P;-NA zm0?uePXE6^S(4O%d{aqgC*V#tMEe-XAwdoR?+#MH?R7GgdEvTYM(Be!lm~#nHdY_- zPsSPm{@qx8X&0+$=L*h=*2NZ(93>B2f%MB+u$4odX}gK!$!% zG1Sj25exwt`h_6WN*mupK!$!H2z9Ux+aVw$x)6lADhL9vYfA*J9I9W(x9=eYgTK%T z^;R3WLqJA)Aqd4t_c|dM>tbCX1KrC(Fw{j3`0BP%-^!sF{k}BBt(FRgfTV&5J^W?7}J_8G(#9S;YVuZ=&kTVF-qsYjdv+z7N^3>IE|5 zd}#<4NNsB++UVsVLW6sgmMY^_T?KHD=D`$mys^sB5s}%Q&U`26+MUsUync1U$uY+- z(t+)G;A@OGFK1jcuRFQhbaG~9c05McEFE2rx0m80j3<8-Q(fHFuifK*{XrQoGZze! zDV1)Kr*;QS8UTKbS}hzelRhm&9cvtNQT}^32f*k zu_7Nn@ys{q8n#ETp80MiUat1`Oo;u=2~{A@kiS&3LH-=gD*4GAtPSldex?LY^LlaH zMvYj{{5ynAMH$h1h_c!$i{0#1;AkS;Ga=rhQ&O9fI10Rc90#5mM}lX@vEZ3;GVNB1L%#$lYsMC^5z z_-EsAiGMZ@;~!k%i^on#Goh__@qsLqf#i8NkyR}h{@NCUwz_3#OIaYkDau04w(&Xu zWN;ROP>f2^2*i7ZAQV0mK_DJ01ff_JiXad#7J^U=OA!R(*+LL1r04-4-Yx{8LgF3( z5&?xER7mFoK%$}$gbGQ10Lbtz1fd8f=?svNDg>ce)`=jHFe?P1Sl5XlkkBgxp~wv) z2xPJ@1moaj*zFzm>W3=Ci6#4dVI86g^aNYm_pDNQO<-ZspWEuX2l#4TN6S11JlK}j z!yP$97UWoMpKYw3*uc^D&Wc zrmU{Y$h;ilG-IARFNgR-C=9$l$aUlpcvhN1mYHEI@j)PqZ)sh;;ucoy^y%XY&N98a zhv2L$KWXdBeRAS-ty;**fw8iC3?A#BuhY$Hz4{+dLwrh^a)t}M$XGQXOJB*Tj}7k~ zwbwIg{0A&G_Oj|(XiFjaIXMI!bcedl)q!jqygmr_5MCby+1X2SEcaH+7rkuIPg9ncBPZWs8AHM(&c9xA zxyCN>DqB28H$&UYkuD#wK`0s_{v4QVMj)QI5u5=Tp`vk3@(_bjN5J}OiNpsiWTjfB zCamBk8H{wqGykEH*EXisjJ)WvQX1{00lV3-VNdBzQyLI)Uv^YR*cr>tQ+JcBmfU_3 z%*sj5L4YiboEZ2RTex=5&LLPUNm(FEAXgU50;sdHz&6#)c1{lbD;u3s2Lz)}>HxBY zab>|+QN(}@5hn&FM!Mv&Qw~AEI6*MuNAv*?)luWbz|5^82IPAHP7KVz6EWZ&HapDA z!OX3`br8(1P9J!J4Wc2221f*wD#Pw4Omm)_n8P9+lyrkz zq^hD7f7W5d)=&BY9Iv~;3GzPo$?{7nXtso6y=ztEYkHMEtnARntrTfk-?Y7Cl@#=D z-8L32fVxt-Vh2f`Vh2VkyG*kKj3>kP6ZltUNqSm8Y=q9`7^U2p05g% zeoI%+{kEXafMG#B80XKTM~ruJWx*v`9-_0X_470x#%pXjoG~<3*f1DO*MrHqQam%c zk%G6Gm>iGphRs5MyseWTT9zdv_5rupyxtFFKOh0bV!m!G^8R?%bIo7|{9X_v#gIcp z8KxL8Q}mM&K4Glva|**UJ0nL-wH%R=Bf>H}i)X84I>=X8il_s>W8+^QVL|*rnevC= z+#h$A4}rsBwJV``U9$9b{ZCiEHHJQ3^JO7^r1`*=WtH3RRxmT9FU&L;7P-=zcpjV} zYw304X4{Bkh9Fw{Af8fY5Qo#YY`t!n8I&o~>ww@RWU52{ zR0160)r&*05Op>KGkwa+7udEay>9q24Q_&6&%6|3GqH(%Cn(gpt}RgGu`7QU!K+V_cU2}CIsn3 zlrr?0wNN^iomixazKz2Wtjyd{2j6b%ul|w_hU0j=DKmdbN5T<%Xmj#bBL`IBSz(iB zg>07PTM!JM!*%5;ES!HqVBs&ODv^puk+A4d_%3jhe&8jMVw<*;otHG@I29?}MwAMR z6nd!!u&|g!$g0AMld7;{uYE}e-7R{ZSUGh|zgU352$Tc|d_ZNz!#55?{8E`B2fRp6 z)w~>o_OfseapUj_x+p$FuU0#Z59tlj3M7Sjt(ayXvqJ{NT3!z0d`aazGd7QB#s*^V z^lVsTtsmwQ7r`SX*O$#Y>n&%sEq&J8q2FslN?AY5bJDkj=b7t=Au@Z!QYDYv(=J!? z+;jafVacwfXr)?|DbI~ag0(Hbthc9OgsU%2z)laRdF$_rM?Re(Oj%O-4Jl6Q4mJnu9FRXhsWjt)DLz?-h5`WjL$N|Z} zzB?@APqJ-kh7Vq6o6C$%<#u7)82chUgKUsen4{#!djGC5$mxd!>hFgk2pf@O?jrJq zMT|dZo2dqH>u}NlBx6WHlE&wP6!1D@HEvPJBq#!iuBhGwS~<^eR>c5(Pda;&R8R3*K+8$bfiS%56-tG9kzd94;FWj)a@z z#qrjjx!$A!=Xl^PtQ}1tktcgu;LCy(a2I1`Ksq3cA0Q#?sst0Wq94c~a*&e15YZWs zh<3^dY2F}lJa7o$!8CveZ3^@BkQ$T^ujO$LV8ZxZ|AS@$6Dbr$u?*#z>rX|XnN2MhH&kcnKR(zv$3;|Z_W2lz`1 z;tWVgic}hkN!-0SJH$!;pO4mlw(56TWM;r8jMWePv#~PZ<+cFs2Y%jI8IZNH?DT=R z1Swz${Qegg`27TaSS0rYiFTRZ)(U z@3!yUljLt5>qeQUfKms!lz0*rvp-QHEGGJ}tvH&MDv3^{(w)Z9m~SiHEVOq49;OZV zHobvO2G0sQDo2x>h$CUeeh3HML$G(3lSW*)NZllna{Dj@6Q;-k@sO80LEZJQ;lv1t+q@jUBLR3O1ld3;0g@BE z90UnM%oE4K`zD!266<2i|Y23`nd=Lx6jSqnX=>A=nwq`~tkl zHpz7$8)EMu2x3>NAbg2k-z^BDSLA?foxL0c5iD}RBW!nE1r8Xi4jeL86*z3HI`BMW zRe={6s}AHznml3$@}7#c3)s-5f!L!Xhu}pOkpo_CONb13m9gqT79nor=v~$$-arr! zSkWqw8NxdTf-&w3Lomvvb-=d7d;2g1@6m`H@LpTuWWWP$rBVkjFjfXU%2;*au(2{A zbCT2uWKQxufM8A%Ibc|VXa7K2BC~ky=!3k+^x9Eb zw1u87zeKO{65)9Y&o@?;cUQwK*~1XgTqAw3Xe2ac7eh?uvX}) zT<;DsN%gz_iq z4fzfO@LXdJ0WUCC2K=r^qf;c$AfsR}vvk2<5I;_$6aifj1ay5O|ld zs=#}VH3Q!6|#7T16hkrN=78Xq+ zW`#vya^NQ{k{)LQ!eZF791>Q%;t>{$o3GljT7w+O5=W%cywM;jhP=@r$V1*}Fb#&h z(Ma<~Bc8{k#&o^fNK;92I(oKR_s?eKJ|I?>KX*K`|8B)DV4t}o^7tO3lW0>3d=SE- z56F|`v=Cn6!E!1QJ1v!neV9t%Ql3Jm60ti|3B1cQ>Qn+}Gx?wjNhOF59%!c$ zBu9Q_pGt6t8EWb%XUaDdc1d0{N|k7A*oC0E!h$9l^oWr0BrgDoFPYeYgj!c+*>sC8 zhO}p<0o6-DG0wdlF~mss%s6a3GmaF`BskdAcxF7}Ju?mx&m=BbEqErOz_|BJe9Or9 z%y{g3W<2^mGamn*8D{{`jB|iznkNdP4uZhB>W4xQ z>Q%PD8U&s*N)YN}K@fP`C_$*Zf?(?Mf`hkZbOR4EHw^$;uDS+SbEu$x;Dyzi zWx@iUZ*i0X2{Dn1y}`SXH|Y(xS_E%Up4b7;{92vn#K7B`gZhtGlb@kiCk9???&wcb zM-~rhR}vFkZPw}kouGe>F%cmtXAGF5$3n5rQt!OLA}YTTSZTtn$95F;#9OdgeXiPy zFcK-u$j}v*8pbY|f%p&+;B#g~3za_vV*&rgA|=CE=bHU8;1`u8TeFTFf_DKW$pHV; z&2NZb5jN+1u%FxOFf*W9!|F9jQFR5JAnkeyrjj)OWWKDyuv)(1H8jneZc#T z)dSpQtUlnw%JM&ChahgG8NeB4{0zv_Mx@dq*oP~F*D~NM%xgV(3s;FQAYN;mAYNum zkse0n%D`d>;!e@UYsr%=ZS^o3KNeUv_7ubpa%mC|onQlQVeBC%hPilO-|@gx&4deM z<2W&_^Rplpo5G3FaTaazRZ%+5L?^6&q)Q>_?2EZXT6>rNT}Qa%fx`eFqD!CD<~uQP zNW()fu1iB{mxh>ngX4zcUb16*x887V0Fzhc5DWkQi}|wkfWko=AuU`P!n{Ss`n9>J z#T-H)yLTevK1!9T*IIOOp{1DCVuitxErK~@omQH4T4~m4#kP65x^F*o7ON$CUKYK#=q))TqBPRW5<+a zP_K)eU-ULgl1Nw|v?7PNm0L z0_mBk@TGypZ2DGXwSYs)a$UV#@t5>UC8VNHSWILGj(|3P=hNDTevCZJMnE z2_;!MbmY@?$iGyt<15Q5htJ3%_p*%8Ah(g&Tu+EQl7Lhk4}M|A18y@>M?965N;1Yl z8mn)%5!nC|#-a#FTIiHtcM%Q2^$n~aOx?iL2b&Qa*cBtnSvT1en+XfMgrwL=?b1j` zBU>>Wl)GrnZ`7+ZI`#dkjR*dt@z&19DKx^BHN^^;T$x#&449RZn@I2ryILm)X3Zgg zb%d#x&5A1;Zy;Pz=3~|#Qk0zm^Rg2I;~Eje?ij&|5s_G3#OO0t7Zy41E}Mb+Vry(J zFNKWLn-25dvSD5}VB#8yL$Z?V4miYS69W*NPK@BZL-T;+fgdy8{2a`*;$~woVI?Cn z4eTa1Ca6RT6aUrnLX*V+;nuz=*xqd2#1kZgk|YqDU%oKHtPrf90so{^fNT!O4hylYOpO^2Z7JZ#wMGRvH zyV?O5!`@ZE?uqd)C4soXiGe?DvtECCAlZ+Xw$?N#%BCqKaR>{Dx14_Pf##-u;6cjj zs;nHzA;>wR4v4#)I&g4ZKM)r>F>vsm9oXHaZgpaD*5Ekjcea+Pa&j}(98d+$R@UUo zNM+VZm6yARrgM}R_JM4{tga6zx?HcWA>hv|PsYlZ6@ERi7{?q)yOQ9K+5oMVxq(r@ zIj<{4)!?pgD!eVQFl(@7`s?xiwcV^GWcFqpeA?RDAm+oKvO!!wZx(OF zfh)Sm*hHqV7HLG1KZF&VLRcgRB1u?r1PLqdp|G?+cG*Gg!BTE(*;euVe0gP;{brhE z1h!UMmfgVXjMV^sMOpH<2N&lMPX{?5PglJhL^v2tnynftJDaL1@D<7`9^oL!Rew8C zK}rr)fNwBeP2i`D)uQn?8>t!IOnNnFM&tD0d6_P!uJycZ({z3Jnh0?~< zRn{(VQuJQE%5nCI3TaH+bNUcGy{19IG`-?w$y30fs0a9Ym3DsstGfSgN%!EVJ>YGk zP`~a(rrD092Arv^uF6S^bBNa}vv_<86>?GXBGP_Z;DAs;sJuYkdTS38sRH*>mb77I z4iRcg=75UI(_EL1!L&qd%Xu8_7Z&jKs=<{6hYGW}?I@+Vyy5n%x2cMDS-Ov$*(wi^E8uZ9sn>wK z$M3|(`iIK4r{AX0Kk7Eh^jFb8O92fe(%LhR)O50)|%329`E-_y%1QPyIP>o=hqZBb1MG^2z*6$wR z-Nwou#01v(M%wG1!}M-wdJj!M*xK0uhIS^C5$$}$TF?Met$a!FvXKe$M;~E?N*h#) zk=pD<#i9 zcJ;^YawTb4sIcDxS^*WF+g2fXTQkHE6&?^+Kt`wRih-e7LuJh(xI(jr#%k8tZOsBd zqC8m^5;;rEG`+NRy0x?yI8#|&mD5LZ2)ZHK7=(1gnGj68h#2rYs?P0A!J+59Wj$xe z;24<&uO5L2=1A7Iduo^Wv#uwrs5|u5&rPHkIK!-yJo%wi5J@r$B1~M89D#oebpfYn zU1H;vIYiK&^bA!&WI&bLrC(LP&$`hIyxdqx&nOi{lAa-Qs%cpW{IIclftM=F_Y5Lv zPkM%`Ad(C|x;WSDSOdP%SPkHtlvV5-py;@)FoEoGBzXfb9#s|!*OsiLQNKzHx*(5> zIiB9OOI&VprEAKqKV9VRC*|AknF0lDiU*Z;V-b9;@#g2?(9V65HvJyu>OrTAUCuVf zOZzfg@4Zs5VkY1n#;ODFQdZ#}sJ%Oj%4N!-6h>&1Kwb)#uEyEXRHhubSD$< zn^pP*E7kmr!p|Ga{;=zhjMb#w4+R$RH_F-e>OonfvaVW5thZgQr%O#Uim)OSE8RnpvX7 z8l_;NR*2PIps^JGp5F7p7ZseR7I=$Uq6R$9Saslu$|?d4>U0yV0auI?gkpsx5efW+ z3cf`468p{#PJ@5JC`D1@D{t1jG+BlTkS0rA|JSNNMysbTXJ9I$;blg@Ov^p0S7|no z$4#;j1wI?3fL*rSYmQggZ7h2qfv*yZdf;nJstJ6pv1-8ADXVZZ)VoZu2Us&!GFa#% zO_psQkWx;4HA$Ii!4?JSt1H;bp|-Y0w1Dk3q`Ug-)u7+ht8)?fUNd$wt6rtIo-mOH z@JVIK4@^38h)!!)gQj9inI3^}QYl{)g7%AC9P)AFWh)!E-Ti6sedfB8Q+o3=ZJ*p3 zDelB-Z&V5P_A+cJ#2YWdq937s$<)Fj!6Rm+WWBh(c6qiLC<78$vh@aLK?)eEPZm~3 zs`PuUR1J8RvFgCHl~n|KY?Jf!?zgO94YP)bXHb&gYPx7j9F}J(_E*r z(ETKIsBBv+HISA{*66otGd^vl8o*1GC1YzOhqyAxrP`C>_AAx?N9$}8xUVT{9iZ^v z0?Q1q;Bi$zxJZNpgG-W#z<@y{u^J+0S>4sRZVVcnrVqGSTuT}x9z$;lXv=Gmy^!nB3SGbl>YKbao;wXV>wukls{}p3xyGvPsxZ9s-T>}tQa!-^jg#+m^;xq7cN~MM{i@gx3&{ind|K@{URLz-sx2f|5=r38wG}D}Io}#r zPc2l(LdTm_75E`z)#-caRWkUdt90;W2E=_Ob2#sX<4!phPaE098#Kc$Q@~GJE1Q$l z=G&OKSb42UD;{Ftt#_Ny_U(~ zB|d~K9R|{blK0Z)srNE-Xbm`JV$oD71>9a)#S#YU%|S5k9O~a^>Z`!(jnx1?W2`EW zSIoTiyf)%XLtm+e6ZSp4&syMiqw)_DFIh_TZI!NpnDqF7MTMn8kyt zBrz@1wq9Y~$bj2fYz)LrmA~RjGv8=Z88B3rEFZprX{=NW-E#vAxTmtZD$7^q5L8_9 zLLm`AEh2*PZ?*n4fOiN?*r4r1(^dtx7fko&$7_LetYEfAAvKo_sko)G z;EIzH)vqwcRUq%^$>X$f_S$NwEm>O9MpR0<={W@D{8*hcJvn^9GW^)8v$Av=7{$^< zAZjO9mabek?j(6{X=YN@R{oxxbjcuWzMu%+hwZd%ciXc{GG8Hz`rR=9wIKz`O@%ueOFYL48Z?XRuOMd;aA`d;7_b< z2E5l;$pn!$wn}54vBoxmp|SFAAdUUDX>S5)o@;D1hq^Ne0%@Ui6c`$tY*_Bp7M*8` zvd=4|4hbC;-5sQ27hSK4zGGd?fR7ui4y3xy%91H`n(zKgeN_FOvFk(AA5D1`h;o^U z;#LwOSiiG!$}}*Z=#-Z);&RkBVhu{N0jfjoNn{}MFQz5g=g}Dcs!GXHi*`;kEmh#2 z%JT27K^zw3fQ#DYAl?_`PF1)%uz=@=qT_Oi(B~wx(b}C%RWA*z1r}`xijtGe87loY zE7dw&VJOv#9k)qE{%ECYz&}nZg#FvLW0hN=LUIxe>{V7V5}}p^LE!pPf>1vWg20DH z2}1oc2m)zxQFYwrXS9#cTVH#D`w zI$Cj%smg$dD63O8J2c`0K@3QZ@+an2QsGa77!cDrZQw_P7!Wf$vG^a(qegK&71G19 zbvwnDX>Ia?)hRgy3gk2h_&t+beo78OyGl-t4pDh*BuVl{Wqnhx!iqcdA`KracUGn% zJRsVE^x^-$Gb)pd9_^@C`TQktxv}cNb;_Dp`Qx~!r(V*L!}v^)1&-gM&}_0WCh3im zFiu-jr8VbU4NV}G7h@IbPeBm)jIs(rsL+mN&Q9CWq8%SM^$j33JM}Fy$;H zRA@&soy}AoYfM*0WfRScNlfml(rc|$ol-bQZ2wce`&5vMgL|>wTB=ufm;pZ1idBEC z@czI8K4Pq7Hh-hu3VrLPl|+iX+7vg5>O-kMs^4UF^#L)l`~l99c7bSmE~r z>jw%^Sh8;EQxO{6SvfEVpQ87=Fa_YD&xkJ~e%IQ%dyS!4-YxU|@ci^`x zPlf?1=ziHE5LLKC){a0zV28>n-NoxyTORn)hYxs}G5cA=^rCqLerl|#|T zt^H3LT~S|bX3h;dzl}J-pAWXl#HLuURs7O=Pz83`yEaLDeP5*?vQpV!6n0vv42Ys> zvJ_cy=~*@|+Qp$|b)6sk|h?eoXb!Ux`SnyvwTW1^!%Fu1a~t z2T46V;)8xBXaLd_)eu|Y!%1^8T1K-v<*69>KC2)DQnwQWQ>mmZAbxOSFWiV0jkv-p z>;=*mF)olwWb6Vb*b7osAWbMq0#t{>HbtRSGT!gj#@%m?TnKzXS?<@fODl78Xe_j) z-(1O06nAxZV}qa=Y1uZ#BG9~8C(#G|lHQYtg23yPRm`qXcLhPVOk)+e zNm+#;6y1~70O_8rvVn9@q=2EP$vQzRvOjJnQFyfSuGOnNGyu{!*REC$^`jsNq;G{F z6poZifSa^zAqYiZq-r32k+Q(htuc2s^hL%W@EU7v14u_)BYLe{cLqTq9VrB%=!;YW zq$7nO6n&8`D3HELSzzc^Lt9{%B^t$F2+<6DKv}NFS~9xRf>jFMZ@QYmc3tTc@Kjd| zT@;jG*4;Q_tyYkh>!sXAYeNHws=|V?u60`AJ}X!UQqVtDUi&Vwh8_+jM%ko=Ut+nm z24s$scR(-JyO)~OAk)Hk0}IF-@8xbtYphb^Cr#G?keZ#YY7RvW@}f#?l~jET^=nOi z1BgPWzEz?=iM~{QFY0Mjxwn3=hGw2>x=nw|Czy~%AgE7L;Wnyv z2UDK``Gt|Zho36yk1eyaD&TiZGH<4(k~6I-YU%^b2#%chMS62D(Np)4x6}~yw z1h(r+vskLDg|7ElyXwGpUFolBu+%ICvM>V9RaVgU@PYt_oy?J25bI%c9v54DE1o)EZx@TIOdUHM{1wawsa0g*p)Zg3@>_Lp^&pAVI89^Rsh0Up{%u` z;6)0r3@qUPQdVJ3sAqy8kYrbG_p}35I{$^ zf>3`C8VzcyEd)E1qH`rPf7-JaJqzcCO(1=7>RZ;crPhunkiHaxQ0E6hAblwWp*X*i zWxT<*p0)C{XUX)H_NHWvq3*UZvAWk z>71_-g5I_F)S6vs7%b^QXe{%LHTJ(1J*`)<1#rL`)rR2pK* z5~Wk6hpbdT)twSpRChsOQQfnFl~$Lmqo|I@%d*Fyy3$E85#UQ3D=ntUB;0W7U91E6WYYbPsy4-bGp*tsJ|oRm90kiO6*- z@^!t+5(@YYWtCU2H!Hh@f`1XO&eHgkq8r$LRh4P2BsyxmA?w<7e9< zRVzlQT)=V-r9y$ShO)FptAw^_kpe3eEKo_Zo9u3Ab`z3pyTx8zu_$WQRg0n*HEPAm zMP0C9)vCFOirlKJ)+-`c_bMuSQCCH+Uew?7%*;FIOeXuseE0kP&8OXS&U4V;>N^<X*Sj)u-24x0R9=6J4=TWyXT%~5`gJ7cc5n4>MooX8SXUIwtp z)Mv3do??z?m}6u9Lk9n`IsVKX<=fef^51We|MfKTN0@rgH^=9iqkJuSnYmtJj*Wcs zRq&nWzWl~f&0Oy>N6~*{{^{)0DE|@T2cI&>PGhIEIX24IjhwuIN93-XME)bD02!S= zVXp5n$1!t!$Q&CFD-7Q{bG+OfuQA6)`I`*B%N*s6I=7f>i3hSuYRvytBPZ?qj=6r= z9Oc!7zcSa2`L8s3kbaXg*YZo4C38JAiN4-t@b{VH2h8zybNrM!%F8<%`45}>e>X>Y z<%|5zfV?qdsqy2+{LeN(hdI{Fai2Lh9z;$C)nOyBvr*7oOZh9!b;%s7lgJ-u@I~gh z#2jUl;!$(`xH&c+1V7u@OYHghB=&onDc~q`JlY)BH5P2Hr9IMq@#jO6$cvnmCvyK~ z<1Lk|)=@Q;; zj_)zY_nBj3`RmO#;YH?nr8%a|u~EJd*U0teIAo5mGDm$k{44!g{9pRz3n%d}na_=y zBBcMy=PF^z`fQc)!xx$31?G66IX22a!vH6nqr|hMxvrVx9&@al)w9Ii4hr)KK8tO#a>GSTo1EIgXj*ggHw2ou=G|;)3bQYm|Sv z3CM3X$9GDAHu2|chG%RNzC}jv8|EnWlJ?h4J}IY>KWFq(FvoA38^eD*PKeL7ykg@iXRlz#PA5j^pMS=G13DH*x*f=J*G5jK>=#_4Sno{;fHVnQ?o3 zlJQ%9*X6lK>I|ot<7wt-im?YVqs)^&V(!$fgnP2aT>gtW*37XnpUj)gZF`t7XHPTZ z&oj;O=t;&S*$cVc+`rl!WqtiobNvZ(+-HumrEQ7L$yzfm<;`)}9N%h=^1-pJ3mWsw z+nzTY`CfBuxjZugeuX)9o1=WYNWNdSRVK;}6_RgO$rrmGGjjhkiM*`GCXAkBzABsF z4aIwx?LGNI4(Mw9|J&b#ptr5NT+J2=?cJ{Eb>^}yhzD~Gmn#wA7l(pi?5Y5}Y53p9 zfi)B~Y7O22bbK0_k3*(Y<&FnB-=}fK#5Z=Z^dR^u{*O*m4%aUAX=Lc9ozuv0Es?x> z>ULcUnZz_QImpDPk$DwlV$;a*^GmK9lr5-?fV&X2XRS6zNDPri6Knwla}t0U2|U6M;-P$Z0^1gLQE*9<>6eF;qS*XDyJVgYdPsX$QFq z$f!jMgPBx!v9x^{W(>>8LT20|l&Nkn>wWjQge`fKNLLf;8c^QzBgKPpa z>L58F2@Em1Wcp!mu9{C$o79d>fhPgfhq=Z2sMEIJ~ zaR>P-kT_PLq0D!Iq#cBBXpCVss%2Q`3hJD+264=6d=wck7U9*=kSU!K&9w-~ zxPzPxBynm~W(|-L2e}kTa%oiNDj@OGqR0S{vD2f-P9PH&f%jgN8ps#M&(JcuWqbkN z$g(I>V=jxRT;*Ifab{HJ4#;#m$bKMc2l*P1VF!5#NZmmm0}^YGmdu~jO*qIL7^Krd zo&jXkLHLrd2?uEhl6-!&g#& zFt%I}+WjWT#5$q~UllfH5Uu$S0*Rj!<+_U{JII%S)Es0CNZmmm0W!8C%JoYi>6Ouv z4+BZAiXw9`KN@$C7?9y}qcYD05_>@uSq7xjBDtRSbIw|x2ukS4sxPzY0pIU6j*Tqp zN4In>kTkX`LgZ2)wHHT`%|J#iB9Tq^Tt6^)Z1U-!YL5CNk&VwW z;2-L<0Zn^nD1bAGY;^<=rH!@+aCVs^!wW{X*fk>aZ128AHtx+yWaIob8rnoZ$@8c~ z*2gO*m^J;FHBn8h+}75FO}8sCgLa)2wkwi>=7R6Lh=cP1{A83T2Yof2ivq z;3qz5i)4P?SW)&YrM z63w*{NXbF6K*k)T3M6r<03S`2{^rT9eawS*pL^ug^-36KWCHjsi07AkP6Zx=G96#XpeH5+9}d^==DMMl-+E+SczOCetXQoGL6yvjw*bJl<^8cDOJc@rfbL-AUx znD#Uz(dur@leAVbI>=%moyDlkSwQf<2wk5*`i`z4 zEqF7Oa+Ior{F!YF#^LkYf(Wn;Ni2B3wO|?&$2CalS<2`PtaEp0onGHIL9mwkG1_R> zFZwg(E&Ww^!u48X^cd_pAlJA>Ub=Q8#%RQ`a#SV*nOY@^RDdKc|M#s8N$ZU*A=u^hAu^IG~hmhNhAcfqJ7si6GLSxBYT4T+63fcY} zGBqQkJ>h?V3_r`XLRIKbK;mx^&4VgeE*Hzg2Ep5;Gh1^MjJ?%x1(hxN61Fc(HH+~6 zQxK#&-zG9djs{Y95bk`JMnnd?wtcywOfY5<=1M?jc$!_Kiy)JHyOhIRn}CeILnFGS zc_4KM83K~V;!^kb0-CD$ZV`l6Z-mT5En3dIfee2zihK~rm_@`_wJqqYcVO_sG%J#3 z+gJA>8taHX7Gcq+;)h&gXg_=iH?WZrN!Fh+hG~CZ3hzG&9_J?d>ck9umA%3EYJaZZ z_tjBqRW#T*<7GF9p}O zSnA7|&*(Qm&)ODCAcG7IiF%H07A}A8BYPLmgq+cHvFo~AcQvBw{6H0J@oHb}!^WQ{ z(ep#l>Zr&Bl@iwP)t(@6yU7)l1}lA)YB@+-gq8gXa*a61?}2oFRB}<~$Y;V{20=xU zjsX(vjoS3NK;jN^CXghWto%^rS_P!jky#65;$zWrE@L@&M3EGb*vF$t0Z76@ZeTeM z@@AIviD<6(0jZA)B3`GpO0WAF+Ko-ONSf{5eVg?tRHGqD&y61=-qH!hVF3_H5&=rq z>ki`X*%1kSO0P@I!0Vn9@wyT}4XA`}C;AEQrpBlrk7m|)%!ZGZwvVG`&-Vz~uFe^> z>$0$2dK(~YmMZfOc!F+MylJ~A^clz`RNEn=a(xL%r-OV8$go9v^0`8`k}K3L!fZc) zOzczI>vTE415$F3BV&-+7nM04$gqQ)LYaG`GOK_j@yM7S^~iMrkn#Od#r8 zi~;HVuE?NRk_Ywg3BqM%rrcYJV_*%n`Ur9je?N*m24wtULAr|rS@P8%5dEn%_+wMTWa+8de8!#u)V`YagW5&wWSOw{^@&IB<(Jcs9?A@gq^zQz!chiBKeSQ}D zOlYkBW23_+QHwGsKqmc@sGgSqNjxfgrp#HCagg(X)Ewj@AQJ}Bz55Cv$)83`&M=oj zv~mV0^H`K?2W1@OO+dzf5tVr_koYeJk@&1z3JbMyodZ)v(yV!c*%2Cs1+|rTL|F8x zj7^81Ayyv2jU}EOtvoUVE59jfWlUunKla!IZ6rh+lUVs~$P9~&s>uN$bqD!6wfaAz zRSJC{Nb+%wXq)~F$jGmvGJgaz?jXU@h%LX4$~+s$h=ZI2WZWWHn_r$9$ZhNVO*B_K zWF{;kR@N=0m7j%)F~}onwypf+46JBznT=3_RhJp(j)`T?MDV zcNYf-s+i|?P8fSl;t8u!g__8yx^&VOzcslOat)B=@1n@{Kt>#72aw=I(=L_k4M5Vr zkLG$WkWquo31H>*wDRyDvG3XZ-Q6*#BEd95r%mT=aT0}fkYo4BYFXlC;tJcY%+4fBC zN$L1ACKUE4@#i?yVjj@BZ3xT3x%NI!#50rDGohB?pBx!p&@;zo;F%9bJhRE-7{8i= zIU8mYoJ+{7X&T8m-;e)u)T26plq8oDKaZMskV{!|n<-hz@F}^PgA{jA3dY%DflI&~v3eVrAV5YL!1Lk40T1&6<_Xd?P9StL=Q~_v8puxHeyp_@g}` z?cC>uc*2v`6DV^WZ#jupo|u7^`I1YsHXj^l@|n+GYV`|qln$G%l1O?FWMW5XJ?k;$ zJ|HCr`8tqMJj9@FA)1fRBSOu8V15vs=Cok8HD43Ex2*@IYh@DiTZ+1+tj`&&l~W&H zJO-J));g$ilXMs|n`6>XG2AqiBeP2GE@>-wdZmb!`)oPuA%noykZ9%DD>cL1Hor}> z1M?I##aMZ3V_z<$uy4}cU#c%K7Mx_1nZFP=#aHENL9Lmifs7dh6+t=)$na5OWg-dY z!WYWIK6oCGQG7WfL@og`f-mue$Yvm&_$V_(wg5>V8%4GQ8N);5q0CJz2it2JL7cxb zmCbJ*UF0DB#cXh*AgtlrS+aw?4@k{H{tZa%xspq~S8EK~Z~MzxK~P{}HqDy%%6Dqe z-?g`(c@0Utg-<){(V-5Bgd-)R!$e%XWdbJ4J2JeWM}O}OPHc+JuiU-w!In> zb;x&=vX@NND?36R4pw_s74lu~R?dGy8)HTrlf~X2QwG&gT&f>PCBB{Z}t`CvWB#9tCcP5=@^ zfYp7Fdkz%}K2K^WHr4H-e)yc@8p_x-+csTfZCbJ%aw0a}ZEebajLnxwlD;#3vS~%z zt?vj?X_ha*OZli7VaWa<}2HUA@xr#Cu zi%f5KwVyQ~wg|7fAv0kS_4#tOFQ{E2xhOLLnL55M8G6ENfW+|8VTim1$e2aeZn$vG z<;;pfKJ?Z1KqhgSIp^@wXniIi6Ii5B&@z11TGv^;S6c^Y+x3Xc-(odwnl2OYH@g2ajjDINJoX5hVizSqnp@&ozkXE~YfLrjt3ca|H8-U z>f7X__)@<{Q1VMCn7BreLJD6EEOrMqi}3zsC}+$;t_3oJ7bfa*N|}LtH{|LTVXiV{ zVt8LGWoTzSyTV)!ax;(#2YDBfYo+9_;!rP3E~NxvIW?AJ5MA;pkVHDlRi})Dd>cqS z6P0-sNT-AR9>|!3%*8T0(G|^gG>}*>io}6*I>>S$!#!Gteui%<0jV2A*ZC?S;||gX zB;Fe>c?igegX{uQa}d5$rL!-ZYcG(JMKD|5kSgbTY8GLAK1-Q=G}o7bj5)|5Aj5^I z%uj)gI>;Y@1pQH&Be7&1F^F#avw+0$0AlC~eE&m$r%5v4KAiRu=i#y-Vd!QdqAhDfMWF?S2drnp6+p*Ai6@TYme-46Eo;>&p>YJad~{+9bLk9r7C^- zo+_TSG+Om)90XmdvJx5=86X9P)FVi_SY^%LDAqwP1$9P{fv>`5hxRf$ zoGi}&7&4Sa#0>0yMQHbImuGc6`%SIB!)Uchv?1+vkm(c|RgXa+V-E5< zAi+DM)_FUSn1kE~WY|IO1TyX*p9T`&9WCbpASDNR2uR&QehMVGC7SCAAfpa458IOy z7U?n1LnhxPxw2g;^?k~cMcCAZ$W?#0$PoEwAhBDc$QeLJ9b_eQy+>r$UwY|97hP~w zkXR+2$#T{}ruMHQL*x=5Ku$)^^PW*N$ zhe!=b$wBS_GHMZy${09<35zh-J&@`AsFYLAaaLI<)Gb1pI%E=iMTW?K0I6G~7mMXg z79RdFkwGgIH2iTvdW_7dMIciumU08*7GcTXMaiX4gt@flM=e5`A3 zK(4WSq?{gn(IbZk5EJ(bLYYp;)SddIfb4aUJdg>KYfhj#6LKbBD6QzhsKc_-wxtq( zbpL`}+j*F{{E$L6&074CrwAnWwmpEjfrVBi$7?<_fJw9oST8EXJj!}<8=2ekW z^eN*{X$JA<%~GU zn}F0EY&p73jirYFZ!gBaFpiu|81IW08>|;5fb;_w`29g$GIbVQG$s(%GmHfb{ zMJV$COLmZlSn}tblJVBP&I2xz85(zyLb12>c}HfjP>p}VLGW;H+C{pHl@W`uK97RE z?jXMg691xw{+R>j3(W?q5mIqh$_| zz`RZOuVKifZC!XGbAb42(+bs>*Elk~U>_X0R%9k$6a6CWgT;#11M#sRbU0yjIM=JO zro9?6wev-*-I;28$BLCJ(-xsrA7s+^N3Bx^GU^~Z$YqgYC6yb>SA)ctqq$zsTn_Sf zAhEBA402&s(7h#X5wgDzG9wnjXA|m+3F8)_%wEXUzZxm0n#YR<;$Mp(c(G$H7=2I> z=DG*Dl3&-zoS?FuIt+q145H_v;$vEeK-+G`NB>;&glX1%%*6R1DR$@68W_4GN#gvI zSfgq`yfboFpNb#y4QbjBx&P|!6;P5sHhQgaP3~hSfyk`8@z9X#WB^ipL}0||a55jO z(>fv(lrr60@Q7;=d{buta;_ANTZFmBA(Q;J$PoD@ zkTD1OBg;7?GQ9{%-F@(0i?C!q9#Q+Q$grIG*jrEjry%luw7Nwob2MZo93&1T@jb~! zndbu;aga64jQJHT78UBSJWLIzD`)w4#cU^+ucTuEkdo`E*y&y*MLG1}a zSm%ey{^uydx3!NxDG0fG@C})|gY<%I%pxr3x5zbu7i)*@dJ;%%jz-Yml{+J{U1WNJ z-EYzU476?aIYICeCvwhOe>Y>wUW^yIFY}F3Zj!#d31hSF%MYL~+))gZj48od>C2;t zQU4tZm^1eGv1>(U^8S8a*x&hdy0gtTI6x0WIYx)g`n#4u&z&op$D8p~#O}nemup*e z_vN~`p!B*$s{KXv1gE@tNE9s-`-N zLxyiCKSs&?$t!~Z-&LN#5iW^xcm|*$@jc{x`#4(!?**4nM^A{Qa9_#zQG!KY2bnao z;)7t6Q^H^RR+wbRe%N|TZ+CZpMqVv$1z!;daz?6q)$hD0A*3K{KVdr=%cz)keAm*bB1v4w7hjVOKWrl*OI;j8gY z5`8QUd^#WF+pe{b{SDGS9epe@10Tb*&iL5PD97zz;$yq5j}2t1`1WKu@^G5W-ba+( zX;T!_ki@2}FRBF@+SE;A(>P$|EltW{4%&jxqfajH ziKEWazx?WwD)<~^MsWnCr)OeJ--!o79mlC;{s@^86v?q$=X>f&L6Af)WgQ&xeOMx> zbBLS?q;?6IaX0Mmp>JSn9iT%-lK4g(n66Lcra2YgNa9*?wcQF3j8_h%PeQjN#Ht0`&hHML7A6BrenMbEff!zIHv2vzVl(oxNi23_$nP$`zkHsCh^t7)>r+wA-*~Z9wdR~gZ4gRCsb#)SV!gk>zl1#hKXYNU5z_sM+tFKN&Msv-Nl%P*ppC#v?e?G4! zli@w~_aP`+k2^nrX-^~UB=-0HpwRt&cbjw5T(G|{Ku6a7oxii;i?P3tLw>sc{s3x0 z@0!~-fxmt^?C-C}9o^p%^qM60_mLU&cfPk-_xBn~p=XCl`ukCUb${>X6YO|*SlHvG zf5lagW1YkNa`un(uNb&ki>Bo$|50&HRg$k32B0(~DaJ;wR%rZ{`b#0+}MVcSyUbTS zUZaWkYIbUsPawOil7GZ|lfu>PH)zbhdZ+cwc&I9KCZ3taEk>QWZN6tpFBrR2w{mV9 zn%pGOd+&IKcrU+yne?RSy_aBmroA_dD?ibDzk%?sz4r}G-G$yeGL84rGk=CSuRU`d z(!QzbnYW_~+A}-+$^fBf#?sRE$#()Lpg=wQ8b>brM3}@gKLFUSwyJ&QY{V-m{gcJ; zpA)sWOculEo(%7WR>+{e?pZ(>PD13lKqgE%s6NtaAoCrWOM#UBSv-?6MIf=~3L?I$ z>qFn*NOcMYZTd%i)z+|$W1O2Lik7UeE^`HNCBAxdTzoYFbb%*FKRjFzKYS3eX{9Ga zKfD``q5Tk#PBlsN!z&hxAM#hK{6s&jPveJ-qRF`uMbmyEK>19ig;%U6XQ{ zgZ8>_Q0(R*Vgek~&ALxP{Ly-TrDS!E)N^Ngay^RO8SX9ynd_bkQVdpK^?w*20G*zKAjFM)N&*>nkXHg3w}|fv{N+q^iAa*(G!suKP0^bqir!|UXgb28 zPbG@(k4qFC!VPS4H6(geb(?rp8Gh5%Afe}?pR*oy8FKguN)LXyRHEp&xxn)hdoE{} zQ?0fbMQhNUo{Nq)jU|ktzqFo-M^@kyjfo@v!vIljc+|$m+v=L$JCdHvGVcO$~~DaIkzsnV%zt;N!tEzK$^FG zrER#brhY*kHSue!BYZ$qo}CG9ni|5N!h?R71N58VgvK}KJZwAVy> za(j`D{o=6g7n8@9RMe&oPmioC6fWi?9TPLKsg_|(_`h${dGYCOx_$;W{lt64rg$K2 z5}Tfi@1yDQVse}Elac9cddx9mQ})5;HjQPbx9L*sIZQWRyvEuT&t6uG*@1HS!E1`| zBm@>LnQB&$Z$Eq0IV;3#^l1AQ^lqEW_GOLG?&G-aj>~>u#>PuSl6BlnW}froVt04l z$s%PRY5Y>rAs);QpomD4+3Cg^_{QgN6W=%)!5Lek4T*D!w_4vg);B2RIXgYjF0<2l zO=TDpk~8q1FI)e4KT7tCVoXS6r0obqO%h|mChI?wkCip+Ki#=}q5bk`QABt>K864A z{%!D<+VkjR+&OB;FB_+d<=#7Nq8n8 z%vCsxMFkgyh>}?zj97&C?*-T04#H7*ye3vIK?a6yNVM{vf076=`K+lMw_?aUx2+q0 zUF*oKNo$NU--C?HB|QZVRr8moyCP<_K9imji%U;&c~HFF>Ecrqyo+!2@Go!KB)y3b zOz_U!CZAtWnBH5O!h2=r@EPk-J%wVi?6{OdP*z=8C*Jgp$I3UhW(qN>56RWMxATKy z!Rvwet)&I`&%lCTu@?LQ%4u#vT|;VPF9aGiW}b|lEekG;iv^p+I`esDVFnho8f)^j z1{$g?SetDFbiXYwqCp^I|2v_vOgVqmsqV0a-cu{}8j2C~vm7mz- z#-^|rb8t7K^9b3^Nc)8V;XE^kVIqceyqz2M@vFq$jCR17jzZ?*rsZ(l>CEWfFx5J@ zX2+d0%0Z?`k|^tp&!1AGUqQi{Zi`<7r#Svt9o6^aAB*Y%fz+eJok&^lXg7wc>T z);vmd9zT7YFJZ*j8hZ=MaWy6$u4_n*ao*Sa-DnR`U~m zOed0mD0$HVZA#A%cFIPrNcL*IZ=8tOc2QQdsvyeuxh;f@|4wsV^i zRD+(=Y;Hq2+I`Mmi3v~O$}fv{f6&_f0cP_O?f!3Pi`{?f-6uf1r)OaI?HC<&Y#BqY z=5`;Mf!!0sfKE2&< zn}OZ`c!$`%7s_dFcfO5|(R*&&XCm4QPigm&4zc^;@J8f}b|0C6-7mzVSlj)}$nENo z#j(GS&cN<{*6vBGqAgsp?*$_u;|m-w)^V%^mgAn z1G~TS<6`%ZK*`PH{6)_ZyJx+25un{~K1b}%`0OXzy*>lGABEVW?fwxI(%kN2GqC$! zYxl|f`;FG_cxi=na#M96>a0EkyK5QR{rAY@_MKU?yP3VGJHZ2%W@}HGC#;K$Z%jUW z-!}u_nDa^Tjqk#8Fib<@Snx^f8*lZE1$p|$ycOabolRxv8+?*yvN;=RIeQ;HLT2xY zhMMS0&J#Xm{pWiCeLBwG`Ax^^X73Xj(KD6SG1GTL{08 zFpvqikDgqDesTKba|ss7art|n5?gEs0%bKM+Tulcs7=RbEZdtT>gP>};ktiqgoLXf znYZZr(8qi|&z3*4dbE2SHl57wqCxe{{WqjG>eOY`= z%h0BnBsV1SF=~ai_&?qAOvlB4Q2B-=YsP~oP47P&KP&$8E0ofFo^S@9SkUoDsiJ`m zeH{&Y>kGwyCZ8t^PvbxI4Zfi=1_t~h2LAfKp?3bernmde*6x$f6P~bkFW{GP-3X)* z)F6K5^mf-Wtn+WZI?uM<`{L8v{h=Ay{rt~~-A_V)hteAo;|Aa1qV0Z}ZwScK?oV4S zcE6M%&r6IO9N(vl8=Y`Hj&9AyCKgKH$So4zps)H>V%&H({!bS-I=iO#pSty*B)Cv$ zBuU&j_Ng*{;gxD`*a(2A9P#!U_>Yod+h2x8Ve%14v*tf$Y^vF@DIQ_br!vnh;TBAW z`b<90d~^mr*7Zg4F@A3ygHS`FkNtOCeC*x6K_O2cyXrjgv1?pInDXdj9CxPkv0>|D zlaEc8p_)4W`~{`^Rick|;s10#R_dDG$5>%KHf;hI3XLT3v2(4D;pKx3K1T5c&%^%M z^RUV8Lf0KT6qL|fjJ{-*1XQlc6P+Yqx>0)j8+rYqp(HLFcQfp zbam^!!;#vCr<_s0{eJPf&tn(%K%Id5K=fZ)HyB zb$qf>N45#C3<8X78}QJm_PSlTYVLKP#GUE9Zlr5^uiIq3ZUpQI{*feJca8NryoR#D z>wxGSE2fWZfs&z*O}>IIp)@oNGLedy(|=^voqV~potku$M7BL~@x#d@+x*4T&zdgz zruf+8E9eg_5g(g;1-5*nr`%b2yNFsHu(zr$rwbfCXZpvIGeUPh?P>13H{{ore%Zv;Q4&DGHIZduTkO{7yykxPC zZYizvv3TQelFpWOB$AAR;RsY~Zd)3E-6SL0!o?CvFiBQ3=}=Bav|$^yYETy*pK3_- z@Y}41^F8IiYmmUG0GacxhyQESd3YQ$U)?CtWtV`@Z`5Hfg?^U4F_Kksj9RQgYVXffT4n(rdj@n^)V3jzArLDWb4*k330v4Zun zi<_21AB%O1o+pn#Nf2ot>qI$hM3}_Ko{q2-{S3O)Q!L|6wbt1VBK~x4);`v3CfrlX zx1V!XVnqo>lYzF!x38G%l_r-$egS0ELH-J4?AoYI3}eMO8prjZF6VS0!|5n;0gzHA zid+q33|})3b6p3do{J){0W#7TMQ#C-&PS2kfyD4JOIXgQfsAg6B3}nmDn^lUAj4IS z%&|}DXpONK+_-r9H7wVaZko~h!bIZ^+nXMB3&EB2rasg{N8^1!&vfKu#IM<&TZ3m_ zCpL}7>~a75W$AI}o$r>Quh`=fGw5+i zc(3kpi6feo!yflF)JONY$I(B%DyugK@|S1zi2u%J#i&pJ6Eo;>BeuuY(RM7JBT0JP ziMGdKZ+Ch4$s9!$g5&tBjYs*_RVC6E51ia)Y;ip>U)8k5T?w%Twd5!2=N^1os`Ya% z1YAOyUFiDI?tNY%GJ=fY4vK?}ClbuWpP7qxPfuZY(cxKEhw=eu3LBeRmv~pNszB#! zs6+196!QIi$!@U8A{3ZF&rK^N-t=i_%23beE)hLXzK;9y4D@^qKFQL0o_rlAb)MVy za?(3#w)H$R13h10^$hhk_^Rl6)M{1qygx*k3$3WnK+ktuJx}h>-=Be=w^%(hhPlot z{w#H#+s4|tX}0xTpMjoxte&&|`AX!4Pg1p0gCIUUbxe3BWI9Dg<$ErWnuDAUq;3(> zhAx>s_XPO69(jd$wzMI0zvC9m+5x6)NHSV2I$1_5$}DJ*GP^6!lU`Xv=tG8v#OU`c z>n$&E-N4AkA@hPG+ss>N79H78gt}xzn!uf@=6;N#U$I_y6}Wslt{pa@rh1fVI?Yt0 zOy>+nnNCdk^t|pc>c}09FiC{G*?LrOwpz^C`5YxvDTM{e8z=WD@eM6Q-?$D#h#Qq= z%{OH2aE10htd~(scR&~aS-)8P2U`veN&IJn^&k4q+y*J_KVLdc{O4k*@(rF0{pZx> zGJ2xRG)eTID~}TYxq5x$9Gh9_KXI67D*xf$MF~?TGm~k;q}LA5Jy%AMAHtKG`xt*g zaylO?&A`XjhEdZu7;*?g)J>hquZNIZlRLD-mr*-!-|9v7zfAlb&LqP5e-o zLqGf`wCT=fX3Y=Hj5@nme5}dL+&lxbX$C$Pd!hK)AD}6GSlE#0V;}7hAN##;P{`BA zMz0hf<8P??i9Xgj10So+z{mdjBJr^YQL0}h#<6Q>;A0~*@UgKO_}JG%A8R@?rr|%s zADG(5`YBU0GIouobJ3$->@{rwQ&r+9LliyncWXVL4g&bdJV z^))1V)O#_X*Xu9->Vco=QGdQ(Jc{pC_r>T@!_#;aN4>8m#an&^BEKAZOYaQ4WpoDK zvgx0q5ebDxl0>ARTW{&h;@QW>pX>;3fG5<&6a4C0-_SDjjh$d=;4(XABe;X+K_*fW zb2^jtj;y=K?WlLWSCEW)yB3T8xOHI$@t+;meZYWQ$A&tuv+39bMXL+-s!?n zHIQli_&9h6e53P&lSdL6iL?yuem8W83P#dw$BmK2V)w~MqMK)6_bahgqvOWk;6U!a z1glTG|Jy3D`{c9b3%7~gPeD)f6YV}e1G}HHM(mz~(VN?SVg`1PK`qnGQqHw@Z#sYk zAAsFsAJKMi)|c7Jk5L92=ZwlQI?}yBk`D4EAmdVwlKC!>#O*Tf^ptbCLcUV1V|o^r z^JB=^NTPB*4y29+LMU?>Nb;jn4u$3|MgMY;qk)w6Mr9TOsX550K*l~MGNp4WijVI; z3b|H5Cb&|!Qnxe-B>8WWi&-uPlD;#FyaLFmgLDCz_;^&N03?QoMYz8TH$mD8Bt9yL z^e=4-_OA|D?hGXLm%s0ZLI>n>>>Z(TWqRd_5b%bsO61zK!>;aN?kWT>_vxxYr z=AwR{iaIx}Sj{}41_r1AGWgSw#8>MQNt(%+RS8$MWN7vzs`%>aC9-p}8j|!RH_;EX zJ>rLaQ=j`;0Hx`N*I*T({jj@9jnHc$^R3&(55Ebk_=$d)oW>97W0$QLAL{^@Pe&hn zz4b8^*d)=%5;O3z^>8aaUXaKQ3*uw1wLaG0g?IF9Yut^i(>Fe)y``B=O|D>UU(}<% zj$Ff2taI6@-$3R8@dVY%r*Z?nF7Vnc29C4IGX zCccX7+E@9Wlle|r;;Zv8snc`XZFs?NvA?Tf3uYxeVa)hOGha2ig3eDz{bwC=)hr^h zPM1R+QtO;Cgy|pgpE2=X-wgH%0lwW;`wzNALlXblYyAf&0gTs>=s&M6i~n%^LZJ`t^s zkGX!oVU_4(r7UcP^QqnkGJ&Ol_ObOKYOpDOIHrpH6Z`2KEX%X9{anx5G-%Ir*juu4 z9;OXc6>@3hoJWpqKsx536^_h``S53h81}<0v2)Vmlzh%1kNrs~$B|j_B+Tcs2cK!B z?N1^cIVGQS&|`nXWB;AUKEEaQ!yfzn9{b}SJD-eo+a7C){Rxl#fXDu*$Noc){kWFc zCp`9j9{VF6`yr1#-V*!c9{Zgh`yr40L63cDOYDz%?0Y=+gC6^R9($rC_D4PT+dTIB zJ@x}0`>K}M$36Dl9{T~0{cevv*%JFB9{VnjeV@m^*JEGb68l3Q`%aJjPLKWl9(!j? z?1wz|9Ul80kA1htzNsa4u3_CsTlLs)^Vr|yv8P*NKj^U+Joeol`>@B}*AhFQAa&cG z_1JfL>{~tdQcLXjd+eJ%_MIO4bsqarOYC)zeWS;|!(+eJV;^pb{eZ{5!DFv_>>EAy zn_FVv@3F7**b5%}%RKgxme}`s?5jQYtjC`8*l%r#ebi&`@Ypwd?5jNXT1)JAdhE+Q z_KhBU!eigt68m0{eTm1u!DBzgV;^maeUHb!$YWpUu`lx2_qW7e^Vk=9?5jQYn8#jk ziTyT@eSyc`;jur(V}GC}_FFync^>;RkNrt34Bh$sSWE1?J@zNDOmxPbjwK%Z?>zR0 zT4EpZ*q`v&7kTWz^w`H+V&CPl^S5l=wlDP9$36DPT4KN1V}I0RU*NI-r^i0g68lb% z{Sl9Sp2vRBV?W#y`>@A;$YbYsLLFPIxX)t`KHJLreTT<>&|`nXW8XhZ>_Z;={T}<{ z9{Z@rKEI{5S3ULv9{Zyn`-eRCSWE0BkA0uV{)or^E|2}Vme>m(`<)*9A&-5R#~yEq zz0YIc^z2LF$_Sjc@?CF-+*L&<)kA0WN-r=$LwZy*8W8dtt@ATMD_t;ATVh}3v9I&k3m*H?9{bHLv3Gdvt3CFt$3EX>_7C_M_XcF@ko136Fh|$NpK5eXJ$+1s?n39{WO%ebi%rs3rFK9{Zyn`vQ-hZ*q3~ z`*=(2^E~!PJob4Wd(C5itR?oqV?X4vKZ%d^9Y0)gtH(ak68n?k=lJH+|AQX;6CV36 zkNt2^FGq^IKw{@Ywfx?2mZtWsg19 z68qyG`<)*9A&>n!kNvoo*dO!Q_jv3FJ@&N69&d^LQIGvLkNtj+{YsC0X-n+m9{X;O z{eZ{5!DCOf#QuoKzRP3Z=drKx*jKg0{*cGM(__EWV_)U5CtG4aF3 zme|KU_NvEzo5#M`WAAK<{h-HQ@Yr{I>?e5an_6Ojz+=yP?7KYnr+Mt@me}w2*f)FZ zJ3aQl;h|%9cG1@od);H-=&|qc*nj7-ms(;!;IVJ;*sC7K-A)E(sgKw<|tt3=64<{luO2Ek$g=>Z^Vi^$X0x;}WGw(UX4paGHOJ(sI~Csdav zV)9KBTjw@BeA|%Z>HWt~mZz`d4HDtEO%E=SZ`_!WHqmv!d1QT)Uw zv@gOp3fY>uZGXq7+ReY2xcYo~Li@jAT|e;&|6xq6^b`I+^aX(M3GK0`PW^;7pYT6x zgFJoBk;A9slhq?Lc(Qs`T%N41gB=@Kkt9#=udsgDli5PYjHJGSOh2K}pL?o(g9BUe z&8X1l%`?&^$v57dR>iQZR$C8!=ex7N$-xZ z&hqScq|T-fF2VX#_d&ny;`9Fx+tsl^o<(o+3$4*M*l%r# zeTT>XsK>s*V?WAcueHQJapMMu|Lofd)8y$=dnNH zv5$D{V=b|#J$8QE%ki;}LmvB9kNu&R*f)FZdp!1o9(&qjA8(0$lgECW$9})Zeu>Ba zSWE01J@(xm`vH%Ag~vY85__k|zRP3Z=dmyL*bleFzQJSP>9ODGu|LIQ4?f?xXFij; z&3cc0hsVChWB(&Mg&S$-x5U2AW3PJbw|VT3c2 zt3CF|Wz`?ZzRmI}_AX@KCM-wxZ6aK|V5O@6VOX4X@fj zo*$fsU0~IAyy2>eO3riGZ891N`}mWe0c_xO_V90FP#M zADZgj8i(Vu13Ur}Ja86CV$-oNOg~$mkX>2X=~~IXQ`MIRIcJggJli_d(vey5Gw*ZH zhgxFaCq2coua^ELNJkcGbJ@QV?#Y-)@&?nHnZN&CkhcOEF~5d3C+IF#`Y5NLokKk2Met$B$h<`( zcLTZ8_|Kf6+Fw%M5m(tP^Fywb=ofUGiY*T`WY1zR$u=beE%o7J(F zc{Y%P^K{!ZvJ8mq7HVWYkOO88Feexs=*?BBAg6{`Lgq<_s~gB3n~UrNKn|LIs!QGh zL{?jKf=acFxL+&}IVHanGV*?Goog?UVXJ4Bd;rM(mL0!@(Y*zzexgHk_%+DLOi!2d zLm*5~!+(wZ3P|0&qf8?UmQi9XV&&t2j93}?Mj@5azwaLUMmuEWsd8P;Y9R7_i$-1o zMAl6jxg3bB-!-xY2m>c$r$%lBGGV+|BkuwtpFwM6FOc1ip6>-B-xr<}z<#-bt?)zj zY$5ftt-GS$qNd+;BpUk)axsM-{zD?MDDo#D`Y8g*HRnv`iAQoR0s`YikX1l-I=*oM zkfo3bb@&P(GW(jtK3GVh-FQW7M5Y3n+iXiy)j}nO_?d=GXw%n1CT8u0Tfw`5$dl(< zV;=@G#+6F_!4$lrj-w?A}! zp4QItr4^>X1!-$9-g`D=4%l+~bN$_=?T9wE?^JTttzCmXf&R9;)F+NyRY&vfKnhle zEct~%=w7Im(est*ySn;;{rZ1nf- zm1?dZHnnx`$rXDjr=Rp@o%=Hd^yVPY-=ZZ_&h;0!<{)EpF~|E+a;Fm$?qz+GkS8F(F-UWr z3dHTXF9WjQ;mQE1VOYaIUN?2!GZ)Df%=3xd=8NHxD)ocGlA@O*w+J*C*^d>R{+^zWinmGGIxw(=9v>M(+8Qj zZ7JE`0VM5s%SVA!9sS$`RKX>%m5JiOp3ipKW0&Pdebm- z#iFfv7Z9$SSr;`@m%IDQL8p`J6OfT_a$)`>Jy&T=eB-l_iKC1#KHm?d>a_h3kfc-R zUjn(==_zyZDoojz(E52M5P6bNBga$5S`ehcDL{5u1V12I;=4l=%3E~X&`Tf_&g*(g zW&FTaPoUQ+(u&IGPgOoMu0p7IjvRJ@O?n`TBN6v z%W)<%?-(h}e=#-TbkF zAiyh-BjubA8G4z1_|r)Rv_|8D592{Wug~Ytzzbhe`uH0 z2Dv_jT)VAjmNNrcq7OMTqmUVOeDxbZWKU1G^cO%DKwVm6m3;3&rT{BDeOTffSPl%Ty*FRU6iR)WV7=8mWp05?(&-l;26CHI&c}fq zvgI(>XMx0_oNzq7ABcS73=c=+vyi*hYJ<7H0~x9_Z0XN{9CWPn2O#n}n%4YNR$#vB zXyX(hPdfGK03x5d>Rguq8F5D8E+CIut{xqFgS}1-`ym6WNDXfUa>#0)bYvNf!jj(V$O_q~uAvtHL-$Yr?JoUrBebQg-19Aqp4n&1n_6|O;u90an#)+b-- zEoVx7!77zYeDz_-JYrkQTt5Z!gsq`k%OGYZaYx4}`o_Ruf6!^mNpT@#<`OJHYjxgA zXv3C+y#fs0u$R-)Qy^1w<_RwXa?sY9rM(Qu4qHP;3HtNRPC1((6SMJ|xq5+wI}8{> z2nGo!*C1p@?Wm_lhm4NTVKja{WHwrMmhmniC7X-L9Y7wjEhTa<5P7OWjXT|3cQb`0 z{|97NJ0<@Z2>C;w|6d^Mom|hrqLMu+lz9#i{bauM?o)u&AwxUN2{H&;baO;kp;dJjcpk0ZqB)|pyPEX0NLrZVkwZr$3(}t z4j^MryEXus=U6ZWWV3@5DT9*n&-9De19{w$c_)x%4zdTx@UhZTWDV{Da=@wKeL%7{ z7y3m{HQ%2rITrjbWaeA_u$*xqqnAWWJ`ALERTO#V3oxIz-qN$JoUi7fLt9RYL@PRi zxHA_$9=QsR1y2RS6#D9U9?}V9wUg_WKyI_`V*V{aCY&0+8ptjygAqhU=$mZ~nd{Av zshzBM?9m5HI%uwP>U=9?<}Zv|=M&83aD4*^f3YYWzkUGZe#aI+2l9y1iYI_9vNdFV zj(Q;?l8sR*{2=QPCXq>}J|{uOU3Z@iWTWi`DhtYb$Z6>Y$n0|Jb2Sk5*iiFZf$Vc+ zZUREj)FVD?_zoaUVXixX>~UJLpXJz=rZ6rI6yZPCTbTdLkeQE?@z41Df3f7NMThv! z)PZWb5F}MAD3ihl&~*swOPz9_KrYTj!x{$o&~urCEC3R-C8HNqN{DvrZ7%?#b_@F~ z!WupYxsomVjX0b+FTs1xK0^y*k1t| z`Al5L)qWrctd+@i6OcoW=HCt^^o?t?j(b%UTqf!>Qq)fFzy1GY`K*61Q4qu491IaMU9ak!3*K5p6Y)M{Rx3 zmxnOC2g8n5FNBOdtFJZI4P=AOwbd+r_50`JiVvT9KqhNtV2e^$c}uX#vBeFL>9GFH z8onOLKC5~D4iwQ5r#^3o%qURZt`Fm?J)7$q>`i4bq3g|6eS64Z=Rjvwo z{P4BO)KliSN6ZDPDW}{_G^i=IRL-Tk)lcP_A2V9gUe5KDs^#{S2`F8;UJUp86J75n zrfGU}@xn_k+=%6Hsa(Xwq*~2%_vNyFrh!Z~zcrVtR5Ru3U`c;c;g#GV1Yryoo>X@G zfZFlq!a2p=maYssk0++q=grVe6Ip)F<;!xWl}fEE6fVx>2e6TPxvsr0X)2CwuzpCU zunMUZ2ZCuc^0UuvsZ6Pqs%|f#rJz`{>B95R7fVfH^3a?OZsIyk)HRehs2|*2a>EU1 zuJ$tRFsanb)?Sv{aN*?}G55x=1b26%5xw}$vRpYO5(Klk1~@;E%?&NjWV7%zUAA~p zVK8%PY9L=Ic3qe2uBL+Ca&a3h3R7hUhxnNRoD*k=);xoB3ZB!wMT_uqNbPs?EK@CI z2J+oXXlt%q$wRs3*naletCp)9nJ!FDQ5kiC@~g#?It788mW#@xSY!$Nw_7uX!JLwz z`qh4*--eCKHoRF$DOrp-J=~sVC0J4(wAEZM_7?ON)-zr90!@RB&7HwYPXFF91!V*oL>&(?+q(r&Ut*jOewOn=;i&)|5df}6Z2s`LFc9E=F zbQ^#nD_XH?vD&AW(OR~oICSHvG+0!XqRzvn@-nIiUPt+P9jOj4xArsujo00rW(^u; zFh{g`iXh+HS9K~+G*W%IK`$K8Xqirt>B1L5*)m-8TniyiEjiAu54&WzS8ZP*Xhp*-r4Uiu zMJdv06j~`{x^k*ZT$IvnE#fII#9)Fq2J)|V;w=C)?amB3ytrGAg{F zCAorf#fwtC#e7e-tfRBO>d6$aPo>yYn8zeTU0@mm2ap@~v{bCvbDXGgP{~6r${;-` z1(PCFq_QnjV&gK}{%7$y0SsDdJU|w%C;Ey--MMh9@w`7%aqe{&2M28T3P&?~ilQ?` zh8MV_2726hX$m80c%eFNe?=+zrK$2D%!kKB*w&Y-Q7Lk%dvydTmKcsB@;Z*&{KYcI z^2q%%J_gMV<+=m3SK-hBI%Q?BKgXq+=3SRUbS-WRlvA?bvNG#9n4xx<0-}3XwPgV6 zjcBWab*XR)pmJ6E;JD#{zYdepZZlM`ONpA-;nS)LLmK+|K)%wqR-LQ-FnxI8o(&YY zhrwO7ffdDAtza96)s?ayXu=X~Ll6+q*@AWG4{KnsE!sm83b1_M{*Qk+ZqtkV1T{!Dp` zo_gU~g7TKG9AZSzzzqTHlO8lFjwbWa@#BIDhN}s{Tv2ll+YWN5WT$uy%Kj+ zPgQ4_iIxJ)w0a8|N^lDGtW9-g%H=#}sLmBv0|rr=bcJ9N`nAfA+u2;V?XPQfsI{8W zLew;eMKz06R$9xRSj}U0!{v!8DXdb@V4=|4t@{V;KU6(SD=s0y1@fEps!N?!i(7I! zLT|#v4Cl)c&Li2E2j~=xUS<-Qt8}Zrr;F=oGNR^F-JH&*(04Q06tbzYQ;}7+4^%Tl zwli;{gX+;k3m1w5y=FLJyEZZONcjxjjNbm9h ze^Sfa&pCV5+4_c^Mqir3FMVh9{6Q5(a_~A_`l4Di8c=eaKSrjZm+EzbgLLy{44CLB zHKs6_>5!+aqBMl^v?rCg^P$oJ!S?A4@X z6(&F1xN6Q6I9lRD`SxH=mvXM@8o0+tYDhMW(m}GIv4Fp3sj5z>T`q#8%&0p3u{-@*v`RIj9Ww zU?|REjaI@Z2`pdb;p7m*N^T&f31En;FqKk~R}CJzyY!@RL+#DtcmZ7#vkB!97r+X9 zet7MLH0cFcu;y|&=RprXN(HxUx4HXuTVlpUt^UZw~VYte&AU#LLX~t#H_4SzD;XEWrmjlw;uP-_A4D zdDnA^gj#C{RI}jqAl4yZy;3syMa-U8`tU50shqlL&s8*07F*9*EVZHv(C4ad8bFIM zT-XxTvUQ^knj2HOt?)JWF0B3&D=4>-m947&ZBDzk8_jJ@;lwWRl`Kd4jTh^DJjbL| zE-~~)u6R>TlyF<=*p{Puzt$m~oKy4yKH1#o2SsG1O{2mjl#ADZ8iD{MEv zcN)1a(S+f3cd@j6IUZwF^WiHIVRighmf(zQl-GsrKnz zfh$wIvKtRq!i}*9VKjARWNmmQwPtn6_m4J~KVqB91UE8a8AQBG&Rn?k7Z9%YH z_I@=|=-5@vUm&Qel4 zd4h%MLR20Ob9h4(V;%2Mu#oRkHTa?jMI{ripE0*v~c%-FD0-)Kn++ZdscK?n(SJfdVQe-5^C;{i1v5^(l z^3HCfvNs)2&6hVYHdh9_?Dp3N>99sqy|}4Mf#cXw+SJkP^QN#&p*FE7|E^1j5uISbvV20XQ18+n@%6EAuZ1x&1WKG;u=O(18a}x~JxecHofjgO^)Zl1F zTNU>Zo${qjzFaX|QES4^wFY6Yz*_WX%3TZu&_9CWIf--C8R~=!JlO^Fv%ZnuqY4zo zgP-MVG0mmV>2Bc}HK(tPmswk^Nol?6yO@>b@E|cr!{EXQqo#Y6pbHT}4F#|OwoVZq zh@mqU_y~0ur(x)}k^K4U*_frX3C_CPTypNg?uNOslIbpDVKrcSCl#dUL2`2&9y!wI z$QNGV!%Mr($xLC1sto|}u0MW4mhGY=V$TZuapmnKH*;v-fr=wnkdrIbbJT?q3*%TM zW}(;&COru1rjwZ>?S?R}O^H}KgcoXy6qk-!^mVwui<@Q+iaTLo#06@t)&!<%YR^RH zwlFfQ4J8dL3I5^G0Dn7sg>o^aDfM{}CyaU3)2JXb;msFQ14X?Tfm8Fy82YN(dxK}G zl_p1S?&5L>3lEIz)0EnHLniacgtlmLi zD4V4-AkznNmPIwOQ=@2EF*Q=FnyGqXG0TvLub!&R=O|a;r{CR~61L8B`r2He6t(}P zDyuWB)YZcJ7@LcF9O3@WkiH8iB9(r}s6NF+ErouiE>t-|uhs)Wu^loo2v)F;LOjzS zH7Nb+sExlS9_!DK&C@>(6U0<1-(QkX^6`;wwwTfr!&DZlzlwu!J?PCaQ>nEZFSVZu zbJCMnJBIk!A70fxh>t9{t9d@^Slp85LkIBbC6Sv`m0P5bn!7LR2#vw2ewE_S4VzM?}_+<_0QN zS-C{U@<(K3Vp8rf`r9Y{F#ebohG7PNy7lH|Ols_tyOL4+bjFmjDlf zsMvRH`a3t>kAHWRLQI1l63su}hy_xSf7Q_CG%)nzlao=gd`;%U+S7-{BhvHg6+IGb z)@=`yCW<6HeP>CRr7yWZy$3+%*H{v^(Gt`?`Pm1g3aE*yf%b>)f_CeB5T*A?nq1vm zAOICH+LXoX)A}b{rJvL*_dTRP;e94mT#9C=kgOVQ@69M(Am+E@SpQD(^sgHQ12a*7 zD|S)uV!i!F8U^n8z{@k+RBAUo)@Dtjf!lF4s!_TuZ`Lbuq&7J&S7)zV^!&~$RP8F5 zEcGCX!@1l}w|^xwu1Z-MEBtTLRMkfz?a;(%HK>Xe0i*pG9Vme3yR`6Ov7-h1-Ps7; zTW&^`=^(>1&p78-)jyPR)+nJ8%7wZhQbr^tKP0n!D39~S@brc5q%=?R_6yPO68-lOHZ(fZ&%fNFF{yDETR#{33Yu$8`u45_9oWN zB}+E0i|;BMc&dLJ_^BWm%#?qm^;V>Av}bR&)2I1|>!|K4-~t=|b>rPKbasO!*~^2p zMvHFM-Ve{+8Xr|_|7f)Kv3Od)D)l0BL3BeIwAEVG?ORgRZ5AY4b;^qBqNbIY_1{;( zekL^xN6ga7niz@*WjdoWP|P0ts9N5MHaDx0?RRpb{4Zk5!t!tgI6dpf&kMaaDM z0z!u@dqH&oHzeb*Bc9S}J*5qX!sDp0{TnJpmP1uEvpf<)D^hLV|NQW=@q0XO*6+tl zs#$UK<@n&}>(?)bqNjOiQH%2p@gxuzkB^7B<)^A;gkzSgmesFYvi8>TmE#m2kx-cA zBwi7iLC|u&N0i0;EX_83DKbcsmX8Vez<$F=L&P7=@n;q%97J3`mevT4K_~-0swx~4 zZEKcKer4M4+##}7%Nw2Qw`aCExLsSAHXMTt#Q=S~$S$!OrYM>h!qY9n_Q}uv_6BMW z^qN^8mc!ygPRysk@dHlcHKj47T!*gZ|K&=ap652-9oU?g$7UZm;y^g*00JqwGRKyy zqKB5NqM^NmljGx~WBS{JF$5VrBQzsZi#B4Y7}qt13R5V(t5x+A$Z+5M5&O*F7j$^B zI66%1y34juPoO}%FjyVojdb3?mjPEzv@Xl@)3f_4{J~Sy>i8qNxZ5rMoHN1c;$iiU zg&o}&yN8wIk*5k8Ud$H;+H6$$G`_bU=O4XbKAb;lyG9w~Uiz)rU9X>B7sc;}f4)~l zNZM4)dZa;_YQxpPw><+4vkjm}E6ZHXG{}u46nZN?mI}nwQ>yKHU9}DCRYGydJ>UkZ zmpDzq9IoJTI11*VaBnvbOgL)st%N{@o<^?j#OaG&S-#@fueXG8z~Z~KDGmPMKWe#R zGOQqqnJ5<;&!?B~NbnL&%lb`C%TtpWBioVWgKWW2^I2(&E(a{F@#_^UkqaQJCT^Io z-K*iTT?a&@d?$yf)Bj-o2p9Sl3MmH%tpO;37E{hXyoEN<%^8`}KEQM0e!JofJw0cb z6+W|-%9jq*gl@V&{=FX)3MTy5Ye5t#cQx;Hm8RtF0Dg^BKAL$PZS%GSvN`S$g$R#C zH+I^u=9H*php)T_^R)bPFQJg+w8tw&B+kcY z;!N8@K0yUlc-*76Tu-7du5e6WtLz*DwsNu?0-ITlT!u}H8=aZ##D#auTxyZ>pJcEr zl4Mug^5Tu7J{dp*Zw4np6y;56Xf3L`fL7_@nbpMRS%+$!P?T?drZ!0obx_S~vF%E1 z9#R~$tc#`_oA^R4HJse4CYkoS6@?`_^GHv`8W?@)ZaW|}5)^C>!x{cDP>T$jykfM) zoHmY18&|!irWditbX|U9kK2j&ylkzZXv}pt-a|fFy>AV(W@M&#mly2GC?+wn3^;EE zU4kmINQrS18wXeJ6OKR3tCH2uOKB79@pDKO;iT=jU02#0U;SXv5|Rq7X5xsH9%-EPbp^6u8x59Y*-{4yagK#5S_+HPx8Dwi5%6TuQF9+$LZ|N>hlbl(=wd9P^;29IG zQ4ZaEe{pSu7Y3N51y+<&;x)}W-xgbQz*n=vw4MdC)I~NalXYchY6j6ppEr^(jer#! z?!UiN_}-u5swVVf!cr0WzUqpQw%&qC_MxTw!NiKA>HahtW9&Ie-N_AKJtO8I`yFMi|AunBfEAWhNshj#+Knshu(f$@k*7{2wUp2MHsRKOS?|DgHDW;m)4+# zO>(_*6IW^DU%`RJ^w~Ww%|tS2(9C8ZqsoMC0MeMM-w!2Y_;1qlU(!+`=^^`8H!+Nl zf>It^_Qrj4)t}?~#pspbL04DR>{_`XZTA#-5CpGGgZ$eY0uDJck?$%oZ)dOfnD07^ z7UPn){9T{aM$9~n~lNm`!u6X-tJswP(pzxcO)k77J)GrW=nV6IN0)?eGv*1r7Z zyX*!?vCs1z0>PRZ+)tcyAGmZ!Yrwo`3VK+g7dEJuHDC($2VyHW@4ut1!GKy;m`#)@ oh-|@}3T0*tSOuaqJHKMg$^ER0UH#E-(eY, version 5.3.6), or `lua53`/`lua` on +Execution additionally requires a Lua 5.3 interpreter: on Windows +`src/test/resources/lua53.exe` or `src/test/resources/lua.exe` +(+ `lua53.dll`), on Linux `src/test/resources/lua53`, or `lua53`/`lua` on the PATH. If none is found, executeProg Lua tests are skipped with a SkipException. From 1e7ea7eb11dfc8922d661dcacb87567a5c3eff74 Mon Sep 17 00:00:00 2001 From: Frotty Date: Thu, 16 Jul 2026 08:32:43 +0200 Subject: [PATCH 4/6] review fix --- .../tests/LuaBackendAuditTests.java | 21 +++++++++++++++++++ .../src/test/resources/luaruntime/wc3shim.lua | 19 ++++++++++++++++- 2 files changed, 39 insertions(+), 1 deletion(-) diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java index d4e969215..ed9e379e9 100644 --- a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/LuaBackendAuditTests.java @@ -310,6 +310,27 @@ public void primitiveArrayReadsDoNotMaterializeEntries() throws IOException { compiled.contains("local dv = d()")); } + /** + * The wc3shim's GetLocalPlayer used to return a generic enum-handle table + * ({handleKind, value}) while the generated Player/GetPlayerId fallbacks + * use {id = x} with their own cache — so GetPlayerId(GetLocalPlayer()) + * returned nil and Player(0) was not identical to GetLocalPlayer(). + */ + @Test + public void localPlayerHandleIsCompatibleWithPlayerAndGetPlayerId() throws IOException { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "nativetype player", + "native Player(int id) returns player", + "native GetPlayerId(player p) returns int", + "native GetLocalPlayer() returns player", + "init", + " if GetPlayerId(GetLocalPlayer()) == 0 and Player(0) == GetLocalPlayer()", + " testSuccess()" + ); + } + /** * {@code goto} is a reserved word in Lua 5.3 but was missing from the * translator's reserved-name list, so a Wurst local named {@code goto} diff --git a/de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua b/de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua index 9171e6224..8a124b211 100644 --- a/de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua +++ b/de.peeeq.wurstscript/src/test/resources/luaruntime/wc3shim.lua @@ -58,8 +58,25 @@ function GetPlayerNeutralPassive() return 27 end function CreateGroup() return { units = {} } end function CreateTimer() return {} end +-- Player handles: one cached {id = x} table per id — the same shape and +-- cache the generated LuaNatives fallback uses, so GetPlayerId(p) reads p.id +-- and identity comparisons like Player(0) == GetLocalPlayer() hold. +__wurst_test_players = __wurst_test_players or {} +function Player(id) + local p = __wurst_test_players[id] + if p == nil then + p = { id = id } + __wurst_test_players[id] = p + end + return p +end + +function GetPlayerId(p) + return p.id +end + -- text output: route to stdout so error handlers (BJDebugMsg) work in tests -function GetLocalPlayer() return enumHandle("player", 0) end +function GetLocalPlayer() return Player(0) end function DisplayTimedTextToPlayer(toPlayer, x, y, duration, message) print(message) end From 86b7a6550056defe455396f62550c67b46dcff5f Mon Sep 17 00:00:00 2001 From: Frotty Date: Thu, 16 Jul 2026 09:25:39 +0200 Subject: [PATCH 5/6] another one --- HelperScripts/generate-obj-mappings.ts | 4 ++- .../main/resources/wc3-knowledge-base.json | 3 +- .../tests/Wc3KnowledgeBaseTest.java | 35 +++++++++++++++++++ 3 files changed, 40 insertions(+), 2 deletions(-) diff --git a/HelperScripts/generate-obj-mappings.ts b/HelperScripts/generate-obj-mappings.ts index 609e1992e..69f7e64b5 100644 --- a/HelperScripts/generate-obj-mappings.ts +++ b/HelperScripts/generate-obj-mappings.ts @@ -658,7 +658,9 @@ function buildSchemas( return (v !== null && v !== undefined) ? String(v) : null; } function toCodes(v: string | number | null | undefined): string[] { - return v === null || v === undefined ? [] : String(v).split(",").map((s) => s.trim()).filter(Boolean); + // metadata uses both commas and dots as delimiters (e.g. "ACbl.Afzy"), + // matching GenAbilities.java's split on [,\.]+ + return v === null || v === undefined ? [] : String(v).split(/[,.]+/).map((s) => s.trim()).filter(Boolean); } for (const row of rows) { diff --git a/de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json b/de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json index d3cfa7205..bff06feeb 100644 --- a/de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json +++ b/de.peeeq.wurstscript/src/main/resources/wc3-knowledge-base.json @@ -22748,7 +22748,8 @@ "useCreep": true, "useSpecific": [ "Ablo", - "ACbl.Afzy" + "ACbl", + "Afzy" ], "notSpecific": [], "canBeEmpty": false, diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java index e28b4714b..ca97c0724 100644 --- a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/Wc3KnowledgeBaseTest.java @@ -37,4 +37,39 @@ public void packagedKnowledgeBaseContainsMergedObjectsAndSchemas() throws Except "ReplaceableTextures\\CommandButtons\\BTNFarm.blp"); } } + + /** + * Metadata uses both commas and dots as delimiters in useSpecific/notSpecific + * ability-code lists (e.g. "ACbl.Afzy"). The generator must split on both; + * a dot-joined entry would make lookups miss the field for either code. + */ + @Test + public void abilityCodeListsAreSplitIntoIndividualRawcodes() throws Exception { + try (var stream = getClass().getClassLoader().getResourceAsStream("wc3-knowledge-base.json")) { + assertNotNull(stream, "knowledge base must be packaged as a compiler resource"); + JsonObject root = JsonParser.parseReader( + new InputStreamReader(stream, StandardCharsets.UTF_8)).getAsJsonObject(); + + JsonObject fieldSchemas = root.getAsJsonObject("fieldSchemas"); + int checkedCodes = 0; + for (String objType : fieldSchemas.keySet()) { + for (var field : fieldSchemas.getAsJsonArray(objType)) { + JsonObject f = field.getAsJsonObject(); + for (String listName : new String[]{"useSpecific", "notSpecific"}) { + if (!f.has(listName)) { + continue; + } + for (var code : f.getAsJsonArray(listName)) { + String c = code.getAsString(); + assertTrue(c.matches("[A-Za-z0-9]{4}"), + "field " + f.get("id") + " (" + objType + ") " + listName + + " contains a malformed rawcode: '" + c + "'"); + checkedCodes++; + } + } + } + } + assertTrue(checkedCodes > 0, "expected at least one useSpecific/notSpecific code to check"); + } + } } From 8df9d28d1dbec09a51f0ff11b101c82c99e5e214 Mon Sep 17 00:00:00 2001 From: Frotty Date: Thu, 16 Jul 2026 10:28:29 +0200 Subject: [PATCH 6/6] null-safe sugar --- .../parserspec/wurstscript.parseq | 2 + .../antlr/de/peeeq/wurstscript/antlr/Wurst.g4 | 4 + .../requests/CodeActionRequest.java | 5 + .../languageserver/requests/HoverInfo.java | 10 + .../wurstscript/attributes/AttrExprType.java | 10 + .../attributes/prettyPrint/PrettyPrinter.java | 23 ++ .../antlr/AntlrWurstParseTreeTransformer.java | 15 +- .../imtranslation/ExprTranslation.java | 63 ++++- .../de/peeeq/wurstscript/types/WurstType.java | 5 + .../validation/WurstValidator.java | 42 +++ .../tests/NullSafeOperatorTests.java | 263 ++++++++++++++++++ 11 files changed, 436 insertions(+), 6 deletions(-) create mode 100644 de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/NullSafeOperatorTests.java diff --git a/de.peeeq.wurstscript/parserspec/wurstscript.parseq b/de.peeeq.wurstscript/parserspec/wurstscript.parseq index e2ab223b3..c2745cbab 100644 --- a/de.peeeq.wurstscript/parserspec/wurstscript.parseq +++ b/de.peeeq.wurstscript/parserspec/wurstscript.parseq @@ -201,6 +201,7 @@ ExprMember = ExprMemberVar = ExprMemberVarDot(@ignoreForEquality de.peeeq.wurstscript.parser.WPos source, Expr left, Identifier varNameId) | ExprMemberVarDotDot(@ignoreForEquality de.peeeq.wurstscript.parser.WPos source, Expr left, Identifier varNameId) + | ExprMemberVarQuestionDot(@ignoreForEquality de.peeeq.wurstscript.parser.WPos source, Expr left, Identifier varNameId) ExprMemberArrayVar = ExprMemberArrayVarDot(@ignoreForEquality de.peeeq.wurstscript.parser.WPos source, Expr left, Identifier varNameId, Indexes indexes) @@ -209,6 +210,7 @@ ExprMemberArrayVar = ExprMemberMethod = ExprMemberMethodDot(@ignoreForEquality de.peeeq.wurstscript.parser.WPos source, Expr left, Identifier funcNameId, TypeExprList typeArgs, Arguments args) | ExprMemberMethodDotDot(@ignoreForEquality de.peeeq.wurstscript.parser.WPos source, Expr left, Identifier funcNameId, TypeExprList typeArgs, Arguments args) + | ExprMemberMethodQuestionDot(@ignoreForEquality de.peeeq.wurstscript.parser.WPos source, Expr left, Identifier funcNameId, TypeExprList typeArgs, Arguments args) ExprAtomic = diff --git a/de.peeeq.wurstscript/src/main/antlr/de/peeeq/wurstscript/antlr/Wurst.g4 b/de.peeeq.wurstscript/src/main/antlr/de/peeeq/wurstscript/antlr/Wurst.g4 index 4322fd435..22684d4e6 100644 --- a/de.peeeq.wurstscript/src/main/antlr/de/peeeq/wurstscript/antlr/Wurst.g4 +++ b/de.peeeq.wurstscript/src/main/antlr/de/peeeq/wurstscript/antlr/Wurst.g4 @@ -356,6 +356,10 @@ expr: | left=expr 'instanceof' instaneofType=typeExpr | receiver=expr dotsCall=('.'|'..') funcName=ID? typeArgs argumentList | receiver=expr dotsVar=('.'|'..') varName=(ID|CONTINUE|SKIP_|BREAK)? indexes? + // null-safe member access: '?' and '.' are separate tokens so that + // ternaries with real literals (cond ? .5 : x) keep lexing as before + | receiver=expr qdotCall='?' '.' funcName=ID? typeArgs argumentList + | receiver=expr qdotVar='?' '.' varName=(ID|CONTINUE|SKIP_|BREAK)? | left=expr op=('*'|'/'|'%'|'div'|'mod') right=expr | op='-' right=expr // TODO move unary minus one up to be compatible with Java etc. // currently it is here to be backwards compatible with the old wurst parser diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/CodeActionRequest.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/CodeActionRequest.java index 09a8ab4d9..3d5963e43 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/CodeActionRequest.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/CodeActionRequest.java @@ -448,6 +448,11 @@ public void case_ExprMemberMethodDot(ExprMemberMethodDot e) { case_Member(e); } + @Override + public void case_ExprMemberMethodQuestionDot(ExprMemberMethodQuestionDot e) { + case_Member(e); + } + private void case_Member(ExprMemberMethod e) { WurstType leftType = e.getLeft().attrTyp(); if (leftType instanceof WurstTypeClassOrInterface) { diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/HoverInfo.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/HoverInfo.java index 7f5a8792a..6af702584 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/HoverInfo.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstio/languageserver/requests/HoverInfo.java @@ -517,6 +517,16 @@ public List> case_ExprMemberVarDotDot(ExprMemberVar return description(exprMemberVarDotDot); } + @Override + public List> case_ExprMemberVarQuestionDot(ExprMemberVarQuestionDot exprMemberVarQuestionDot) { + return description(exprMemberVarQuestionDot); + } + + @Override + public List> case_ExprMemberMethodQuestionDot(ExprMemberMethodQuestionDot exprMemberMethodQuestionDot) { + return description(exprMemberMethodQuestionDot); + } + @Override public List> case_ExprVarArrayAccess(ExprVarArrayAccess exprVarArrayAccess) { return description(exprVarArrayAccess); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/AttrExprType.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/AttrExprType.java index ac3b08e64..13a9f04fc 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/AttrExprType.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/AttrExprType.java @@ -403,6 +403,16 @@ public static WurstType calculate(final ExprUnary term) { public static WurstType calculate(ExprMemberVarDot term) { + return memberVarType(term); + } + + public static WurstType calculate(ExprMemberVarQuestionDot term) { + // receiver/result nullability rules are checked in WurstValidator; + // the result type is the same as for a plain '.' access + return memberVarType(term); + } + + private static WurstType memberVarType(ExprMemberVar term) { NameLink varDef = term.attrNameLink(); if (varDef == null) { return WurstTypeUnknown.instance(); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/prettyPrint/PrettyPrinter.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/prettyPrint/PrettyPrinter.java index 628f0de6f..082854a15 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/prettyPrint/PrettyPrinter.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/attributes/prettyPrint/PrettyPrinter.java @@ -443,6 +443,29 @@ public static void prettyPrint(ExprMemberVarDotDot e, Spacer spacer, StringBuild sb.append(e.getVarName()); } + public static void prettyPrint(ExprMemberVarQuestionDot e, Spacer spacer, StringBuilder sb, int indent) { + e.getLeft().prettyPrint(spacer, sb, indent); + sb.append("?."); + sb.append(e.getVarName()); + } + + public static void prettyPrint(ExprMemberMethodQuestionDot e, Spacer spacer, StringBuilder sb, int indent) { + printIndent(sb, indent); + if (e.getLeft() instanceof ExprBinary) { + sb.append("("); + e.getLeft().prettyPrint(spacer, sb, indent); + sb.append(")"); + } else { + e.getLeft().prettyPrint(spacer, sb, indent); + } + sb.append("?."); + sb.append(e.getFuncName()); + sb.append("("); + e.getArgs().prettyPrint(spacer, sb, indent); + sb.append(")"); + printNewline(e, sb, indent); + } + public static void prettyPrint(ExprNewObject e, Spacer spacer, StringBuilder sb, int indent) { printIndent(sb, indent); sb.append("new"); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/parser/antlr/AntlrWurstParseTreeTransformer.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/parser/antlr/AntlrWurstParseTreeTransformer.java index d01fda33a..a2ead963f 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/parser/antlr/AntlrWurstParseTreeTransformer.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/parser/antlr/AntlrWurstParseTreeTransformer.java @@ -925,7 +925,9 @@ private NameRef transformExprMemberVarAccess2(WPos source, indexes); } } else { - if (e_dots.getType() == WurstParser.DOT) { + if (e_dots.getType() == WurstParser.QUESTION) { + return Ast.ExprMemberVarQuestionDot(source, left, varName); + } else if (e_dots.getType() == WurstParser.DOT) { return Ast.ExprMemberVarDot(source, left, varName); } else { return Ast.ExprMemberVarDotDot(source, left, varName); @@ -1033,7 +1035,10 @@ private ExprMemberMethod transformMemberMethodCall2(WPos source, private ExprMemberMethod transformMemberMethodCall2(WPos source, Expr left, Token dots, Token funcName, TypeArgsContext typeArgs, ArgumentListContext args) { - if (dots.getType() == WurstParser.DOT) { + if (dots.getType() == WurstParser.QUESTION) { + return Ast.ExprMemberMethodQuestionDot(source, left, text(funcName), + transformTypeArgs(typeArgs), transformArgumentList(args)); + } else if (dots.getType() == WurstParser.DOT) { return Ast.ExprMemberMethodDot(source, left, text(funcName), transformTypeArgs(typeArgs), transformArgumentList(args)); } else { @@ -1107,6 +1112,12 @@ private Expr transformExpr(ExprContext e) { } else if (e.dotsCall != null) { return transformMemberMethodCall2(source, e.receiver, e.dotsCall, e.funcName, e.typeArgs(), e.argumentList()); + } else if (e.qdotVar != null) { + return transformExprMemberVarAccess2(source, e.receiver, e.qdotVar, + e.varName, e.indexes()); + } else if (e.qdotCall != null) { + return transformMemberMethodCall2(source, e.receiver, e.qdotCall, + e.funcName, e.typeArgs(), e.argumentList()); } else if (e.instaneofType != null) { return Ast.ExprInstanceOf(source, transformTypeExpr(e.instaneofType), transformExpr(e.left)); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/ExprTranslation.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/ExprTranslation.java index 066c4db93..068a365e7 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/ExprTranslation.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/translation/imtranslation/ExprTranslation.java @@ -248,9 +248,29 @@ public static ImExpr translateIntern(ExprSuper e, ImTranslator t, ImFunction f) } public static ImExpr translateIntern(NameRef e, ImTranslator t, ImFunction f) { + if (e instanceof ExprMemberVarQuestionDot) { + return translateNullSafeMemberVar((ExprMemberVarQuestionDot) e, t, f); + } return translateNameDef(e, t, f); } + private static ImExpr translateNullSafeMemberVar(ExprMemberVarQuestionDot e, ImTranslator t, ImFunction f) { + NameLink link = e.attrNameLink(); + if (link == null || link instanceof OtherLink || !(link.getDef() instanceof VarDef)) { + throw new CompileError(e.getSource(), + "The null-safe operator '?.' is not supported for this kind of member access."); + } + Expr left = e.getLeft(); + ImVar fieldVar = t.getVarFor((VarDef) link.getDef()); + + ImVar tempVar = JassIm.ImVar(left, left.attrTyp().imTranslateType(t), "receiver", false); + f.getLocals().add(tempVar); + ImStmts stmts = JassIm.ImStmts(ImSet(e, ImVarAccess(tempVar), left.imTranslateExpr(t, f))); + ImExpr access = JassIm.ImMemberAccess(e, ImVarAccess(tempVar), JassIm.ImTypeArguments(), + fieldVar, JassIm.ImExprs()); + return nullSafeGuard(e, t, f, stmts, tempVar, left.attrTyp(), access); + } + private static ImExpr translateNameDef(NameRef e, ImTranslator t, ImFunction f) throws CompileError { NameLink link = e.attrNameLink(); if (link instanceof OtherLink) { @@ -454,13 +474,15 @@ public static ImExpr translateIntern(ExprCast e, ImTranslator t, ImFunction f) { public static ImExpr translateIntern(FunctionCall e, ImTranslator t, ImFunction f) { if (e instanceof ExprMemberMethodDotDot) { - return translateFunctionCall(e, t, f, true); + return translateFunctionCall(e, t, f, true, false); + } else if (e instanceof ExprMemberMethodQuestionDot) { + return translateFunctionCall(e, t, f, false, true); } else { - return translateFunctionCall(e, t, f, false); + return translateFunctionCall(e, t, f, false, false); } } - private static ImExpr translateFunctionCall(FunctionCall e, ImTranslator t, ImFunction f, boolean returnReveiver) { + private static ImExpr translateFunctionCall(FunctionCall e, ImTranslator t, ImFunction f, boolean returnReveiver, boolean nullSafe) { if (e.getFuncName().equals("getStackTraceString") && e.attrImplicitParameter() instanceof NoExpr && e.getArgs().size() == 0) { @@ -552,7 +574,7 @@ && isCalledOnDynamicRef(e) ImStmts stmts = null; ImVar tempVar = null; - if (returnReveiver) { + if (returnReveiver || nullSafe) { if (leftExpr == null) { throw new Error("impossible"); } @@ -584,11 +606,44 @@ && isCalledOnDynamicRef(e) } stmts.add(call); return JassIm.ImStatementExpr(stmts, JassIm.ImVarAccess(tempVar)); + } else if (nullSafe) { + if (stmts == null || leftExpr == null) { + throw new Error("impossible"); + } + // guard the call so that it (including argument evaluation) only + // happens when the receiver is not null + return nullSafeGuard(e, t, f, stmts, tempVar, leftExpr.attrTyp(), call); } else { return call; } } + /** + * Completes the lowering of a null-safe access {@code a?.x} / {@code a?.foo()}: + * {@code stmts} already assigns the receiver to {@code tempVar}; the guarded + * {@code access} is only evaluated when the receiver is not null, otherwise + * the result is null (or the access is skipped entirely in statement position). + */ + private static ImExpr nullSafeGuard(Expr e, ImTranslator t, ImFunction f, + ImStmts stmts, ImVar tempVar, WurstType receiverType, ImExpr access) { + ImExpr notNull = JassIm.ImOperatorCall(WurstOperator.NOTEQ, + JassIm.ImExprs(ImVarAccess(tempVar), JassIm.ImNull(receiverType.imTranslateType(t)))); + WurstType resultType = e.attrTyp(); + boolean resultUsed = !(resultType instanceof WurstTypeVoid) + && !(e.getParent() instanceof WStatements); + if (resultUsed) { + ImVar resultVar = JassIm.ImVar(e, resultType.imTranslateType(t), "nullSafeResult", false); + f.getLocals().add(resultVar); + stmts.add(JassIm.ImIf(e, notNull, + JassIm.ImStmts(ImSet(e, ImVarAccess(resultVar), access)), + JassIm.ImStmts(ImSet(e, ImVarAccess(resultVar), JassIm.ImNull(resultType.imTranslateType(t)))))); + return JassIm.ImStatementExpr(stmts, ImVarAccess(resultVar)); + } else { + stmts.add(JassIm.ImIf(e, notNull, JassIm.ImStmts(access), JassIm.ImStmts())); + return JassIm.ImStatementExpr(stmts, ImHelper.nullExpr()); + } + } + private static ImTypeArguments getFunctionCallTypeArguments(ImTranslator tr, FunctionSignature sig, Element location, ImTypeVars typeVariables) { ImTypeArguments res = ImTypeArguments(); VariableBinding mapping = sig.getMapping(); diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/types/WurstType.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/types/WurstType.java index 070b610a3..e8894f744 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/types/WurstType.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/types/WurstType.java @@ -254,6 +254,11 @@ public boolean isNestedInside(WurstType other) { protected abstract boolean isNullable(); + /** whether values of this type can be null (e.g. as receiver of the '?.' operator) */ + public final boolean canBeNull() { + return normalize().isNullable(); + } + public boolean isArray() { return this instanceof WurstTypeArray; } diff --git a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/validation/WurstValidator.java b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/validation/WurstValidator.java index 23f8ef358..985dc3a48 100644 --- a/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/validation/WurstValidator.java +++ b/de.peeeq.wurstscript/src/main/java/de/peeeq/wurstscript/validation/WurstValidator.java @@ -414,6 +414,10 @@ private void check(Element e) { } if (e instanceof ExprMemberMethod) visit((ExprMemberMethod) e); + if (e instanceof ExprMemberMethodQuestionDot) + checkNullSafeAccess((ExprMemberMethodQuestionDot) e); + if (e instanceof ExprMemberVarQuestionDot) + checkNullSafeAccess((ExprMemberVarQuestionDot) e); if (e instanceof ExprMemberVar) checkMemberVar((ExprMemberVar) e); if (e instanceof ExprMemberArrayVar) @@ -1334,6 +1338,12 @@ public void case_ExprMemberArrayVarDotDot(ExprMemberArrayVarDotDot e) { public void case_ExprMemberVarDotDot(ExprMemberVarDotDot e) { e.addError("Cannot assign to dot-dot-expression."); } + + @Override + public void case_ExprMemberVarQuestionDot(ExprMemberVarQuestionDot e) { + // unreachable via the grammar, but keep the matcher total + e.addError("Cannot assign to a null-safe '?.' expression."); + } }); } @@ -2316,6 +2326,11 @@ public VariableBinding case_ExprMemberMethodDot(ExprMemberMethodDot e) { public VariableBinding case_ExprMemberMethodDotDot(ExprMemberMethodDotDot e) { return e.attrTyp().getTypeArgBinding(); } + + @Override + public VariableBinding case_ExprMemberMethodQuestionDot(ExprMemberMethodQuestionDot e) { + return e.attrTyp().getTypeArgBinding(); + } }); if (mapping == null) { return; @@ -2782,6 +2797,33 @@ private void nameDefsMustNotBeNamedAfterJassNativeTypes(NameDef n) { // } } + /** + * Rules for the null-safe access operator '?.': + * the receiver must be of a type that can actually be null, and the + * result may only be used as a value if its own type can represent the + * null produced when the receiver is null. + */ + private void checkNullSafeAccess(Expr e) { + Expr left = ((HasReceiver) e).getLeft(); + WurstType receiverType = left.attrTyp(); + if (receiverType.isStaticRef()) { + e.addError("The null-safe operator '?.' requires a dynamic receiver, " + + "but found a static reference to " + receiverType + "."); + } else if (!(receiverType instanceof WurstTypeUnknown) && !receiverType.canBeNull()) { + e.addError("The null-safe operator '?.' cannot be used on an expression of type " + + receiverType + ", because it can never be null."); + } + WurstType resultType = e.attrTyp(); + boolean usedAsValue = !(e.getParent() instanceof WStatements); + if (usedAsValue + && !(resultType instanceof WurstTypeVoid) + && !(resultType instanceof WurstTypeUnknown) + && !resultType.canBeNull()) { + e.addError("The result of this null-safe access has type " + resultType + + ", which cannot represent null. It can only be used as a statement that discards the result."); + } + } + private void checkMemberVar(ExprMemberVar e) { if (e.getVarName().length() == 0) { e.addError("Incomplete member access."); diff --git a/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/NullSafeOperatorTests.java b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/NullSafeOperatorTests.java new file mode 100644 index 000000000..5dcd59c86 --- /dev/null +++ b/de.peeeq.wurstscript/src/test/java/tests/wurstscript/tests/NullSafeOperatorTests.java @@ -0,0 +1,263 @@ +package tests.wurstscript.tests; + +import org.testng.annotations.Test; + +/** + * Tests for the null-safe member access operator {@code ?.} (v1). + * + * Semantics: {@code a?.foo(args)} evaluates {@code a} exactly once; if it is + * null, the call (including argument evaluation) is skipped and the result is + * null. The receiver type must be nullable. A result that cannot represent + * null (int, real, bool, ...) may only be discarded (statement position). + */ +public class NullSafeOperatorTests extends WurstScriptTest { + + @Test + public void callOnNullReceiverIsSkipped() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "native testFail(string msg)", + "class A", + " function fail()", + " testFail(\"must not be called\")", + "init", + " A a = null", + " a?.fail()", + " testSuccess()" + ); + } + + @Test + public void callOnNonNullReceiverExecutes() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "class A", + " int x = 0", + " function inc()", + " x++", + "init", + " A a = new A", + " a?.inc()", + " if a.x == 1", + " testSuccess()" + ); + } + + @Test + public void argumentsAreNotEvaluatedForNullReceiver() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "int evals = 0", + "function sideEffect() returns int", + " evals++", + " return 1", + "class A", + " function take(int x)", + "init", + " A a = null", + " a?.take(sideEffect())", + " if evals == 0", + " testSuccess()" + ); + } + + @Test + public void receiverIsEvaluatedExactlyOnce() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "int count = 0", + "A theA = null", + "function getA() returns A", + " count++", + " return theA", + "class A", + " int x = 0", + " function inc()", + " x++", + "init", + " theA = new A", + " getA()?.inc()", + " if count == 1 and theA.x == 1", + " testSuccess()" + ); + } + + @Test + public void fieldAccessPropagatesNull() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "class A", + " A next = null", + "init", + " A a = null", + " if a?.next == null", + " testSuccess()" + ); + } + + @Test + public void fieldAccessReadsFieldWhenNonNull() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "class A", + " A next = null", + "init", + " A a = new A", + " A b = new A", + " a.next = b", + " if a?.next == b", + " testSuccess()" + ); + } + + @Test + public void chainedNullSafeAccess() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "class A", + " A next = null", + "init", + " A a = new A", + " if a?.next == null and a?.next?.next == null", + " testSuccess()" + ); + } + + @Test + public void methodResultNullPropagation() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "class A", + " function self() returns A", + " return this", + "init", + " A a = null", + " A b = new A", + " if a?.self() == null and b?.self() == b", + " testSuccess()" + ); + } + + @Test + public void stringResultIsNullable() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "class A", + " function name() returns string", + " return \"a\"", + "init", + " A a = null", + " A b = new A", + " if a?.name() == null and b?.name() == \"a\"", + " testSuccess()" + ); + } + + /** The grammar change must not break ternaries with real literals after '?'. */ + @Test + public void ternaryWithRealLiteralStillParses() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "init", + " real r = true ? .5 : .25", + " if r > .4", + " testSuccess()" + ); + } + + @Test + public void errorOnNonNullableReceiver() { + testAssertErrorsLines(false, "can never be null", + "package test", + "function int.foo()", + "init", + " int x = 5", + " x?.foo()", + "endpackage" + ); + } + + @Test + public void errorOnPrimitiveResultInExpressionPosition() { + testAssertErrorsLines(false, "cannot represent null", + "package test", + "class A", + " function count() returns int", + " return 1", + "init", + " A a = new A", + " int x = a?.count()", + "endpackage" + ); + } + + @Test + public void primitiveResultAllowedInStatementPosition() { + test().executeProg().lines( + "package Test", + "native testSuccess()", + "int calls = 0", + "class A", + " function count() returns int", + " calls++", + " return 1", + "init", + " A a = new A", + " a?.count()", + " A b = null", + " b?.count()", + " if calls == 1", + " testSuccess()" + ); + } + + @Test + public void errorOnNonNullableFieldType() { + testAssertErrorsLines(false, "cannot represent null", + "package test", + "class A", + " int size = 0", + "init", + " A a = new A", + " int s = a?.size", + "endpackage" + ); + } + + /** End-to-end through the Lua backend with real execution. */ + @Test + public void luaRuntimeNullSafeSemantics() { + test().testLua(true).executeProg().lines( + "package Test", + "native testSuccess()", + "int evals = 0", + "function sideEffect() returns int", + " evals++", + " return 1", + "class A", + " A next = null", + " int x = 0", + " function take(int y)", + " x += y", + " function self() returns A", + " return this", + "init", + " A n = null", + " n?.take(sideEffect())", + " A a = new A", + " a?.take(sideEffect())", + " if evals == 1 and a.x == 1 and n?.self() == null and a?.self() == a and a?.next?.next == null", + " testSuccess()" + ); + } +}